Files
crm_ecosplay/tests/Service/AdvertServiceTest.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

137 lines
4.7 KiB
PHP

<?php
namespace App\Tests\Service;
use App\Entity\Advert;
use App\Entity\Devis;
use App\Entity\OrderNumber;
use App\Service\AdvertService;
use App\Service\OrderNumberService;
use Doctrine\ORM\EntityManagerInterface;
use PHPUnit\Framework\TestCase;
class AdvertServiceTest extends TestCase
{
private const HMAC_SECRET = 'test-hmac-secret';
public function testCreateWithoutDevis(): void
{
$orderNumber = new OrderNumber('04/2026-00001');
$orderNumber->markAsUsed();
$orderService = $this->createStub(OrderNumberService::class);
$orderService->method('generateAndUse')->willReturn($orderNumber);
$em = $this->createStub(EntityManagerInterface::class);
$service = new AdvertService($orderService, $em, self::HMAC_SECRET);
$advert = $service->create();
$this->assertInstanceOf(Advert::class, $advert);
$this->assertSame($orderNumber, $advert->getOrderNumber());
$this->assertNull($advert->getDevis());
}
public function testCreateWithDevis(): void
{
$orderNumber = new OrderNumber('04/2026-00002');
$devis = $this->createStub(Devis::class);
$devis->method('getOrderNumber')->willReturn($orderNumber);
$orderService = $this->createStub(OrderNumberService::class);
$em = $this->createStub(EntityManagerInterface::class);
$service = new AdvertService($orderService, $em, self::HMAC_SECRET);
$advert = $service->create($devis);
$this->assertInstanceOf(Advert::class, $advert);
$this->assertSame($orderNumber, $advert->getOrderNumber());
}
public function testCreateFromDevis(): void
{
$orderNumber = new OrderNumber('04/2026-00003');
$devis = $this->createStub(Devis::class);
$devis->method('getOrderNumber')->willReturn($orderNumber);
$orderService = $this->createStub(OrderNumberService::class);
$em = $this->createStub(EntityManagerInterface::class);
$service = new AdvertService($orderService, $em, self::HMAC_SECRET);
$advert = $service->createFromDevis($devis);
$this->assertInstanceOf(Advert::class, $advert);
$this->assertSame($orderNumber, $advert->getOrderNumber());
}
// --- isTvaEnabled ---
public function testIsTvaEnabledReturnsTrueForTrueString(): void
{
$orderService = $this->createStub(OrderNumberService::class);
$em = $this->createStub(EntityManagerInterface::class);
$service = new AdvertService($orderService, $em, self::HMAC_SECRET, 'true');
$this->assertTrue($service->isTvaEnabled());
}
public function testIsTvaEnabledReturnsTrueForOne(): void
{
$orderService = $this->createStub(OrderNumberService::class);
$em = $this->createStub(EntityManagerInterface::class);
$service = new AdvertService($orderService, $em, self::HMAC_SECRET, '1');
$this->assertTrue($service->isTvaEnabled());
}
public function testIsTvaEnabledReturnsFalseForFalseString(): void
{
$orderService = $this->createStub(OrderNumberService::class);
$em = $this->createStub(EntityManagerInterface::class);
$service = new AdvertService($orderService, $em, self::HMAC_SECRET, 'false');
$this->assertFalse($service->isTvaEnabled());
}
// --- getTvaRate ---
public function testGetTvaRateReturnsFloat(): void
{
$orderService = $this->createStub(OrderNumberService::class);
$em = $this->createStub(EntityManagerInterface::class);
$service = new AdvertService($orderService, $em, self::HMAC_SECRET, 'false', '0.20');
$this->assertSame(0.20, $service->getTvaRate());
}
// --- computeTotals ---
public function testComputeTotalsTvaDisabled(): void
{
$orderService = $this->createStub(OrderNumberService::class);
$em = $this->createStub(EntityManagerInterface::class);
$service = new AdvertService($orderService, $em, self::HMAC_SECRET, 'false', '0.20');
$result = $service->computeTotals('100.00');
$this->assertSame('100.00', $result['totalHt']);
$this->assertSame('0.00', $result['totalTva']);
$this->assertSame('100.00', $result['totalTtc']);
}
public function testComputeTotalsTvaEnabled(): void
{
$orderService = $this->createStub(OrderNumberService::class);
$em = $this->createStub(EntityManagerInterface::class);
$service = new AdvertService($orderService, $em, self::HMAC_SECRET, 'true', '0.20');
$result = $service->computeTotals('100.00');
$this->assertSame('100.00', $result['totalHt']);
$this->assertSame('20.00', $result['totalTva']);
$this->assertSame('120.00', $result['totalTtc']);
}
}