46 lines
1.2 KiB
PHP
46 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Test\TestCase\Api\Users;
|
|
|
|
use Cake\TestSuite\IntegrationTestTrait;
|
|
use Cake\TestSuite\TestCase;
|
|
use App\Test\Fixture\AuthKeysFixture;
|
|
use App\Test\Fixture\OrganisationsFixture;
|
|
use App\Test\Helper\ApiTestTrait;
|
|
|
|
class IndexOrganisationApiTest extends TestCase
|
|
{
|
|
use IntegrationTestTrait;
|
|
use ApiTestTrait;
|
|
|
|
protected const ENDPOINT = '/api/v1/organisations/index';
|
|
|
|
protected $fixtures = [
|
|
'app.Organisations',
|
|
'app.Individuals',
|
|
'app.Roles',
|
|
'app.Users',
|
|
'app.AuthKeys'
|
|
];
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->initializeValidator(APP . '../webroot/docs/openapi.yaml');
|
|
}
|
|
|
|
public function testIndexOrganisations(): void
|
|
{
|
|
$this->setAuthToken(AuthKeysFixture::ADMIN_API_KEY);
|
|
$this->get(self::ENDPOINT);
|
|
|
|
$this->assertResponseOk();
|
|
$this->assertResponseContains(sprintf('"id": %d', OrganisationsFixture::ORGANISATION_A_ID));
|
|
$this->assertResponseContains(sprintf('"id": %d', OrganisationsFixture::ORGANISATION_B_ID));
|
|
// TODO: $this->assertRequestMatchesOpenApiSpec();
|
|
$this->assertResponseMatchesOpenApiSpec(self::ENDPOINT);
|
|
}
|
|
}
|