47 lines
1.3 KiB
PHP
47 lines
1.3 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\SharingGroupsFixture;
|
|
use App\Test\Helper\ApiTestTrait;
|
|
|
|
class IndexSharingGroupsApiTest extends TestCase
|
|
{
|
|
use IntegrationTestTrait;
|
|
use ApiTestTrait;
|
|
|
|
protected const ENDPOINT = '/api/v1/sharingGroups/index';
|
|
|
|
protected $fixtures = [
|
|
'app.Organisations',
|
|
'app.Individuals',
|
|
'app.Roles',
|
|
'app.Users',
|
|
'app.AuthKeys',
|
|
'app.SharingGroups'
|
|
];
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->initializeValidator(APP . '../webroot/docs/openapi.yaml');
|
|
}
|
|
|
|
public function testIndexSharingGroups(): void
|
|
{
|
|
$this->setAuthToken(AuthKeysFixture::ADMIN_API_KEY);
|
|
$this->get(self::ENDPOINT);
|
|
|
|
$this->assertResponseOk();
|
|
$this->assertResponseContains(sprintf('"id": %d', SharingGroupsFixture::SHARING_GROUP_A_ID));
|
|
$this->assertResponseContains(sprintf('"id": %d', SharingGroupsFixture::SHARING_GROUP_B_ID));
|
|
// TODO: $this->assertRequestMatchesOpenApiSpec();
|
|
$this->assertResponseMatchesOpenApiSpec(self::ENDPOINT);
|
|
}
|
|
}
|