2022-01-10 16:19:58 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace App\Test\TestCase\Api\Users;
|
|
|
|
|
|
|
|
use Cake\TestSuite\TestCase;
|
|
|
|
use App\Test\Fixture\AuthKeysFixture;
|
|
|
|
use App\Test\Fixture\OrganisationsFixture;
|
|
|
|
use App\Test\Helper\ApiTestTrait;
|
|
|
|
|
|
|
|
class EditOrganisationApiTest extends TestCase
|
|
|
|
{
|
|
|
|
use ApiTestTrait;
|
|
|
|
|
2022-01-19 16:22:44 +01:00
|
|
|
protected const ENDPOINT = '/organisations/edit';
|
2022-01-10 16:19:58 +01:00
|
|
|
|
|
|
|
protected $fixtures = [
|
|
|
|
'app.Organisations',
|
|
|
|
'app.Individuals',
|
|
|
|
'app.Roles',
|
|
|
|
'app.Users',
|
|
|
|
'app.AuthKeys'
|
|
|
|
];
|
|
|
|
|
|
|
|
public function testEditOrganisation(): void
|
|
|
|
{
|
|
|
|
$this->setAuthToken(AuthKeysFixture::ADMIN_API_KEY);
|
|
|
|
|
|
|
|
$url = sprintf('%s/%d', self::ENDPOINT, OrganisationsFixture::ORGANISATION_A_ID);
|
|
|
|
$this->put(
|
|
|
|
$url,
|
|
|
|
[
|
|
|
|
'name' => 'Test Organisation 4321',
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertResponseOk();
|
|
|
|
$this->assertDbRecordExists(
|
|
|
|
'Organisations',
|
|
|
|
[
|
|
|
|
'id' => OrganisationsFixture::ORGANISATION_A_ID,
|
|
|
|
'name' => 'Test Organisation 4321',
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-01-11 17:17:04 +01:00
|
|
|
public function testEditOrganisationNotAllowedAsRegularUser(): void
|
2022-01-10 16:19:58 +01:00
|
|
|
{
|
|
|
|
$this->setAuthToken(AuthKeysFixture::REGULAR_USER_API_KEY);
|
|
|
|
|
|
|
|
$url = sprintf('%s/%d', self::ENDPOINT, OrganisationsFixture::ORGANISATION_B_ID);
|
|
|
|
$this->put(
|
|
|
|
$url,
|
|
|
|
[
|
|
|
|
'name' => 'Test Organisation 1234'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertResponseCode(405);
|
|
|
|
$this->assertDbRecordNotExists(
|
|
|
|
'Organisations',
|
|
|
|
[
|
|
|
|
'id' => OrganisationsFixture::ORGANISATION_B_ID,
|
|
|
|
'name' => 'Test Organisation 1234'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|