72 lines
2.0 KiB
PHP
72 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\Helper\ApiTestTrait;
|
|
|
|
class AddIndividualApiTest extends TestCase
|
|
{
|
|
use IntegrationTestTrait;
|
|
use ApiTestTrait;
|
|
|
|
protected const ENDPOINT = '/api/v1/individuals/add';
|
|
|
|
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 testAddIndividual(): void
|
|
{
|
|
$this->setAuthToken(AuthKeysFixture::ADMIN_API_KEY);
|
|
$this->post(
|
|
self::ENDPOINT,
|
|
[
|
|
'email' => 'john@example.com',
|
|
'first_name' => 'John',
|
|
'last_name' => 'Doe',
|
|
'position' => 'Security Analyst'
|
|
]
|
|
);
|
|
|
|
$this->assertResponseOk();
|
|
$this->assertResponseContains('"email": "john@example.com"');
|
|
$this->assertDbRecordExists('Individuals', ['email' => 'john@example.com']);
|
|
//TODO: $this->assertRequestMatchesOpenApiSpec();
|
|
$this->assertResponseMatchesOpenApiSpec(self::ENDPOINT, 'post');
|
|
}
|
|
|
|
public function testAddUserNotAllowedAsRegularUser(): void
|
|
{
|
|
$this->setAuthToken(AuthKeysFixture::REGULAR_USER_API_KEY);
|
|
$this->post(
|
|
self::ENDPOINT,
|
|
[
|
|
'email' => 'john@example.com',
|
|
'first_name' => 'John',
|
|
'last_name' => 'Doe',
|
|
'position' => 'Security Analyst'
|
|
]
|
|
);
|
|
|
|
$this->assertResponseCode(405);
|
|
$this->assertDbRecordNotExists('Individuals', ['email' => 'john@example.com']);
|
|
//TODO: $this->assertRequestMatchesOpenApiSpec();
|
|
$this->assertResponseMatchesOpenApiSpec(self::ENDPOINT, 'post');
|
|
}
|
|
}
|