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()); } }