Files
crm_ecosplay/tests/Controller/Admin/FactureControllerTest.php
Serreau Jovann 8bda02888c test: couverture 83% methodes (1046 tests, 2135 assertions)
Entites completes a 100% :
- AdvertTest : 12 nouveaux (state, customer, totals, hmac, lines, payments)
- CustomerTest : 3 nouveaux (isPendingDelete, revendeurCode, updatedAt)
- DevisTest : 6 nouveaux (customer, submissionId, lines, state constants)
- FactureTest : 10 nouveaux (state, totals, isPaid, lines, hmac, splitIndex)
- OrderNumberTest : 1 nouveau (markAsUnused)
- WebsiteTest : 1 nouveau (revendeurCode)

Services completes/ameliores :
- DocuSealServiceTest : 30 nouveaux (sendDevis, resendDevis, download, compta)
- AdvertServiceTest : 6 nouveaux (isTvaEnabled, getTvaRate, computeTotals)
- DevisServiceTest : 6 nouveaux (idem)
- FactureServiceTest : 8 nouveaux (idem + createPaidFactureFromAdvert)
- MailerServiceTest : 7 nouveaux (unsubscribe headers, VCF, formatFileSize)
- MeilisearchServiceTest : 42 nouveaux (index/remove/search tous types)
- RgpdServiceTest : 6 nouveaux (sendVerificationCode, verifyCode)
- OrderNumberServiceTest : 2 nouveaux (preview/generate unused)
- TarificationServiceTest : 1 nouveau (stripe error logger)
- ComptaPdfTest : 4 nouveaux (totaux, colonnes numeriques, signature)
- FacturePdfTest : 6 nouveaux (QR code, RIB, CGV Twig, footer skip)

Controllers ameliores :
- ComptabiliteControllerTest : 13 nouveaux (JSON, PDF, sign, callback)
- StatsControllerTest : 2 nouveaux (rich data, 6-month evolution)
- SyncControllerTest : 13 nouveaux (sync 6 types + purge)
- ClientsControllerTest : 7 nouveaux (show, delete, resendWelcome)
- FactureControllerTest : 2 nouveaux (generatePdf 404, send success)
- LegalControllerTest : 6 nouveaux (rgpdVerify GET/POST)
- TarificationControllerTest : 3 nouveaux (purge paths)
- AdminControllersTest : 9 nouveaux (dashboard search, services)
- WebhookStripeControllerTest : 3 nouveaux (invalid signatures)
- KeycloakAuthenticatorTest : 4 nouveaux (groups, domain check)

Commands :
- PaymentReminderCommandTest : 1 nouveau (formalNotice step)
- TestMailCommandTest : 2 nouveaux (force-dsn success/failure)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 00:13:00 +02:00

252 lines
10 KiB
PHP

<?php
namespace App\Tests\Controller\Admin;
use App\Controller\Admin\FactureController;
use App\Entity\Customer;
use App\Entity\Facture;
use App\Service\MeilisearchService;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\EntityRepository;
use PHPUnit\Framework\TestCase;
use Psr\Container\ContainerInterface;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
use Symfony\Component\Routing\RouterInterface;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
use Twig\Environment;
class FactureControllerTest extends TestCase
{
private function buildController(?EntityManagerInterface $em = null, ?MeilisearchService $meilisearch = null): FactureController
{
$em ??= $this->createStub(EntityManagerInterface::class);
$meilisearch ??= $this->createStub(MeilisearchService::class);
$controller = new FactureController($em, $meilisearch);
$session = new Session(new MockArraySessionStorage());
$stack = $this->createStub(RequestStack::class);
$stack->method('getSession')->willReturn($session);
$twig = $this->createStub(Environment::class);
$twig->method('render')->willReturn('<html></html>');
$router = $this->createStub(RouterInterface::class);
$router->method('generate')->willReturn('/redirect');
$container = $this->createStub(ContainerInterface::class);
$container->method('has')->willReturnMap([
['twig', true],
['router', true],
['security.authorization_checker', true],
['security.token_storage', true],
['request_stack', true],
['parameter_bag', true],
['serializer', false],
]);
$container->method('get')->willReturnMap([
['twig', $twig],
['router', $router],
['security.authorization_checker', $this->createStub(AuthorizationCheckerInterface::class)],
['security.token_storage', $this->createStub(TokenStorageInterface::class)],
['request_stack', $stack],
['parameter_bag', $this->createStub(ParameterBagInterface::class)],
]);
$controller->setContainer($container);
return $controller;
}
// ---------------------------------------------------------------
// search
// ---------------------------------------------------------------
public function testSearchReturnsEmptyWhenQueryBlank(): void
{
$controller = $this->buildController();
$request = new Request(['q' => '']);
$response = $controller->search(1, $request);
$this->assertInstanceOf(JsonResponse::class, $response);
$this->assertSame(200, $response->getStatusCode());
$this->assertSame('[]', $response->getContent());
}
public function testSearchReturnsMeilisearchResults(): void
{
$hits = [['id' => 1, 'invoiceNumber' => 'F-2026-001']];
$meilisearch = $this->createStub(MeilisearchService::class);
$meilisearch->method('searchFactures')->willReturn($hits);
$controller = $this->buildController(null, $meilisearch);
$request = new Request(['q' => 'F-2026']);
$response = $controller->search(1, $request);
$this->assertInstanceOf(JsonResponse::class, $response);
$this->assertSame(200, $response->getStatusCode());
$data = json_decode($response->getContent(), true);
$this->assertCount(1, $data);
$this->assertSame('F-2026-001', $data[0]['invoiceNumber']);
}
public function testSearchPassesCustomerIdFilter(): void
{
$meilisearch = $this->createMock(MeilisearchService::class);
$meilisearch->expects($this->once())
->method('searchFactures')
->with('test', 20, 42)
->willReturn([]);
$controller = $this->buildController(null, $meilisearch);
$request = new Request(['q' => 'test']);
$response = $controller->search(42, $request);
$this->assertInstanceOf(JsonResponse::class, $response);
}
// ---------------------------------------------------------------
// send — facture with no PDF
// ---------------------------------------------------------------
public function testSendRedirectsWhenNoPdfGenerated(): void
{
$customer = $this->createStub(Customer::class);
$customer->method('getId')->willReturn(5);
$facture = $this->createStub(Facture::class);
$facture->method('getFacturePdf')->willReturn(null);
$facture->method('getCustomer')->willReturn($customer);
$factureRepo = $this->createStub(EntityRepository::class);
$factureRepo->method('find')->willReturn($facture);
$em = $this->createStub(EntityManagerInterface::class);
$em->method('getRepository')->willReturn($factureRepo);
$controller = $this->buildController($em);
$mailer = $this->createStub(\App\Service\MailerService::class);
$twig = $this->createStub(Environment::class);
$urlGenerator = $this->createStub(\Symfony\Component\Routing\Generator\UrlGeneratorInterface::class);
$urlGenerator->method('generate')->willReturn('http://localhost/facture/verify/1/abc');
$response = $controller->send(1, $mailer, $twig, $urlGenerator, '/tmp');
$this->assertSame(302, $response->getStatusCode());
}
public function testSendThrows404WhenFactureNotFound(): void
{
$factureRepo = $this->createStub(EntityRepository::class);
$factureRepo->method('find')->willReturn(null);
$em = $this->createStub(EntityManagerInterface::class);
$em->method('getRepository')->willReturn($factureRepo);
$controller = $this->buildController($em);
$mailer = $this->createStub(\App\Service\MailerService::class);
$twig = $this->createStub(Environment::class);
$urlGenerator = $this->createStub(\Symfony\Component\Routing\Generator\UrlGeneratorInterface::class);
$this->expectException(\Symfony\Component\HttpKernel\Exception\NotFoundHttpException::class);
$controller->send(999, $mailer, $twig, $urlGenerator, '/tmp');
}
// ---------------------------------------------------------------
// generatePdf — 404 when facture not found
// ---------------------------------------------------------------
public function testGeneratePdfThrows404WhenFactureNotFound(): void
{
$factureRepo = $this->createStub(EntityRepository::class);
$factureRepo->method('find')->willReturn(null);
$em = $this->createStub(EntityManagerInterface::class);
$em->method('getRepository')->willReturn($factureRepo);
$controller = $this->buildController($em);
$this->expectException(\Symfony\Component\HttpKernel\Exception\NotFoundHttpException::class);
$controller->generatePdf(
999,
$this->createStub(\Symfony\Component\HttpKernel\KernelInterface::class),
$this->createStub(\Symfony\Component\Routing\Generator\UrlGeneratorInterface::class),
$this->createStub(\Twig\Environment::class),
);
}
// ---------------------------------------------------------------
// send — successful full path (pdf exists, customer has email)
// ---------------------------------------------------------------
public function testSendSuccessfully(): void
{
$customer = $this->createStub(\App\Entity\Customer::class);
$customer->method('getId')->willReturn(5);
$customer->method('getEmail')->willReturn('client@test.com');
$facture = $this->createStub(\App\Entity\Facture::class);
$facture->method('getFacturePdf')->willReturn('facture-test.pdf');
$facture->method('getCustomer')->willReturn($customer);
$facture->method('getInvoiceNumber')->willReturn('F-2026-001');
$facture->method('getId')->willReturn(1);
$facture->method('getHmac')->willReturn('abc123');
$factureRepo = $this->createStub(EntityRepository::class);
$factureRepo->method('find')->willReturn($facture);
$em = $this->createMock(EntityManagerInterface::class);
$em->method('getRepository')->willReturn($factureRepo);
$em->expects($this->once())->method('flush');
$controller = $this->buildController($em);
$mailer = $this->createStub(\App\Service\MailerService::class);
$twig = $this->createStub(\Twig\Environment::class);
$twig->method('render')->willReturn('<html></html>');
$urlGenerator = $this->createStub(\Symfony\Component\Routing\Generator\UrlGeneratorInterface::class);
$urlGenerator->method('generate')->willReturn('http://localhost/facture/verify/1/abc');
// projectDir points to a tmp dir where factures/ path won't exist (no attachment)
$response = $controller->send(1, $mailer, $twig, $urlGenerator, sys_get_temp_dir());
$this->assertSame(302, $response->getStatusCode());
}
public function testSendRedirectsWhenCustomerHasNoEmail(): void
{
$customer = $this->createStub(Customer::class);
$customer->method('getId')->willReturn(5);
$customer->method('getEmail')->willReturn(null);
$facture = $this->createStub(Facture::class);
$facture->method('getFacturePdf')->willReturn('facture.pdf');
$facture->method('getCustomer')->willReturn($customer);
$factureRepo = $this->createStub(EntityRepository::class);
$factureRepo->method('find')->willReturn($facture);
$em = $this->createStub(EntityManagerInterface::class);
$em->method('getRepository')->willReturn($factureRepo);
$controller = $this->buildController($em);
$mailer = $this->createStub(\App\Service\MailerService::class);
$twig = $this->createStub(Environment::class);
$urlGenerator = $this->createStub(\Symfony\Component\Routing\Generator\UrlGeneratorInterface::class);
$response = $controller->send(1, $mailer, $twig, $urlGenerator, '/tmp');
$this->assertSame(302, $response->getStatusCode());
}
}