| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534 |
- <?php
- declare(strict_types=1);
- namespace App\Tests\Unit\Service\Shop;
- use App\ApiResources\Organization\OrganizationCreationRequest;
- use App\ApiResources\Shop\NewStructureArtistPremiumTrialRequest;
- use App\Entity\Organization\Organization;
- use App\Entity\Shop\ShopRequest;
- use App\Enum\Organization\LegalEnum;
- use App\Enum\Organization\PrincipalTypeEnum;
- use App\Enum\Organization\SettingsProductEnum;
- use App\Enum\Shop\ShopRequestStatus;
- use App\Enum\Shop\ShopRequestType;
- use App\Message\Message\Shop\NewStructureArtistPremiumTrial;
- use App\Service\Mailer\Mailer;
- use App\Service\Organization\OrganizationFactory;
- use App\Service\Shop\ShopService;
- use App\Service\Shop\Trial;
- use App\Service\Utils\DatesUtils;
- use Doctrine\ORM\EntityManagerInterface;
- use libphonenumber\PhoneNumberUtil;
- use PHPUnit\Framework\MockObject\MockObject;
- use PHPUnit\Framework\TestCase;
- use Psr\Log\LoggerInterface;
- use Symfony\Component\Messenger\Envelope;
- use Symfony\Component\Messenger\MessageBusInterface;
- use Symfony\Component\Serializer\SerializerInterface;
- class TestableShopService extends ShopService
- {
- public PhoneNumberUtil $phoneNumberUtil;
- public function controlShopRequestData(ShopRequestType $type, NewStructureArtistPremiumTrialRequest|array $data): void
- {
- parent::controlShopRequestData($type, $data);
- }
- public function createRequest(ShopRequestType $type, array $data): ShopRequest
- {
- return parent::createRequest($type, $data);
- }
- public function sendRequestValidationLink(ShopRequest $shopRequest): void
- {
- parent::sendRequestValidationLink($shopRequest);
- }
- public function handleNewStructureArtistPremiumTrialRequest(string $token): void
- {
- parent::handleNewStructureArtistPremiumTrialRequest($token);
- }
- public function createOrganization(NewStructureArtistPremiumTrialRequest $trialRequest): Organization
- {
- return parent::createOrganization($trialRequest);
- }
- public function generateSubdomain(string $name): string
- {
- return parent::generateSubdomain($name);
- }
- public function validateNewStructureArtistPremiumTrialRequest($request): void
- {
- parent::validateNewStructureArtistPremiumTrialRequest($request);
- }
- public function createOrganizationCreationRequestFromTrialRequest(
- NewStructureArtistPremiumTrialRequest $trialRequest,
- bool $forValidationOnly = false,
- ): OrganizationCreationRequest {
- return parent::createOrganizationCreationRequestFromTrialRequest($trialRequest, $forValidationOnly);
- }
- }
- /**
- * Unit tests for ShopService.
- */
- class ShopServiceTest extends TestCase
- {
- private readonly MockObject|EntityManagerInterface $entityManager;
- private readonly MockObject|Mailer $mailer;
- private string $publicBaseUrl;
- private readonly MockObject|OrganizationFactory $organizationFactory;
- private readonly MockObject|SerializerInterface $serializer;
- private readonly MockObject|LoggerInterface $logger;
- private readonly MockObject|MessageBusInterface $messageBus;
- private readonly MockObject|Trial $trial;
- public function setUp(): void
- {
- $this->entityManager = $this->getMockBuilder(EntityManagerInterface::class)->disableOriginalConstructor()->getMock();
- $this->mailer = $this->getMockBuilder(Mailer::class)->disableOriginalConstructor()->getMock();
- $this->publicBaseUrl = 'https://example.com';
- $this->organizationFactory = $this->getMockBuilder(OrganizationFactory::class)->disableOriginalConstructor()->getMock();
- $this->serializer = $this->getMockBuilder(SerializerInterface::class)->disableOriginalConstructor()->getMock();
- $this->logger = $this->getMockBuilder(LoggerInterface::class)->disableOriginalConstructor()->getMock();
- $this->messageBus = $this->getMockBuilder(MessageBusInterface::class)->disableOriginalConstructor()->getMock();
- $this->trial = $this->getMockBuilder(Trial::class)->disableOriginalConstructor()->getMock();
- }
- private function getShopServiceMockFor(string $methodName): TestableShopService|MockObject
- {
- $shopService = $this
- ->getMockBuilder(TestableShopService::class)
- ->setConstructorArgs(
- [
- $this->entityManager,
- $this->mailer,
- $this->publicBaseUrl,
- $this->organizationFactory,
- $this->serializer,
- $this->logger,
- $this->messageBus,
- $this->trial,
- ]
- )
- ->setMethodsExcept([$methodName])
- ->getMock();
- return $shopService;
- }
- public function tearDown(): void
- {
- DatesUtils::clearFakeDatetime();
- }
- /**
- * Test registerNewShopRequest method.
- */
- public function testRegisterNewShopRequest(): void
- {
- $shopService = $this->getShopServiceMockFor('registerNewShopRequest');
- $type = ShopRequestType::NEW_STRUCTURE_ARTIST_PREMIUM_TRIAL;
- $data = [
- 'representativeEmail' => 'test@example.com',
- 'representativeFirstName' => 'John',
- 'representativeLastName' => 'Doe',
- 'structureName' => 'Test Structure',
- ];
- $shopRequest = $this->getMockBuilder(ShopRequest::class)->getMock();
- $shopService->expects(self::once())
- ->method('controlShopRequestData')
- ->with($type, $data);
- $shopService->expects(self::once())
- ->method('createRequest')
- ->with($type, $data)
- ->willReturn($shopRequest);
- $shopService->expects(self::once())
- ->method('sendRequestValidationLink')
- ->with($shopRequest);
- $result = $shopService->registerNewShopRequest($type, $data);
- $this->assertSame($shopRequest, $result);
- }
- /**
- * Test controlShopRequestData method for NEW_STRUCTURE_ARTIST_PREMIUM_TRIAL type.
- */
- public function testControlShopRequestDataForNewStructureArtistPremiumTrial(): void
- {
- $shopService = $this->getShopServiceMockFor('controlShopRequestData');
- $type = ShopRequestType::NEW_STRUCTURE_ARTIST_PREMIUM_TRIAL;
- $data = [
- 'representativeEmail' => 'test@example.com',
- 'representativeFirstName' => 'John',
- 'representativeLastName' => 'Doe',
- 'structureName' => 'Test Structure',
- ];
- $shopService->expects(self::once())
- ->method('validateNewStructureArtistPremiumTrialRequest')
- ->with($data);
- $shopService->controlShopRequestData($type, $data);
- }
- /**
- * Test processShopRequest method for NEW_STRUCTURE_ARTIST_PREMIUM_TRIAL type.
- */
- public function testProcessShopRequest(): void
- {
- $shopService = $this->getShopServiceMockFor('processShopRequest');
- $shopRequest = $this->getMockBuilder(ShopRequest::class)->getMock();
- $shopRequest->method('getType')->willReturn(ShopRequestType::NEW_STRUCTURE_ARTIST_PREMIUM_TRIAL);
- $shopRequest->method('getToken')->willReturn('test-token');
- $this->messageBus
- ->expects(self::once())
- ->method('dispatch')
- ->with(self::callback(function ($message) {
- return $message instanceof NewStructureArtistPremiumTrial
- && $message->getToken() === 'test-token';
- }))
- ->willReturn(new Envelope(new NewStructureArtistPremiumTrial('azerty')));
- $shopRequest
- ->expects(self::once())
- ->method('setStatus')
- ->with(ShopRequestStatus::VALIDATED);
- $this->entityManager->expects(self::once())
- ->method('persist')
- ->with($shopRequest);
- $this->entityManager->expects(self::once())
- ->method('flush');
- $shopService->processShopRequest($shopRequest);
- }
- /**
- * Test createRequest method.
- */
- public function testCreateRequest(): void
- {
- $shopService = $this->getShopServiceMockFor('createRequest');
- $uuidRx = '/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i';
- $type = ShopRequestType::NEW_STRUCTURE_ARTIST_PREMIUM_TRIAL;
- $data = [
- 'representativeEmail' => 'test@example.com',
- 'representativeFirstName' => 'John',
- 'representativeLastName' => 'Doe',
- 'structureName' => 'Test Structure',
- ];
- $this->entityManager->expects(self::once())
- ->method('persist')
- ->with(self::callback(function ($shopRequest) use ($type, $data, $uuidRx) {
- return $shopRequest instanceof ShopRequest
- && $shopRequest->getType() === $type
- && $shopRequest->getData() === $data
- && preg_match($uuidRx, $shopRequest->getToken());
- }));
- $this->entityManager->expects(self::once())
- ->method('flush');
- $result = $shopService->createRequest($type, $data);
- $this->assertInstanceOf(ShopRequest::class, $result);
- $this->assertSame($type, $result->getType());
- $this->assertSame($data, $result->getData());
- $this->assertMatchesRegularExpression($uuidRx, $result->getToken());
- }
- /**
- * Test sendRequestValidationLink method.
- */
- public function testSendRequestValidationLink(): void
- {
- $shopService = $this->getShopServiceMockFor('sendRequestValidationLink');
- $token = 'test-token';
- $data = [
- 'representativeEmail' => 'test@example.com',
- 'representativeFirstName' => 'John',
- 'representativeLastName' => 'Doe',
- 'structureName' => 'Test Structure',
- ];
- $shopRequest = $this->getMockBuilder(ShopRequest::class)->getMock();
- $shopRequest->method('getToken')->willReturn($token);
- $shopRequest->method('getData')->willReturn($data);
- $this->mailer
- ->expects(self::once())
- ->method('main')
- ->with(self::callback(function ($model) use ($token, $data) {
- var_dump($model);
- return $model->getToken() === $token
- && $model->getRepresentativeEmail() === $data['representativeEmail']
- && $model->getRepresentativeFirstName() === $data['representativeFirstName']
- && $model->getRepresentativeLastName() === $data['representativeLastName']
- && $model->getStructureName() === $data['structureName']
- && $model->getValidationUrl() === 'https://example.com/api/public/shop/validate/'.$token;
- }));
- $shopRequest->expects(self::once())
- ->method('setStatus')
- ->with(ShopRequestStatus::ACTIVATION_LINK_SENT);
- $this->entityManager->expects(self::once())
- ->method('persist')
- ->with($shopRequest);
- $this->entityManager->expects(self::once())
- ->method('flush');
- $shopService->sendRequestValidationLink($shopRequest);
- }
- /**
- * Test handleNewStructureArtistPremiumTrialRequest method.
- */
- public function testHandleNewStructureArtistPremiumTrialRequest(): void
- {
- $shopService = $this->getShopServiceMockFor('handleNewStructureArtistPremiumTrialRequest');
- $token = 'test-token';
- $data = [
- 'representativeEmail' => 'test@example.com',
- 'representativeFirstName' => 'John',
- 'representativeLastName' => 'Doe',
- 'structureName' => 'Test Structure',
- ];
- $shopRequest = $this->getMockBuilder(ShopRequest::class)->getMock();
- $shopRequest->method('getToken')->willReturn($token);
- $shopRequest->method('getData')->willReturn($data);
- $this->entityManager
- ->expects(self::once())
- ->method('find')
- ->with(ShopRequest::class, $token)
- ->willReturn($shopRequest);
- $trialRequest = $this->getMockBuilder(NewStructureArtistPremiumTrialRequest::class)
- ->getMock();
- $this->serializer
- ->expects(self::once())
- ->method('deserialize')
- ->with(json_encode($data), NewStructureArtistPremiumTrialRequest::class, 'json')
- ->willReturn($trialRequest);
- $organization = $this->getMockBuilder(Organization::class)->getMock();
- $shopService
- ->expects(self::once())
- ->method('createOrganization')
- ->with($trialRequest)
- ->willReturn($organization);
- // Add expectation for password setting
- $trialRequest->method('getPassword')->willReturn('Password123!');
- $this->organizationFactory
- ->expects(self::once())
- ->method('setAdminAccountPassword')
- ->with($organization, 'Password123!');
- $this->trial
- ->expects(self::once())
- ->method('startArtistPremiumTrialForNewStructure')
- ->with($organization, $trialRequest);
- $this->logger->expects(self::once())
- ->method('info')
- ->with('Successfully processed NewStructureArtistPremiumTrial for token: '.$token);
- $shopService->handleNewStructureArtistPremiumTrialRequest($token);
- }
- /**
- * Test handleNewStructureArtistPremiumTrialRequest method with non-existent token.
- */
- public function testHandleNewStructureArtistPremiumTrialRequestWithNonExistentToken(): void
- {
- $shopService = $this->getShopServiceMockFor('handleNewStructureArtistPremiumTrialRequest');
- $this->entityManager->expects(self::once())
- ->method('find')
- ->with(ShopRequest::class, 'non-existent-token')
- ->willReturn(null);
- $this->logger->expects(self::once())
- ->method('error')
- ->with('Cannot find ShopRequest with token: non-existent-token');
- $shopService->handleNewStructureArtistPremiumTrialRequest('non-existent-token');
- }
- /**
- * Test createOrganization method.
- */
- public function testCreateOrganization(): void
- {
- $shopService = $this->getShopServiceMockFor('createOrganization');
- $trialRequest = $this
- ->getMockBuilder(NewStructureArtistPremiumTrialRequest::class)
- ->getMock();
- $organizationCreationRequest = $this
- ->getMockBuilder(OrganizationCreationRequest::class)
- ->getMock();
- $organization = $this->getMockBuilder(Organization::class)->getMock();
- $shopService->expects(self::once())
- ->method('createOrganizationCreationRequestFromTrialRequest')
- ->with($trialRequest)
- ->willReturn($organizationCreationRequest);
- $this->organizationFactory
- ->expects(self::once())
- ->method('create')
- ->with($organizationCreationRequest)
- ->willReturn($organization);
- $result = $shopService->createOrganization($trialRequest);
- $this->assertSame($organization, $result);
- }
- /**
- * Test validateNewStructureArtistPremiumTrialRequest method with valid data.
- */
- public function testValidateNewStructureArtistPremiumTrialRequest(): void
- {
- $shopService = $this->getShopServiceMockFor('validateNewStructureArtistPremiumTrialRequest');
- $phoneNumberUtil = $this
- ->getMockBuilder(PhoneNumberUtil::class)
- ->disableOriginalConstructor()
- ->getMock();
- $shopService->phoneNumberUtil = $phoneNumberUtil;
- $trialRequest = $this
- ->getMockBuilder(NewStructureArtistPremiumTrialRequest::class)
- ->getMock();
- $trialRequest->method('getRepresentativePhone')->willReturn('+33123456789');
- $organizationCreationRequest = $this
- ->getMockBuilder(OrganizationCreationRequest::class)
- ->getMock();
- $shopService->expects(self::once())
- ->method('createOrganizationCreationRequestFromTrialRequest')
- ->with($trialRequest)
- ->willReturn($organizationCreationRequest);
- $phoneNumberUtil->expects(self::once())
- ->method('isPossibleNumber')
- ->with('+33123456789')
- ->willReturn(true);
- $this->organizationFactory->expects(self::once())
- ->method('interruptIfOrganizationExists')
- ->with($organizationCreationRequest);
- $shopService->validateNewStructureArtistPremiumTrialRequest($trialRequest);
- }
- /**
- * Test validateNewStructureArtistPremiumTrialRequest method with invalid phone number.
- */
- public function testValidateNewStructureArtistPremiumTrialRequestWithInvalidPhoneNumber(): void
- {
- $shopService = $this->getShopServiceMockFor('validateNewStructureArtistPremiumTrialRequest');
- $phoneNumberUtil = $this->getMockBuilder(PhoneNumberUtil::class)
- ->disableOriginalConstructor()
- ->getMock();
- $shopService->phoneNumberUtil = $phoneNumberUtil;
- $trialRequest = $this
- ->getMockBuilder(NewStructureArtistPremiumTrialRequest::class)
- ->getMock();
- $trialRequest->method('getRepresentativePhone')->willReturn('invalid-phone');
- // Mock the phoneNumberUtil to return false for isPossibleNumber
- $phoneNumberUtil->expects(self::once())
- ->method('isPossibleNumber')
- ->with('invalid-phone')
- ->willReturn(false);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('Invalid phone number');
- $shopService->validateNewStructureArtistPremiumTrialRequest($trialRequest);
- }
- /**
- * Test createOrganizationCreationRequestFromTrialRequest method with forValidationOnly=false.
- */
- public function testCreateOrganizationCreationRequestFromTrialRequestComplete(): void
- {
- $shopService = $this->getShopServiceMockFor('createOrganizationCreationRequestFromTrialRequest');
- $trialRequest = $this->getMockBuilder(NewStructureArtistPremiumTrialRequest::class)
- ->getMock();
- $trialRequest->method('getStructureName')->willReturn('Test Structure');
- $trialRequest->method('getCity')->willReturn('Test City');
- $trialRequest->method('getPostalCode')->willReturn('12345');
- $trialRequest->method('getAddress')->willReturn('Test Address');
- $trialRequest->method('getAddressComplement')->willReturn('Test Address Complement');
- $trialRequest->method('getRepresentativePhone')->willReturn('+33123456789');
- $trialRequest->method('getStructureEmail')->willReturn('structure@example.com');
- $trialRequest->method('getStructureType')->willReturn(PrincipalTypeEnum::ARTISTIC_EDUCATION_ONLY);
- $trialRequest->method('getLegalStatus')->willReturn(LegalEnum::ASSOCIATION_LAW_1901);
- $trialRequest->method('getSiren')->willReturn('123456789');
- $trialRequest->method('getStructureIdentifier')->willReturn('test-structure');
- // Set a fake date for testing
- $fakeDate = '2023-05-15 10:30:00';
- DatesUtils::setFakeDatetime($fakeDate);
- // Test with forValidationOnly = false (default)
- $result = $shopService->createOrganizationCreationRequestFromTrialRequest($trialRequest);
- // Verify that all fields are set
- $this->assertEquals('Test Structure', $result->getName());
- $this->assertEquals('Test City', $result->getCity());
- $this->assertEquals('12345', $result->getPostalCode());
- $this->assertEquals('Test Address', $result->getStreetAddress1());
- $this->assertEquals('Test Address Complement', $result->getStreetAddress2());
- $this->assertEquals('structure@example.com', $result->getEmail());
- $this->assertEquals(PrincipalTypeEnum::ARTISTIC_EDUCATION_ONLY, $result->getPrincipalType());
- $this->assertEquals(LegalEnum::ASSOCIATION_LAW_1901, $result->getLegalStatus());
- $this->assertEquals('123456789', $result->getSiretNumber());
- $this->assertEquals('+33123456789', $result->getPhoneNumber());
- $this->assertEquals('test-structure', $result->getSubdomain());
- $this->assertEquals(SettingsProductEnum::FREEMIUM, $result->getProduct());
- $this->assertFalse($result->getCreateWebsite());
- $this->assertFalse($result->isClient());
- $this->assertEquals(new \DateTime($fakeDate), $result->getCreationDate());
- }
- }
|