60 lines
2.0 KiB
PHP
60 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\OrganisationsFixture;
|
|
use App\Test\Helper\ApiTestTrait;
|
|
|
|
class DeleteOrganisationApiTest extends TestCase
|
|
{
|
|
use IntegrationTestTrait;
|
|
use ApiTestTrait;
|
|
|
|
protected const ENDPOINT = '/api/v1/organisations/delete';
|
|
|
|
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 testDeleteOrganisation(): void
|
|
{
|
|
$this->setAuthToken(AuthKeysFixture::ADMIN_API_KEY);
|
|
$url = sprintf('%s/%d', self::ENDPOINT, OrganisationsFixture::ORGANISATION_B_ID);
|
|
$this->delete($url);
|
|
|
|
$this->assertResponseOk();
|
|
$this->assertDbRecordNotExists('Organisations', ['id' => OrganisationsFixture::ORGANISATION_B_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 testDeleteOrganisationNotAllowedToRegularUser(): void
|
|
{
|
|
$this->setAuthToken(AuthKeysFixture::REGULAR_USER_API_KEY);
|
|
$url = sprintf('%s/%d', self::ENDPOINT, OrganisationsFixture::ORGANISATION_B_ID);
|
|
$this->delete($url);
|
|
|
|
$this->assertResponseCode(405);
|
|
$this->assertDbRecordExists('Organisations', ['id' => OrganisationsFixture::ORGANISATION_B_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.');
|
|
}
|
|
}
|