| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 |
- <?php
- namespace App\Tests\Unit\Service\Dolibarr;
- use App\Entity\Organization\Organization;
- use App\Service\Dolibarr\DolibarrApiService;
- use PHPUnit\Framework\MockObject\MockObject;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\HttpKernel\Exception\HttpException;
- use Symfony\Contracts\HttpClient\HttpClientInterface;
- use Symfony\Contracts\HttpClient\ResponseInterface;
- class DolibarrApiServiceTest extends TestCase
- {
- private MockObject|HttpClientInterface $client;
- public function setUp(): void
- {
- $this->client = $this->getMockBuilder(HttpClientInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- }
- /**
- * @see DolibarrApiService::getSociety()
- */
- public function testGetSociety(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getSociety'])
- ->getMock();
- $organizationId = 123;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('thirdparties', ['limit' => '1', 'sqlfilters' => '(ef.2iopen_organization_id:=:'.$organizationId.')'])
- ->willReturn([['id' => 1]]); // dummy non-empty data
- $society = $dolibarrApiService->getSociety($organizationId);
- $this->assertEquals(['id' => 1], $society);
- }
- /**
- * @see DolibarrApiService::getSociety()
- */
- public function testGetSocietyNotExisting(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getSociety'])
- ->getMock();
- $organizationId = 123;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('thirdparties', ['limit' => '1', 'sqlfilters' => '(ef.2iopen_organization_id:=:'.$organizationId.')'])
- ->willThrowException(new HttpException(404));
- $society = $dolibarrApiService->getSociety($organizationId);
- $this->assertEquals(null, $society);
- }
- /**
- * @see DolibarrApiService::getSociety()
- */
- public function testGetSocietyWithError(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getSociety'])
- ->getMock();
- $organizationId = 123;
- $e = new HttpException(500);
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('thirdparties', ['limit' => '1', 'sqlfilters' => '(ef.2iopen_organization_id:=:'.$organizationId.')'])
- ->willThrowException($e);
- $this->expectException($e::class);
- $dolibarrApiService->getSociety($organizationId);
- }
- /**
- * @see DolibarrApiService::getActiveContract()
- */
- public function testGetActiveContract(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getActiveContract'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('contracts', ['limit' => '1', 'sqlfilters' => 'statut:=:1', 'thirdparty_ids' => $socId])
- ->willReturn([['id' => 1]]); // dummy non-empty data
- $this->assertEquals(['id' => 1], $dolibarrApiService->getActiveContract($socId));
- }
- /**
- * @see DolibarrApiService::getActiveContract()
- */
- public function testGetActiveContractMissing(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getActiveContract'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('contracts', ['limit' => '1', 'sqlfilters' => 'statut:=:1', 'thirdparty_ids' => $socId])
- ->willThrowException(new HttpException(404));
- $this->assertEquals(null, $dolibarrApiService->getActiveContract($socId));
- }
- /**
- * @see DolibarrApiService::getActiveContract()
- */
- public function testGetActiveContractError(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getActiveContract'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('contracts', ['limit' => '1', 'sqlfilters' => 'statut:=:1', 'thirdparty_ids' => $socId])
- ->willThrowException(new HttpException(500));
- $this->expectException(HttpException::class);
- $dolibarrApiService->getActiveContract($socId);
- }
- /**
- * @see DolibarrApiService::getBills()
- */
- public function testGetBills(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getBills'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('invoices', ['sortfield' => 'datef', 'sortorder' => 'DESC', 'limit' => 5, 'sqlfilters' => 'fk_soc:=:'.$socId])
- ->willReturn([['id' => 10], ['id' => 20]]);
- $this->assertEquals([['id' => 10], ['id' => 20]], $dolibarrApiService->getBills($socId));
- }
- /**
- * @see DolibarrApiService::getBills()
- */
- public function testGetBillsMissing(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getBills'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('invoices', ['sortfield' => 'datef', 'sortorder' => 'DESC', 'limit' => 5, 'sqlfilters' => 'fk_soc:=:'.$socId])
- ->willThrowException(new HttpException(404));
- $this->assertEquals([], $dolibarrApiService->getBills($socId));
- }
- /**
- * @see DolibarrApiService::getBills()
- */
- public function testGetBillsError(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getBills'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('invoices', ['sortfield' => 'datef', 'sortorder' => 'DESC', 'limit' => 5, 'sqlfilters' => 'fk_soc:=:'.$socId])
- ->willThrowException(new HttpException(500));
- $this->expectException(HttpException::class);
- $dolibarrApiService->getBills($socId);
- }
- /**
- * @see DolibarrApiService::getAllClients()
- */
- public function testGetAllClients(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getAllClients'])
- ->getMock();
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('thirdparties', ['limit' => '1000000', 'sqlfilters' => 'client:=:1'])
- ->willReturn([['id' => 10], ['id' => 20]]);
- $this->assertEquals([['id' => 10], ['id' => 20]], $dolibarrApiService->getAllClients());
- }
- /**
- * @see DolibarrApiService::getContacts()
- */
- public function testGetContacts(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getContacts'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('contacts', ['limit' => 1000, 'thirdparty_ids' => $socId])
- ->willReturn([['id' => 10], ['id' => 20]]);
- $this->assertEquals([['id' => 10], ['id' => 20]], $dolibarrApiService->getContacts($socId));
- }
- /**
- * @see DolibarrApiService::getContacts()
- */
- public function testGetContactsMissing(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getContacts'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('contacts', ['limit' => 1000, 'thirdparty_ids' => $socId])
- ->willThrowException(new HttpException(404));
- $this->assertEquals([], $dolibarrApiService->getContacts($socId));
- }
- /**
- * @see DolibarrApiService::getContacts()
- */
- public function testGetContactsError(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getContacts'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('contacts', ['limit' => 1000, 'thirdparty_ids' => $socId])
- ->willThrowException(new HttpException(500));
- $this->expectException(HttpException::class);
- $dolibarrApiService->getContacts($socId);
- }
- /**
- * @see DolibarrApiService::getActiveOpentalentContacts()
- */
- public function testGetActiveOpentalentContacts(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getActiveOpentalentContacts'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('contacts?limit=1000&t.statut=1&thirdparty_ids='.$socId.'&sqlfilters:=:(te.2iopen_person_id%3A%3E%3A0)')
- ->willReturn([['id' => 10], ['id' => 20]]);
- $this->assertEquals([['id' => 10], ['id' => 20]], $dolibarrApiService->getActiveOpentalentContacts($socId));
- }
- /**
- * @see DolibarrApiService::getActiveOpentalentContacts()
- */
- public function testGetActiveOpentalentContactsMissing(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getActiveOpentalentContacts'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('contacts?limit=1000&t.statut=1&thirdparty_ids='.$socId.'&sqlfilters:=:(te.2iopen_person_id%3A%3E%3A0)')
- ->willThrowException(new HttpException(404));
- $this->assertEquals([], $dolibarrApiService->getActiveOpentalentContacts($socId));
- }
- /**
- * @see DolibarrApiService::getActiveOpentalentContacts()
- */
- public function testGetActiveOpentalentContactsError(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getActiveOpentalentContacts'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('contacts?limit=1000&t.statut=1&thirdparty_ids='.$socId.'&sqlfilters:=:(te.2iopen_person_id%3A%3E%3A0)')
- ->willThrowException(new HttpException(500));
- $this->expectException(HttpException::class);
- $dolibarrApiService->getActiveOpentalentContacts($socId);
- }
- /**
- * @see DolibarrApiService::getSocietyTagsIds()
- */
- public function testGetSocietyTagsIds(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getSocietyTagsIds'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('/thirdparties/1/categories')
- ->willReturn([['id' => '10'], ['id' => '20']]);
- $this->assertEquals(
- [10, 20],
- $dolibarrApiService->getSocietyTagsIds($socId)
- );
- }
- /**
- * @see DolibarrApiService::getSocietyTagsIds()
- */
- public function testGetSocietyTagsIdsMissing(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getSocietyTagsIds'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('/thirdparties/1/categories')
- ->willThrowException(new HttpException(404));
- $this->assertEquals(
- [],
- $dolibarrApiService->getSocietyTagsIds($socId)
- );
- }
- /**
- * @see DolibarrApiService::getSocietyTagsIds()
- */
- public function testGetSocietyTagsIdsError(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['getSocietyTagsIds'])
- ->getMock();
- $socId = 1;
- $dolibarrApiService
- ->expects(self::once())
- ->method('getJsonContent')
- ->with('/thirdparties/1/categories')
- ->willThrowException(new HttpException(500));
- $this->expectException(HttpException::class);
- $dolibarrApiService->getSocietyTagsIds($socId);
- }
- /**
- * @see DolibarrApiService::createSociety
- */
- public function testCreateSociety(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['createSociety'])
- ->getMock();
- $organization = $this->getMockBuilder(Organization::class)->getMock();
- $organization->method('getId')->willReturn(123);
- $organization->method('getName')->willReturn('Foo');
- $expectedPostBody = [
- 'name' => 'Foo',
- 'client' => 2,
- 'code_client' => -1,
- 'import_key' => 'crm',
- 'array_options' => ['options_2iopen_organization_id' => 123]
- ];
- $response = $this->getMockBuilder(ResponseInterface::class)->getMock();
- $response->method('getContent')->willReturn('456');
- $dolibarrApiService
- ->expects(self::once())
- ->method('post')
- ->with("/thirdparties", $expectedPostBody)
- ->willReturn($response);
- $result = $dolibarrApiService->createSociety($organization);
- $this->assertEquals(456, $result);
- }
- /**
- * @see DolibarrApiService::createSociety
- */
- public function testCreateSocietyIsClient(): void
- {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['createSociety'])
- ->getMock();
- $organization = $this->getMockBuilder(Organization::class)->getMock();
- $organization->method('getId')->willReturn(123);
- $organization->method('getName')->willReturn('Foo');
- $expectedPostBody = [
- 'name' => 'Foo',
- 'client' => 1,
- 'code_client' => -1,
- 'import_key' => 'crm',
- 'array_options' => ['options_2iopen_organization_id' => 123]
- ];
- $response = $this->getMockBuilder(ResponseInterface::class)->getMock();
- $response->method('getContent')->willReturn('456');
- $dolibarrApiService
- ->expects(self::once())
- ->method('post')
- ->with("/thirdparties", $expectedPostBody)
- ->willReturn($response);
- $result = $dolibarrApiService->createSociety($organization, true);
- $this->assertEquals(456, $result);
- }
- public function testSwitchSocietyToProspect(): void {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['switchSocietyToProspect'])
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)->getMock();
- $response->method('getStatusCode')->willReturn(200);
- $dolibarrApiService
- ->method('getSociety')
- ->with(123)
- ->willReturn(['id' => 456]);
- $dolibarrApiService
- ->expects(self::once())
- ->method('put')
- ->with('thirdparties/456', ['client' => 2])
- ->willReturn($response);
- $dolibarrApiService->switchSocietyToProspect(123);
- }
- public function testSwitchSocietyToProspectWithError(): void {
- $dolibarrApiService = $this->getMockBuilder(DolibarrApiService::class)
- ->setConstructorArgs([$this->client])
- ->setMethodsExcept(['switchSocietyToProspect'])
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)->getMock();
- $response->method('getStatusCode')->willReturn(500);
- $dolibarrApiService
- ->method('getSociety')
- ->with(123)
- ->willReturn(['id' => 456]);
- $dolibarrApiService
- ->expects(self::once())
- ->method('put')
- ->with('thirdparties/456', ['client' => 2])
- ->willReturn($response);
- $this->expectException(HttpException::class);
- $this->expectExceptionMessage('Error while updating the society in Dolibarr');
- $dolibarrApiService->switchSocietyToProspect(123);
- }
- }
|