| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531 |
- <?php
- namespace App\Tests\Unit\Service\HelloAsso;
- use App\ApiResources\HelloAsso\AuthUrl;
- use App\ApiResources\HelloAsso\EventForm;
- use App\ApiResources\HelloAsso\HelloAssoProfile;
- use App\Entity\Booking\Event;
- use App\Entity\HelloAsso\HelloAsso;
- use App\Entity\Organization\Organization;
- use App\Repository\Booking\EventRepository;
- use App\Repository\Organization\OrganizationRepository;
- use App\Service\HelloAsso\HelloAssoService;
- use App\Service\Utils\DatesUtils;
- use Doctrine\ORM\EntityManagerInterface;
- use PHPUnit\Framework\MockObject\MockObject;
- use PHPUnit\Framework\TestCase;
- use Psr\Log\LoggerInterface;
- use Symfony\Contracts\HttpClient\HttpClientInterface;
- use Symfony\Contracts\HttpClient\ResponseInterface;
- // Classe testable pour accéder aux méthodes protégées
- class TestableHelloAssoService extends HelloAssoService
- {
- public function getHelloAssoEntityFor(int $organizationId, bool $shallHaveToken = true): HelloAsso
- {
- return parent::getHelloAssoEntityFor($organizationId, $shallHaveToken);
- }
- public function makeHelloAssoEventForm(array $formData): EventForm
- {
- return parent::makeHelloAssoEventForm($formData);
- }
- public function getCallbackUrl(): string
- {
- return parent::getCallbackUrl();
- }
- public function fetchAccessToken(?string $authorizationCode = null, ?string $challengeVerifier = null): array
- {
- return parent::fetchAccessToken($authorizationCode, $challengeVerifier);
- }
- public function updateDomain(array|string $accessToken, string $domain): void
- {
- if (is_array($accessToken)) {
- $accessToken = $accessToken['access_token'];
- }
- parent::updateDomain($accessToken, $domain);
- }
- public function refreshTokenIfNeeded(HelloAsso $helloAssoEntity): HelloAsso
- {
- return parent::refreshTokenIfNeeded($helloAssoEntity);
- }
- public function refreshTokens(HelloAsso $helloAssoEntity): HelloAsso
- {
- return parent::refreshTokens($helloAssoEntity);
- }
- }
- class HelloAssoServiceTest extends TestCase
- {
- private HttpClientInterface|MockObject $httpClient;
- private OrganizationRepository|MockObject $organizationRepository;
- private EventRepository|MockObject $eventRepository;
- private EntityManagerInterface|MockObject $entityManager;
- private LoggerInterface|MockObject $logger;
- private string $baseUrl = 'https://test-base.com';
- private string $publicAppBaseUrl = 'https://test-public.com';
- private string $helloAssoApiBaseUrl = 'https://api.helloasso.com/v5';
- private string $helloAssoAuthBaseUrl = 'https://auth.helloasso.com';
- private string $helloAssoClientId = 'test-client-id';
- private string $helloAssoClientSecret = 'test-client-secret';
- public function setUp(): void
- {
- $this->httpClient = $this->getMockBuilder(HttpClientInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository = $this->getMockBuilder(OrganizationRepository::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->eventRepository = $this->getMockBuilder(EventRepository::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->entityManager = $this->getMockBuilder(EntityManagerInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->logger = $this->getMockBuilder(LoggerInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- }
- private function getHelloAssoServiceMockFor(string $methodName): TestableHelloAssoService|MockObject
- {
- return $this->getMockBuilder(TestableHelloAssoService::class)
- ->setConstructorArgs([
- $this->httpClient,
- $this->organizationRepository,
- $this->eventRepository,
- $this->baseUrl,
- $this->publicAppBaseUrl,
- $this->helloAssoApiBaseUrl,
- $this->helloAssoAuthBaseUrl,
- $this->helloAssoClientId,
- $this->helloAssoClientSecret,
- $this->entityManager,
- $this->logger,
- ])
- ->setMethodsExcept([$methodName])
- ->getMock();
- }
- /**
- * @see HelloAssoService::setupOpentalentDomain()
- */
- public function testSetupOpentalentDomain(): void
- {
- $service = $this->getHelloAssoServiceMockFor('setupOpentalentDomain');
- $tokensData = ['access_token' => 'test-token'];
- $service->expects(self::once())
- ->method('fetchAccessToken')
- ->with(null)
- ->willReturn($tokensData);
- $service->expects(self::once())
- ->method('updateDomain')
- ->with($tokensData, 'https://*.opentalent.fr');
- $service->setupOpentalentDomain();
- }
- /**
- * @see HelloAssoService::getAuthUrl()
- */
- public function testGetAuthUrl(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getAuthUrl');
- $organizationId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn($helloAssoEntity);
- $helloAssoEntity->expects(self::once())
- ->method('setChallengeVerifier')
- ->with(self::isType('string'));
- $this->entityManager->expects(self::once())
- ->method('persist')
- ->with($helloAssoEntity);
- $this->entityManager->expects(self::once())
- ->method('flush');
- $result = $service->getAuthUrl($organizationId);
- $this->assertInstanceOf(AuthUrl::class, $result);
- }
- /**
- * @see HelloAssoService::getAuthUrl()
- */
- public function testGetAuthUrlWhenOrganizationNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getAuthUrl');
- $organizationId = 1;
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('Organization not found');
- $service->getAuthUrl($organizationId);
- }
- /**
- * @see HelloAssoService::getAuthUrl()
- */
- public function testGetAuthUrlWhenHelloAssoEntityNotExists(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getAuthUrl');
- $organizationId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn(null);
- $this->entityManager->expects(self::once())
- ->method('persist')
- ->with(self::isInstanceOf(HelloAsso::class));
- $this->entityManager->expects(self::once())
- ->method('flush');
- $result = $service->getAuthUrl($organizationId);
- $this->assertInstanceOf(AuthUrl::class, $result);
- }
- /**
- * @see HelloAssoService::connect()
- */
- public function testConnect(): void
- {
- $service = $this->getHelloAssoServiceMockFor('connect');
- $organizationId = 1;
- $authorizationCode = 'test-auth-code';
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $challengeVerifier = 'test-verifier';
- $tokensData = [
- 'access_token' => 'test-access-token',
- 'refresh_token' => 'test-refresh-token',
- 'expires_in' => 3600,
- 'token_type' => 'bearer',
- ];
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn($helloAssoEntity);
- $helloAssoEntity->expects(self::once())
- ->method('getChallengeVerifier')
- ->willReturn($challengeVerifier);
- $service->expects(self::once())
- ->method('fetchAccessToken')
- ->with($authorizationCode, $challengeVerifier)
- ->willReturn($tokensData);
- $helloAssoEntity->expects(self::once())
- ->method('setToken')
- ->with('test-access-token');
- $helloAssoEntity->expects(self::once())
- ->method('setTokenCreatedAt')
- ->with(self::isInstanceOf(\DateTime::class));
- $helloAssoEntity->expects(self::once())
- ->method('setRefreshToken')
- ->with('test-refresh-token');
- $helloAssoEntity->expects(self::once())
- ->method('setRefreshTokenCreatedAt')
- ->with(self::isInstanceOf(\DateTime::class));
- $helloAssoEntity->expects(self::once())
- ->method('setOrganizationSlug')
- ->with(null);
- $helloAssoEntity->expects(self::once())
- ->method('setChallengeVerifier')
- ->with(null);
- $this->entityManager->expects(self::once())
- ->method('persist')
- ->with($helloAssoEntity);
- $this->entityManager->expects(self::once())
- ->method('flush');
- $result = $service->connect($organizationId, $authorizationCode);
- $this->assertSame($helloAssoEntity, $result);
- }
- /**
- * @see HelloAssoService::connect()
- */
- public function testConnectWhenOrganizationNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('connect');
- $organizationId = 1;
- $authorizationCode = 'test-auth-code';
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('Organization not found');
- $service->connect($organizationId, $authorizationCode);
- }
- /**
- * @see HelloAssoService::connect()
- */
- public function testConnectWhenHelloAssoEntityNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('connect');
- $organizationId = 1;
- $authorizationCode = 'test-auth-code';
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('HelloAsso entity not found');
- $service->connect($organizationId, $authorizationCode);
- }
- /**
- * @see HelloAssoService::connect()
- */
- public function testConnectWhenInvalidTokenType(): void
- {
- $service = $this->getHelloAssoServiceMockFor('connect');
- $organizationId = 1;
- $authorizationCode = 'test-auth-code';
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $challengeVerifier = 'test-verifier';
- $tokensData = [
- 'access_token' => 'test-access-token',
- 'refresh_token' => 'test-refresh-token',
- 'expires_in' => 3600,
- 'token_type' => 'invalid',
- ];
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn($helloAssoEntity);
- $helloAssoEntity->expects(self::once())
- ->method('getChallengeVerifier')
- ->willReturn($challengeVerifier);
- $service->expects(self::once())
- ->method('fetchAccessToken')
- ->with($authorizationCode, $challengeVerifier)
- ->willReturn($tokensData);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('Invalid token type received');
- $service->connect($organizationId, $authorizationCode);
- }
- /**
- * @see HelloAssoService::makeHelloAssoProfile()
- */
- public function testMakeHelloAssoProfile(): void
- {
- $service = $this->getHelloAssoServiceMockFor('makeHelloAssoProfile');
- $organizationId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn($helloAssoEntity);
- $helloAssoEntity->expects(self::once())
- ->method('getToken')
- ->willReturn('test-token');
- $helloAssoEntity->expects(self::once())
- ->method('getOrganizationSlug')
- ->willReturn('test-org-slug');
- $result = $service->makeHelloAssoProfile($organizationId);
- $this->assertInstanceOf(HelloAssoProfile::class, $result);
- }
- /**
- * @see HelloAssoService::makeHelloAssoProfile()
- */
- public function testMakeHelloAssoProfileWhenOrganizationNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('makeHelloAssoProfile');
- $organizationId = 1;
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('Organization not found');
- $service->makeHelloAssoProfile($organizationId);
- }
- /**
- * @see HelloAssoService::makeHelloAssoProfile()
- */
- public function testMakeHelloAssoProfileWhenHelloAssoEntityNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('makeHelloAssoProfile');
- $organizationId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn(null);
- $result = $service->makeHelloAssoProfile($organizationId);
- $this->assertInstanceOf(HelloAssoProfile::class, $result);
- $this->assertFalse($result->isExisting());
- }
- /**
- * @see HelloAssoService::unlinkHelloAssoAccount()
- */
- public function testUnlinkHelloAssoAccount(): void
- {
- $service = $this->getHelloAssoServiceMockFor('unlinkHelloAssoAccount');
- $organizationId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn($helloAssoEntity);
- $helloAssoEntity->expects(self::once())
- ->method('setToken')
- ->with(null);
- $helloAssoEntity->expects(self::once())
- ->method('setTokenCreatedAt')
- ->with(null);
- $helloAssoEntity->expects(self::once())
- ->method('setRefreshToken')
- ->with(null);
- $helloAssoEntity->expects(self::once())
- ->method('setRefreshTokenCreatedAt')
- ->with(null);
- $helloAssoEntity->expects(self::once())
- ->method('setOrganizationSlug')
- ->with(null);
- $this->entityManager->expects(self::once())
- ->method('persist')
- ->with($helloAssoEntity);
- $this->entityManager->expects(self::once())
- ->method('flush');
- $service->unlinkHelloAssoAccount($organizationId);
- }
- /**
- * @see HelloAssoService::unlinkHelloAssoAccount()
- */
- public function testUnlinkHelloAssoAccountWhenOrganizationNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('unlinkHelloAssoAccount');
- $organizationId = 1;
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('Organization not found');
- $service->unlinkHelloAssoAccount($organizationId);
- }
- /**
- * @see HelloAssoService::unlinkHelloAssoAccount()
- */
- public function testUnlinkHelloAssoAccountWhenHelloAssoEntityNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('unlinkHelloAssoAccount');
- $organizationId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn(null);
- $this->entityManager->expects(self::never())
- ->method('persist');
- $this->entityManager->expects(self::never())
- ->method('flush');
- $service->unlinkHelloAssoAccount($organizationId);
- }
- /**
- * @see HelloAssoService::getResource()
- */
- public function testGetResource(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getResource');
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $routeParts = ['organizations', 'test-slug', 'forms'];
- $expectedData = ['test' => 'data'];
- $helloAssoEntity->expects(self::once())
- ->method('getOrganizationSlug')
- ->willReturn('test-org-slug');
- $helloAssoEntity->expects(self::atLeastOnce())
- ->method('getToken')
- ->willReturn('test-token');
- $service->expects(self::once())
- ->method('refreshTokenIfNeeded')
- ->with($helloAssoEntity)
- ->willReturn($helloAssoEntity);
- $service->expects(self::once())
- ->method('get')
- ->with('https://api.helloasso.com/v5/v5/organizations/test-slug/forms', [], [
- 'headers' => [
- 'accept' => 'application/json',
- 'authorization' => 'Bearer test-token',
- ],
- ])
- ->willReturn($response);
- $response->expects(self::once())
- ->method('getStatusCode')
- ->willReturn(200);
- $response->expects(self::once())
- ->method('getContent')
- ->willReturn(json_encode($expectedData));
- $result = $service->getResource($helloAssoEntity, $routeParts);
- $this->assertSame($expectedData, $result);
- }
- /**
- * @see HelloAssoService::getResource()
- */
- public function testGetResourceWhenIncompleteEntity(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getResource');
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $routeParts = ['organizations', 'test-slug', 'forms'];
- $helloAssoEntity->expects(self::once())
- ->method('getOrganizationSlug')
- ->willReturn(null);
- // getToken() won't be called because getOrganizationSlug() returns null first
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('HelloAsso entity incomplete');
- $service->getResource($helloAssoEntity, $routeParts);
- }
- /**
- * @see HelloAssoService::getResource()
- */
- public function testGetResourceWhenHttpError(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getResource');
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $routeParts = ['organizations', 'test-slug', 'forms'];
- $helloAssoEntity->expects(self::once())
- ->method('getOrganizationSlug')
- ->willReturn('test-org-slug');
- $helloAssoEntity->expects(self::atLeastOnce())
- ->method('getToken')
- ->willReturn('test-token');
- $service->expects(self::once())
- ->method('refreshTokenIfNeeded')
- ->with($helloAssoEntity)
- ->willReturn($helloAssoEntity);
- $service->expects(self::once())
- ->method('get')
- ->willReturn($response);
- $response->expects(self::atLeastOnce())
- ->method('getStatusCode')
- ->willReturn(404);
- $response->expects(self::once())
- ->method('getContent')
- ->with(false)
- ->willReturn('Not Found');
- $this->expectException(\Symfony\Component\HttpKernel\Exception\HttpException::class);
- $this->expectExceptionMessage('Failed to fetch resource: [404] Not Found');
- $service->getResource($helloAssoEntity, $routeParts);
- }
- /**
- * @see HelloAssoService::getHelloAssoEventForms()
- */
- public function testGetHelloAssoEventForms(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEventForms');
- $organizationId = 1;
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $formsData = [
- 'data' => [
- ['formSlug' => 'form1', 'title' => 'Event 1'],
- ['formSlug' => 'form2', 'title' => 'Event 2'],
- ],
- ];
- $service->expects(self::once())
- ->method('getHelloAssoEntityFor')
- ->with($organizationId, true)
- ->willReturn($helloAssoEntity);
- $helloAssoEntity
- ->method('getOrganizationSlug')
- ->willReturn('test-org-slug');
- $helloAssoEntity
- ->method('getToken')
- ->willReturn('abcd123');
- $service->expects(self::once())
- ->method('getResource')
- ->with($helloAssoEntity, ['organizations', 'test-org-slug', 'forms'])
- ->willReturn($formsData);
- $result = $service->getHelloAssoEventForms($organizationId);
- $this->assertIsArray($result);
- $this->assertCount(2, $result);
- $this->assertInstanceOf(EventForm::class, $result[0]);
- $this->assertInstanceOf(EventForm::class, $result[1]);
- }
- /**
- * @see HelloAssoService::getHelloAssoEventForms()
- */
- public function testGetHelloAssoEventFormsWhenIncomplete(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEventForms');
- $organizationId = 1;
- $service->expects(self::once())
- ->method('getHelloAssoEntityFor')
- ->with($organizationId, true)
- ->willThrowException(new \RuntimeException('HelloAsso entity incomplete'));
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('HelloAsso entity incomplete');
- $service->getHelloAssoEventForms($organizationId);
- }
- /**
- * @see HelloAssoService::getHelloAssoEventForm()
- */
- public function testGetHelloAssoEventForm(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEventForm');
- $organizationId = 1;
- $formSlug = 'test-form-slug';
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $formData = [
- 'formSlug' => 'test-form-slug',
- 'title' => 'Test Event',
- 'widgetFullUrl' => 'https://widget.url',
- ];
- $service->expects(self::once())
- ->method('getHelloAssoEntityFor')
- ->with($organizationId, true)
- ->willReturn($helloAssoEntity);
- $helloAssoEntity->expects(self::atLeastOnce())
- ->method('getOrganizationSlug')
- ->willReturn('test-org-slug');
- $service->expects(self::once())
- ->method('getResource')
- ->with($helloAssoEntity, ['organizations', 'test-org-slug', 'forms', 'Event', 'test-form-slug', 'public'])
- ->willReturn($formData);
- $service->expects(self::once())
- ->method('makeHelloAssoEventForm')
- ->with($formData)
- ->willReturn(new EventForm());
- $result = $service->getHelloAssoEventForm($organizationId, $formSlug);
- $this->assertInstanceOf(EventForm::class, $result);
- }
- /**
- * @see HelloAssoService::getHelloAssoEventFormByEventId()
- */
- public function testGetHelloAssoEventFormByEventId(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEventFormByEventId');
- $eventId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $event = $this->getMockBuilder(Event::class)
- ->disableOriginalConstructor()
- ->getMock();
- $eventForm = new EventForm();
- $this->eventRepository->expects(self::once())
- ->method('find')
- ->with($eventId)
- ->willReturn($event);
- $event->expects(self::once())
- ->method('getOrganization')
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getId')
- ->willReturn(1);
- $event->expects(self::once())
- ->method('getHelloAssoSlug')
- ->willReturn('test-hello-asso-slug');
- $service->expects(self::once())
- ->method('getHelloAssoEventForm')
- ->with(1, 'test-hello-asso-slug')
- ->willReturn($eventForm);
- $result = $service->getHelloAssoEventFormByEventId($eventId);
- $this->assertSame($eventForm, $result);
- }
- /**
- * @see HelloAssoService::getHelloAssoEventFormByEventId()
- */
- public function testGetHelloAssoEventFormByEventIdWhenEventNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEventFormByEventId');
- $eventId = 1;
- $this->eventRepository->expects(self::once())
- ->method('find')
- ->with($eventId)
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('Event not found');
- $service->getHelloAssoEventFormByEventId($eventId);
- }
- /**
- * @see HelloAssoService::getHelloAssoEventFormByEventId()
- */
- public function testGetHelloAssoEventFormByEventIdWhenNoHelloAssoSlug(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEventFormByEventId');
- $eventId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $event = $this->getMockBuilder(Event::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->eventRepository->expects(self::once())
- ->method('find')
- ->with($eventId)
- ->willReturn($event);
- $event->expects(self::once())
- ->method('getHelloAssoSlug')
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('HelloAsso form slug not found');
- $service->getHelloAssoEventFormByEventId($eventId);
- }
- /**
- * @see HelloAssoService::getHelloAssoEntityFor()
- */
- public function testGetHelloAssoEntityFor(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEntityFor');
- $organizationId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn($helloAssoEntity);
- $helloAssoEntity->expects(self::once())
- ->method('getOrganizationSlug')
- ->willReturn('test-org-slug');
- $helloAssoEntity->expects(self::once())
- ->method('getToken')
- ->willReturn('test-token');
- $result = $service->getHelloAssoEntityFor($organizationId);
- $this->assertSame($helloAssoEntity, $result);
- }
- /**
- * @see HelloAssoService::getHelloAssoEntityFor()
- */
- public function testGetHelloAssoEntityForWhenIncomplete(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEntityFor');
- $organizationId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn($helloAssoEntity);
- $helloAssoEntity->expects(self::once())
- ->method('getOrganizationSlug')
- ->willReturn('test-org-slug');
- $helloAssoEntity->expects(self::once())
- ->method('getToken')
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('HelloAsso entity incomplete');
- $service->getHelloAssoEntityFor($organizationId);
- }
- /**
- * @see HelloAssoService::getHelloAssoEntityFor()
- */
- public function testGetHelloAssoEntityForWhenOrganizationNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEntityFor');
- $organizationId = 1;
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('Organization not found');
- $service->getHelloAssoEntityFor($organizationId);
- }
- /**
- * @see HelloAssoService::getHelloAssoEntityFor()
- */
- public function testGetHelloAssoEntityForWhenHelloAssoNotFound(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getHelloAssoEntityFor');
- $organizationId = 1;
- $organization = $this->getMockBuilder(Organization::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->organizationRepository->expects(self::once())
- ->method('find')
- ->with($organizationId)
- ->willReturn($organization);
- $organization->expects(self::once())
- ->method('getHelloAsso')
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('HelloAsso entity not found');
- $service->getHelloAssoEntityFor($organizationId);
- }
- /**
- * @see HelloAssoService::makeHelloAssoEventForm()
- */
- public function testMakeHelloAssoEventForm(): void
- {
- $service = $this->getHelloAssoServiceMockFor('makeHelloAssoEventForm');
- $formData = [
- 'formSlug' => 'test-form-slug',
- 'title' => 'Test Event Title',
- 'widgetFullUrl' => 'https://widget.full.url',
- ];
- $result = $service->makeHelloAssoEventForm($formData);
- $this->assertInstanceOf(EventForm::class, $result);
- }
- /**
- * @see HelloAssoService::getCallbackUrl()
- */
- public function testGetCallbackUrl(): void
- {
- $service = $this->getHelloAssoServiceMockFor('getCallbackUrl');
- $result = $service->getCallbackUrl();
- $this->assertEquals('https://test-public.com/helloasso/callback', $result);
- }
- /**
- * @see HelloAssoService::fetchAccessToken()
- */
- public function testFetchAccessToken(): void
- {
- $service = $this->getHelloAssoServiceMockFor('fetchAccessToken');
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $expectedTokenData = [
- 'access_token' => 'test-access-token',
- 'refresh_token' => 'test-refresh-token',
- 'token_type' => 'Bearer',
- 'expires_in' => 3600,
- 'organization_slug' => null,
- ];
- $this->httpClient->expects(self::once())
- ->method('request')
- ->with('POST', 'https://api.helloasso.com/v5/oauth2/token', [
- 'headers' => ['Content-Type' => 'application/x-www-form-urlencoded'],
- 'body' => [
- 'grant_type' => 'client_credentials',
- 'client_id' => 'test-client-id',
- 'client_secret' => 'test-client-secret',
- ],
- ])
- ->willReturn($response);
- $response->expects(self::once())
- ->method('getStatusCode')
- ->willReturn(200);
- $response->expects(self::once())
- ->method('getContent')
- ->willReturn(json_encode($expectedTokenData));
- $result = $service->fetchAccessToken();
- $this->assertSame($expectedTokenData, $result);
- }
- /**
- * @see HelloAssoService::fetchAccessToken()
- */
- public function testFetchAccessTokenWithAuthCode(): void
- {
- $service = $this->getHelloAssoServiceMockFor('fetchAccessToken');
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $expectedTokenData = [
- 'access_token' => 'test-access-token',
- 'refresh_token' => 'test-refresh-token',
- 'token_type' => 'Bearer',
- 'expires_in' => 3600,
- 'organization_slug' => null,
- ];
- $service->expects(self::once())
- ->method('getCallbackUrl')
- ->willReturn('https://test-public.com/helloasso/callback');
- $this->httpClient->expects(self::once())
- ->method('request')
- ->with('POST', 'https://api.helloasso.com/v5/oauth2/token', [
- 'headers' => ['Content-Type' => 'application/x-www-form-urlencoded'],
- 'body' => [
- 'grant_type' => 'authorization_code',
- 'client_id' => 'test-client-id',
- 'client_secret' => 'test-client-secret',
- 'code' => 'test-auth-code',
- 'redirect_uri' => 'https://test-public.com/helloasso/callback',
- 'code_verifier' => 'test-verifier',
- ],
- ])
- ->willReturn($response);
- $response->expects(self::once())
- ->method('getStatusCode')
- ->willReturn(200);
- $response->expects(self::once())
- ->method('getContent')
- ->willReturn(json_encode($expectedTokenData));
- $result = $service->fetchAccessToken('test-auth-code', 'test-verifier');
- $this->assertSame($expectedTokenData, $result);
- }
- /**
- * @see HelloAssoService::fetchAccessToken()
- */
- public function testFetchAccessTokenWhenHttpError(): void
- {
- $service = $this->getHelloAssoServiceMockFor('fetchAccessToken');
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->httpClient->expects(self::once())
- ->method('request')
- ->willReturn($response);
- $response->expects(self::once())
- ->method('getStatusCode')
- ->willReturn(400);
- $response->expects(self::once())
- ->method('getContent')
- ->with(false)
- ->willReturn('Bad Request');
- $this->expectException(\Symfony\Component\HttpKernel\Exception\HttpException::class);
- $this->expectExceptionMessage('Failed to fetch access token: Bad Request');
- $service->fetchAccessToken();
- }
- /**
- * @see HelloAssoService::fetchAccessToken()
- */
- public function testFetchAccessTokenWhenJsonError(): void
- {
- $service = $this->getHelloAssoServiceMockFor('fetchAccessToken');
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->httpClient->expects(self::once())
- ->method('request')
- ->willReturn($response);
- $response->expects(self::once())
- ->method('getStatusCode')
- ->willReturn(200);
- $response->expects(self::once())
- ->method('getContent')
- ->willReturn('invalid-json');
- $this->expectException(\Symfony\Component\HttpKernel\Exception\HttpException::class);
- $this->expectExceptionMessage('Failed to parse authentication response:');
- $service->fetchAccessToken();
- }
- /**
- * @see HelloAssoService::updateDomain()
- */
- public function testUpdateDomain(): void
- {
- $service = $this->getHelloAssoServiceMockFor('updateDomain');
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $service->expects(self::once())
- ->method('put')
- ->with('https://api.helloasso.com/v5/v5/partners/me/api-clients', ['domain' => 'https://test-domain.com'], [], [
- 'headers' => [
- 'Authorization' => 'Bearer test-access-token',
- 'Content-Type' => 'application/json',
- ],
- ])
- ->willReturn($response);
- $response->expects(self::once())
- ->method('getStatusCode')
- ->willReturn(200);
- $service->updateDomain('test-access-token', 'https://test-domain.com');
- }
- /**
- * @see HelloAssoService::updateDomain()
- */
- public function testUpdateDomainWhenHttpError(): void
- {
- $service = $this->getHelloAssoServiceMockFor('updateDomain');
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $service->expects(self::once())
- ->method('put')
- ->willReturn($response);
- $response->expects(self::once())
- ->method('getStatusCode')
- ->willReturn(403);
- $response->expects(self::once())
- ->method('getContent')
- ->willReturn('Forbidden');
- $this->expectException(\Symfony\Component\HttpKernel\Exception\HttpException::class);
- $this->expectExceptionMessage('Failed to update domain: Forbidden');
- $service->updateDomain('test-access-token', 'https://test-domain.com');
- }
- /**
- * @see HelloAssoService::refreshTokenIfNeeded()
- */
- public function testRefreshTokenIfNeeded(): void
- {
- $service = $this->getHelloAssoServiceMockFor('refreshTokenIfNeeded');
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $futureDate = new \DateTime('+1 hour');
- $helloAssoEntity->expects(self::once())
- ->method('getRefreshToken')
- ->willReturn('test-refresh-token');
- $helloAssoEntity->expects(self::atLeastOnce())
- ->method('getRefreshTokenCreatedAt')
- ->willReturn($futureDate);
- $result = $service->refreshTokenIfNeeded($helloAssoEntity);
- $this->assertSame($helloAssoEntity, $result);
- }
- /**
- * @see HelloAssoService::refreshTokenIfNeeded()
- */
- public function testRefreshTokenIfNeededWhenTokenExpired(): void
- {
- // Set fake current time to control the test scenario
- DatesUtils::setFakeDatetime('2024-01-01 12:00:00');
- $service = $this->getHelloAssoServiceMockFor('refreshTokenIfNeeded');
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $refreshedEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- // Create a date that when 25 minutes are added, will be less than current fake time
- $pastDate = DatesUtils::new('2024-01-01 11:30:00');
- $helloAssoEntity->expects(self::once())
- ->method('getRefreshToken')
- ->willReturn('test-refresh-token');
- $helloAssoEntity->expects(self::atLeastOnce())
- ->method('getRefreshTokenCreatedAt')
- ->willReturn($pastDate);
- $service->expects(self::once())
- ->method('refreshTokens')
- ->with($helloAssoEntity)
- ->willReturn($helloAssoEntity);
- $result = $service->refreshTokenIfNeeded($helloAssoEntity);
- $this->assertSame($helloAssoEntity, $result);
- // Clean up fake datetime
- DatesUtils::clearFakeDatetime();
- }
- /**
- * @see HelloAssoService::refreshTokens()
- */
- public function testRefreshTokens(): void
- {
- $service = $this->getHelloAssoServiceMockFor('refreshTokens');
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $tokensData = [
- 'access_token' => 'new-access-token',
- 'refresh_token' => 'new-refresh-token',
- 'expires_in' => 3600,
- ];
- $helloAssoEntity->expects(self::atLeastOnce())
- ->method('getRefreshToken')
- ->willReturn('current-refresh-token');
- $helloAssoEntity->expects(self::once())
- ->method('getRefreshTokenCreatedAt')
- ->willReturn(new \DateTime());
- $this->httpClient->expects(self::once())
- ->method('request')
- ->with('POST', 'https://api.helloasso.com/v5/oauth2/token', [
- 'headers' => ['Content-Type' => 'application/x-www-form-urlencoded'],
- 'body' => [
- 'grant_type' => 'refresh_token',
- 'refresh_token' => 'current-refresh-token',
- ],
- ])
- ->willReturn($response);
- $response->expects(self::once())
- ->method('getStatusCode')
- ->willReturn(200);
- $response->expects(self::once())
- ->method('getContent')
- ->willReturn(json_encode($tokensData));
- $helloAssoEntity->expects(self::once())
- ->method('setToken')
- ->with('new-access-token');
- $helloAssoEntity->expects(self::once())
- ->method('setRefreshToken')
- ->with('new-refresh-token');
- $helloAssoEntity->expects(self::once())
- ->method('setTokenCreatedAt')
- ->with(self::isInstanceOf(\DateTime::class));
- $helloAssoEntity->expects(self::once())
- ->method('setRefreshTokenCreatedAt')
- ->with(self::isInstanceOf(\DateTime::class));
- $this->entityManager->expects(self::once())
- ->method('persist')
- ->with($helloAssoEntity);
- $this->entityManager->expects(self::once())
- ->method('flush');
- $result = $service->refreshTokens($helloAssoEntity);
- $this->assertSame($helloAssoEntity, $result);
- }
- /**
- * @see HelloAssoService::refreshTokens()
- */
- public function testRefreshTokensWhenIncompleteEntity(): void
- {
- $service = $this->getHelloAssoServiceMockFor('refreshTokens');
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity->expects(self::once())
- ->method('getRefreshToken')
- ->willReturn(null);
- // getRefreshTokenCreatedAt() won't be called because getRefreshToken() returns null first
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('HelloAsso entity incomplete');
- $service->refreshTokens($helloAssoEntity);
- }
- /**
- * @see HelloAssoService::refreshTokens()
- */
- public function testRefreshTokensWhenHttpError(): void
- {
- $service = $this->getHelloAssoServiceMockFor('refreshTokens');
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity->expects(self::atLeastOnce())
- ->method('getRefreshToken')
- ->willReturn('current-refresh-token');
- $helloAssoEntity->expects(self::once())
- ->method('getRefreshTokenCreatedAt')
- ->willReturn(new \DateTime());
- $this->httpClient->expects(self::once())
- ->method('request')
- ->willReturn($response);
- $response->expects(self::once())
- ->method('getStatusCode')
- ->willReturn(401);
- $response->expects(self::once())
- ->method('getContent')
- ->with(false)
- ->willReturn('Unauthorized');
- $this->expectException(\Symfony\Component\HttpKernel\Exception\HttpException::class);
- $this->expectExceptionMessage('Failed to refresh access token: Unauthorized');
- $service->refreshTokens($helloAssoEntity);
- }
- /**
- * @see HelloAssoService::refreshTokenIfNeeded()
- */
- public function testRefreshTokenIfNeededWhenIncompleteEntity(): void
- {
- $service = $this->getHelloAssoServiceMockFor('refreshTokenIfNeeded');
- $helloAssoEntity = $this->getMockBuilder(HelloAsso::class)
- ->disableOriginalConstructor()
- ->getMock();
- $helloAssoEntity->expects(self::once())
- ->method('getRefreshToken')
- ->willReturn('test-refresh-token');
- $helloAssoEntity->expects(self::once())
- ->method('getRefreshTokenCreatedAt')
- ->willReturn(null);
- $this->expectException(\RuntimeException::class);
- $this->expectExceptionMessage('HelloAsso entity incomplete');
- $service->refreshTokenIfNeeded($helloAssoEntity);
- }
- }
|