61 lines
2.0 KiB
PHP
61 lines
2.0 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 DeleteSharingGroupApiTest extends TestCase
|
|
{
|
|
use IntegrationTestTrait;
|
|
use ApiTestTrait;
|
|
|
|
protected const ENDPOINT = '/api/v1/sharingGroups/delete';
|
|
|
|
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 testDeleteSharingGroup(): void
|
|
{
|
|
$this->setAuthToken(AuthKeysFixture::ADMIN_API_KEY);
|
|
$url = sprintf('%s/%d', self::ENDPOINT, SharingGroupsFixture::SHARING_GROUP_A_ID);
|
|
$this->delete($url);
|
|
|
|
$this->assertResponseOk();
|
|
$this->assertDbRecordNotExists('SharingGroups', ['id' => SharingGroupsFixture::SHARING_GROUP_A_ID]);
|
|
//TODO: $this->assertRequestMatchesOpenApiSpec();
|
|
$this->assertResponseMatchesOpenApiSpec($url, 'delete');
|
|
$this->addWarning('TODO: CRUDComponent::delete() sets some view variables, does not take into account `isRest()`, fix it.');
|
|
}
|
|
|
|
public function testDeleteSharingGroupNotAllowedAsRegularUser(): void
|
|
{
|
|
$this->setAuthToken(AuthKeysFixture::REGULAR_USER_API_KEY);
|
|
$url = sprintf('%s/%d', self::ENDPOINT, SharingGroupsFixture::SHARING_GROUP_A_ID);
|
|
$this->delete($url);
|
|
|
|
$this->assertResponseCode(405);
|
|
$this->assertDbRecordExists('SharingGroups', ['id' => SharingGroupsFixture::SHARING_GROUP_A_ID]);
|
|
//TODO: $this->assertRequestMatchesOpenApiSpec();
|
|
$this->assertResponseMatchesOpenApiSpec($url, 'delete');
|
|
$this->addWarning('TODO: CRUDComponent::delete() sets some view variables, does not take into account `isRest()`, fix it.');
|
|
}
|
|
}
|