| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- <?php
- namespace App\Tests\Service\Dolibarr;
- 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;
- 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" => "ref_int=" . $organizationId])
- ->willReturn([['id' => 1]]); // dummy non-empty data
- $society = $dolibarrApiService->getSociety($organizationId);
- $this->assertEquals(['id' => 1], $society);
- }
- /**
- * @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);
- }
- }
|