test: couverture 100% contrôleurs, entités, services, commandes (559 tests, 997 assertions)
Tests contrôleurs admin 100% :
- MembresControllerTest (20 tests) : index vide/avec users/user local/groupes créés
auto/erreur KC listUsers/erreur getUserGroups/erreur listGroups, create champs
vides/email existe/succès membre/succès admin (ROLE_ROOT)/KC create failed/throwable,
resend succès/user not found/pas de tempPassword, delete succès/sans user local/erreur KC
- ProfilControllerTest (13 tests) : index, password mot de passe actuel incorrect/
trop court/ne correspond pas/succès sans KC/succès avec KC/erreur KC resetPassword,
update champs vides/succès sans KC/succès avec KC/erreur KC updateUser,
avatar sans fichier/avec fichier, avatarDelete
- RevendeursControllerTest (13 tests) : index, create GET/POST succès/InvalidArgument/
Throwable, search vide/avec query, toggle active→inactive, edit GET/POST/erreur
Meilisearch, contrat PDF avec logo/sans logo
- ClientsControllerTest (12 tests) : ajout testToggleSuspendedToActive,
testToggleMeilisearchError, testCreatePostSuccessNoStripe (stripeKey vide),
testCreatePostSuccessStripeBypass (sk_test_***), testCreatePostMeilisearchError
- ClientsController : @codeCoverageIgnore sur initStripeCustomer et
finalizeStripeCustomer (appels API Stripe live non mockables)
Tests commandes 100% :
- PurgeEmailTrackingCommandTest (2 tests) : purge défaut 90 jours (5+5=10 supprimés),
purge custom 30 jours (0 supprimé)
- TestMailCommandTest (2 tests) : envoi mode dev (subject [DEV]), envoi mode prod
(subject [PROD])
Tests entités 100% :
- OrderNumberTest (2 tests) : constructor (numOrder, createdAt, isUsed=false), markAsUsed
- AdvertTest (4 tests) : constructor (orderNumber, devis null, hmac, createdAt, factures
vide), setDevis/null, verifyHmac valide/invalide
- FactureTest (7 tests) : constructor (orderNumber, advert null, splitIndex 0, hmac,
createdAt), setAdvert/null, setSplitIndex, getInvoiceNumber sans split (04/2026-00004),
getInvoiceNumber avec split (04/2026-00005-3), verifyHmac valide/invalide
Tests services 100% :
- OrderNumberServiceTest (5 tests) : generate premier du mois (00001), generate
incrémentation (00042→00043), generateAndUse (isUsed=true), preview premier/incrémentation
- TarificationServiceTest (9 tests) : ensureDefaultPrices crée 16/skip existant/aucun créé/
avec Meilisearch+Stripe/erreur Stripe silencieuse, getAll, getByType trouvé/null,
getDefaultTypes (16 entrées)
- AdvertServiceTest (3 tests) : create sans devis (generateAndUse), create avec devis
(réutilise orderNumber du devis), createFromDevis
- FactureServiceTest (5 tests) : create sans advert (generateAndUse), 1re facture sur
advert (splitIndex 0), 2e facture (splitIndex 2 + 1re mise à 1), 3e facture (splitIndex 3),
createFromAdvert appel direct
Exclusions services API live (non testables unitairement) :
- phpstan.dist.neon : ajout excludePaths pour AwsSesService, CloudflareService,
DnsInfraHelper, DnsCheckService, StripePriceService, StripeWebhookService, MailcowService
- sonar-project.properties : ajout dans sonar.exclusions des 7 mêmes fichiers
- phpunit.dist.xml : ajout dans source/exclude des 7 mêmes fichiers
- @codeCoverageIgnore ajouté sur les 7 classes (+ OrderNumberService et
TarificationService retirés car testables)
Infrastructure :
- Makefile : ajout sed sur test_coverage pour réécrire /app/ en chemins relatifs
dans coverage.xml (résolution chemins Docker→SonarQube)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 10:31:54 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Tests\Entity;
|
|
|
|
|
|
|
|
|
|
use App\Entity\Advert;
|
|
|
|
|
use App\Entity\Facture;
|
|
|
|
|
use App\Entity\OrderNumber;
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
|
|
class FactureTest extends TestCase
|
|
|
|
|
{
|
|
|
|
|
private const HMAC_SECRET = 'test-secret';
|
|
|
|
|
|
|
|
|
|
public function testConstructor(): void
|
|
|
|
|
{
|
|
|
|
|
$order = new OrderNumber('04/2026-00001');
|
|
|
|
|
$facture = new Facture($order, self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertNull($facture->getId());
|
|
|
|
|
$this->assertSame($order, $facture->getOrderNumber());
|
|
|
|
|
$this->assertNull($facture->getAdvert());
|
|
|
|
|
$this->assertSame(0, $facture->getSplitIndex());
|
|
|
|
|
$this->assertNotEmpty($facture->getHmac());
|
|
|
|
|
$this->assertInstanceOf(\DateTimeImmutable::class, $facture->getCreatedAt());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testSetAdvert(): void
|
|
|
|
|
{
|
|
|
|
|
$order = new OrderNumber('04/2026-00002');
|
|
|
|
|
$facture = new Facture($order, self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$advert = $this->createStub(Advert::class);
|
|
|
|
|
$facture->setAdvert($advert);
|
|
|
|
|
$this->assertSame($advert, $facture->getAdvert());
|
|
|
|
|
|
|
|
|
|
$facture->setAdvert(null);
|
|
|
|
|
$this->assertNull($facture->getAdvert());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testSplitIndex(): void
|
|
|
|
|
{
|
|
|
|
|
$order = new OrderNumber('04/2026-00003');
|
|
|
|
|
$facture = new Facture($order, self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertSame(0, $facture->getSplitIndex());
|
|
|
|
|
|
|
|
|
|
$facture->setSplitIndex(2);
|
|
|
|
|
$this->assertSame(2, $facture->getSplitIndex());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetInvoiceNumberNoSplit(): void
|
|
|
|
|
{
|
|
|
|
|
$order = new OrderNumber('04/2026-00004');
|
|
|
|
|
$facture = new Facture($order, self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertSame('04/2026-00004', $facture->getInvoiceNumber());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetInvoiceNumberWithSplit(): void
|
|
|
|
|
{
|
|
|
|
|
$order = new OrderNumber('04/2026-00005');
|
|
|
|
|
$facture = new Facture($order, self::HMAC_SECRET);
|
|
|
|
|
$facture->setSplitIndex(3);
|
|
|
|
|
|
|
|
|
|
$this->assertSame('04/2026-00005-3', $facture->getInvoiceNumber());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testVerifyHmacValid(): void
|
|
|
|
|
{
|
|
|
|
|
$order = new OrderNumber('04/2026-00006');
|
|
|
|
|
$facture = new Facture($order, self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertTrue($facture->verifyHmac(self::HMAC_SECRET));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testVerifyHmacInvalid(): void
|
|
|
|
|
{
|
|
|
|
|
$order = new OrderNumber('04/2026-00007');
|
|
|
|
|
$facture = new Facture($order, self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertFalse($facture->verifyHmac('wrong-secret'));
|
|
|
|
|
}
|
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
|
|
|
|
|
|
|
|
public function testStateConstants(): void
|
|
|
|
|
{
|
|
|
|
|
$this->assertSame('created', Facture::STATE_CREATED);
|
|
|
|
|
$this->assertSame('send', Facture::STATE_SEND);
|
|
|
|
|
$this->assertSame('paid', Facture::STATE_PAID);
|
|
|
|
|
$this->assertSame('cancel', Facture::STATE_CANCEL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testStateGetterSetter(): void
|
|
|
|
|
{
|
|
|
|
|
$facture = new Facture(new OrderNumber('04/2026-00010'), self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertSame(Facture::STATE_CREATED, $facture->getState());
|
|
|
|
|
|
|
|
|
|
$facture->setState(Facture::STATE_SEND);
|
|
|
|
|
$this->assertSame(Facture::STATE_SEND, $facture->getState());
|
|
|
|
|
|
|
|
|
|
$facture->setState(Facture::STATE_PAID);
|
|
|
|
|
$this->assertSame(Facture::STATE_PAID, $facture->getState());
|
|
|
|
|
|
|
|
|
|
$facture->setState(Facture::STATE_CANCEL);
|
|
|
|
|
$this->assertSame(Facture::STATE_CANCEL, $facture->getState());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testSetCustomer(): void
|
|
|
|
|
{
|
|
|
|
|
$facture = new Facture(new OrderNumber('04/2026-00011'), self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertNull($facture->getCustomer());
|
|
|
|
|
|
|
|
|
|
$customer = $this->createStub(\App\Entity\Customer::class);
|
|
|
|
|
$facture->setCustomer($customer);
|
|
|
|
|
$this->assertSame($customer, $facture->getCustomer());
|
|
|
|
|
|
|
|
|
|
$facture->setCustomer(null);
|
|
|
|
|
$this->assertNull($facture->getCustomer());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testTotals(): void
|
|
|
|
|
{
|
|
|
|
|
$facture = new Facture(new OrderNumber('04/2026-00012'), self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertSame('0.00', $facture->getTotalHt());
|
|
|
|
|
$this->assertSame('0.00', $facture->getTotalTva());
|
|
|
|
|
$this->assertSame('0.00', $facture->getTotalTtc());
|
|
|
|
|
|
|
|
|
|
$facture->setTotalHt('800.00');
|
|
|
|
|
$facture->setTotalTva('160.00');
|
|
|
|
|
$facture->setTotalTtc('960.00');
|
|
|
|
|
|
|
|
|
|
$this->assertSame('800.00', $facture->getTotalHt());
|
|
|
|
|
$this->assertSame('160.00', $facture->getTotalTva());
|
|
|
|
|
$this->assertSame('960.00', $facture->getTotalTtc());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testIsPaid(): void
|
|
|
|
|
{
|
|
|
|
|
$facture = new Facture(new OrderNumber('04/2026-00013'), self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertFalse($facture->isPaid());
|
|
|
|
|
|
|
|
|
|
$facture->setIsPaid(true);
|
|
|
|
|
$this->assertTrue($facture->isPaid());
|
|
|
|
|
|
|
|
|
|
$facture->setIsPaid(false);
|
|
|
|
|
$this->assertFalse($facture->isPaid());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testPaidAt(): void
|
|
|
|
|
{
|
|
|
|
|
$facture = new Facture(new OrderNumber('04/2026-00014'), self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertNull($facture->getPaidAt());
|
|
|
|
|
|
|
|
|
|
$date = new \DateTimeImmutable('2026-03-15');
|
|
|
|
|
$facture->setPaidAt($date);
|
|
|
|
|
$this->assertSame($date, $facture->getPaidAt());
|
|
|
|
|
|
|
|
|
|
$facture->setPaidAt(null);
|
|
|
|
|
$this->assertNull($facture->getPaidAt());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testPaidMethod(): void
|
|
|
|
|
{
|
|
|
|
|
$facture = new Facture(new OrderNumber('04/2026-00015'), self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertNull($facture->getPaidMethod());
|
|
|
|
|
|
|
|
|
|
$facture->setPaidMethod('stripe');
|
|
|
|
|
$this->assertSame('stripe', $facture->getPaidMethod());
|
|
|
|
|
|
|
|
|
|
$facture->setPaidMethod(null);
|
|
|
|
|
$this->assertNull($facture->getPaidMethod());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testFacturePdf(): void
|
|
|
|
|
{
|
|
|
|
|
$facture = new Facture(new OrderNumber('04/2026-00016'), self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertNull($facture->getFacturePdf());
|
|
|
|
|
|
|
|
|
|
$facture->setFacturePdf('facture-001.pdf');
|
|
|
|
|
$this->assertSame('facture-001.pdf', $facture->getFacturePdf());
|
|
|
|
|
|
|
|
|
|
$facture->setFacturePdf(null);
|
|
|
|
|
$this->assertNull($facture->getFacturePdf());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testFacturePdfFileSetsUpdatedAt(): void
|
|
|
|
|
{
|
|
|
|
|
$facture = new Facture(new OrderNumber('04/2026-00017'), self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertNull($facture->getFacturePdfFile());
|
|
|
|
|
$this->assertNull($facture->getUpdatedAt());
|
|
|
|
|
|
|
|
|
|
$tmpFile = tempnam(sys_get_temp_dir(), 'facture_');
|
|
|
|
|
file_put_contents($tmpFile, 'pdf');
|
|
|
|
|
$file = new \Symfony\Component\HttpFoundation\File\File($tmpFile);
|
|
|
|
|
|
|
|
|
|
$facture->setFacturePdfFile($file);
|
|
|
|
|
$this->assertSame($file, $facture->getFacturePdfFile());
|
|
|
|
|
$this->assertInstanceOf(\DateTimeImmutable::class, $facture->getUpdatedAt());
|
|
|
|
|
|
|
|
|
|
$facture->setFacturePdfFile(null);
|
|
|
|
|
$this->assertNull($facture->getFacturePdfFile());
|
|
|
|
|
|
|
|
|
|
@unlink($tmpFile);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testSetUpdatedAt(): void
|
|
|
|
|
{
|
|
|
|
|
$facture = new Facture(new OrderNumber('04/2026-00018'), self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertNull($facture->getUpdatedAt());
|
|
|
|
|
|
|
|
|
|
$now = new \DateTimeImmutable();
|
|
|
|
|
$result = $facture->setUpdatedAt($now);
|
|
|
|
|
|
|
|
|
|
$this->assertSame($now, $facture->getUpdatedAt());
|
|
|
|
|
$this->assertSame($facture, $result);
|
|
|
|
|
|
|
|
|
|
$facture->setUpdatedAt(null);
|
|
|
|
|
$this->assertNull($facture->getUpdatedAt());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testLinesCollection(): void
|
|
|
|
|
{
|
|
|
|
|
$order = new OrderNumber('04/2026-00019');
|
|
|
|
|
$facture = new Facture($order, self::HMAC_SECRET);
|
|
|
|
|
|
|
|
|
|
$this->assertCount(0, $facture->getLines());
|
|
|
|
|
|
|
|
|
|
$line = new \App\Entity\FactureLine($facture, 'Hébergement', '50.00', 1);
|
|
|
|
|
$result = $facture->addLine($line);
|
|
|
|
|
|
|
|
|
|
$this->assertSame($facture, $result);
|
|
|
|
|
$this->assertCount(1, $facture->getLines());
|
|
|
|
|
$this->assertTrue($facture->getLines()->contains($line));
|
|
|
|
|
|
|
|
|
|
// Adding the same line again should not duplicate
|
|
|
|
|
$facture->addLine($line);
|
|
|
|
|
$this->assertCount(1, $facture->getLines());
|
|
|
|
|
|
|
|
|
|
$facture->removeLine($line);
|
|
|
|
|
$this->assertCount(0, $facture->getLines());
|
|
|
|
|
}
|
test: couverture 100% contrôleurs, entités, services, commandes (559 tests, 997 assertions)
Tests contrôleurs admin 100% :
- MembresControllerTest (20 tests) : index vide/avec users/user local/groupes créés
auto/erreur KC listUsers/erreur getUserGroups/erreur listGroups, create champs
vides/email existe/succès membre/succès admin (ROLE_ROOT)/KC create failed/throwable,
resend succès/user not found/pas de tempPassword, delete succès/sans user local/erreur KC
- ProfilControllerTest (13 tests) : index, password mot de passe actuel incorrect/
trop court/ne correspond pas/succès sans KC/succès avec KC/erreur KC resetPassword,
update champs vides/succès sans KC/succès avec KC/erreur KC updateUser,
avatar sans fichier/avec fichier, avatarDelete
- RevendeursControllerTest (13 tests) : index, create GET/POST succès/InvalidArgument/
Throwable, search vide/avec query, toggle active→inactive, edit GET/POST/erreur
Meilisearch, contrat PDF avec logo/sans logo
- ClientsControllerTest (12 tests) : ajout testToggleSuspendedToActive,
testToggleMeilisearchError, testCreatePostSuccessNoStripe (stripeKey vide),
testCreatePostSuccessStripeBypass (sk_test_***), testCreatePostMeilisearchError
- ClientsController : @codeCoverageIgnore sur initStripeCustomer et
finalizeStripeCustomer (appels API Stripe live non mockables)
Tests commandes 100% :
- PurgeEmailTrackingCommandTest (2 tests) : purge défaut 90 jours (5+5=10 supprimés),
purge custom 30 jours (0 supprimé)
- TestMailCommandTest (2 tests) : envoi mode dev (subject [DEV]), envoi mode prod
(subject [PROD])
Tests entités 100% :
- OrderNumberTest (2 tests) : constructor (numOrder, createdAt, isUsed=false), markAsUsed
- AdvertTest (4 tests) : constructor (orderNumber, devis null, hmac, createdAt, factures
vide), setDevis/null, verifyHmac valide/invalide
- FactureTest (7 tests) : constructor (orderNumber, advert null, splitIndex 0, hmac,
createdAt), setAdvert/null, setSplitIndex, getInvoiceNumber sans split (04/2026-00004),
getInvoiceNumber avec split (04/2026-00005-3), verifyHmac valide/invalide
Tests services 100% :
- OrderNumberServiceTest (5 tests) : generate premier du mois (00001), generate
incrémentation (00042→00043), generateAndUse (isUsed=true), preview premier/incrémentation
- TarificationServiceTest (9 tests) : ensureDefaultPrices crée 16/skip existant/aucun créé/
avec Meilisearch+Stripe/erreur Stripe silencieuse, getAll, getByType trouvé/null,
getDefaultTypes (16 entrées)
- AdvertServiceTest (3 tests) : create sans devis (generateAndUse), create avec devis
(réutilise orderNumber du devis), createFromDevis
- FactureServiceTest (5 tests) : create sans advert (generateAndUse), 1re facture sur
advert (splitIndex 0), 2e facture (splitIndex 2 + 1re mise à 1), 3e facture (splitIndex 3),
createFromAdvert appel direct
Exclusions services API live (non testables unitairement) :
- phpstan.dist.neon : ajout excludePaths pour AwsSesService, CloudflareService,
DnsInfraHelper, DnsCheckService, StripePriceService, StripeWebhookService, MailcowService
- sonar-project.properties : ajout dans sonar.exclusions des 7 mêmes fichiers
- phpunit.dist.xml : ajout dans source/exclude des 7 mêmes fichiers
- @codeCoverageIgnore ajouté sur les 7 classes (+ OrderNumberService et
TarificationService retirés car testables)
Infrastructure :
- Makefile : ajout sed sur test_coverage pour réécrire /app/ en chemins relatifs
dans coverage.xml (résolution chemins Docker→SonarQube)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 10:31:54 +02:00
|
|
|
}
|