- handle contact PATCH failures by checking model save result and returning HTTP 400 with the model error message - update ContactDetailModel nested updates to enforce active-detail checks and use model update() with explicit failure propagation - extend contact patch assertions and align test-create variants expectations to status=success for POST responses - refresh composer lock metadata/dependency constraints and include generated docs/data/test files updated during normalization - impact: API contract unchanged except clearer 400 error responses on invalid contact detail updates
123 lines
4.2 KiB
PHP
Executable File
123 lines
4.2 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Tests\Feature\Organization;
|
|
|
|
use CodeIgniter\Test\FeatureTestTrait;
|
|
use CodeIgniter\Test\CIUnitTestCase;
|
|
use Firebase\JWT\JWT;
|
|
|
|
class WorkstationPatchTest extends CIUnitTestCase
|
|
{
|
|
use FeatureTestTrait;
|
|
|
|
protected string $token;
|
|
protected string $endpoint = 'api/organization/workstation';
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$key = getenv('JWT_SECRET') ?: 'my-secret-key';
|
|
$payload = [
|
|
'iss' => 'localhost',
|
|
'aud' => 'localhost',
|
|
'iat' => time(),
|
|
'nbf' => time(),
|
|
'exp' => time() + 3600,
|
|
'uid' => 1,
|
|
'email' => 'admin@admin.com',
|
|
];
|
|
$this->token = JWT::encode($payload, $key, 'HS256');
|
|
}
|
|
|
|
private function authHeaders(): array
|
|
{
|
|
return ['Cookie' => 'token=' . $this->token];
|
|
}
|
|
|
|
private function createWorkstation(array $data = []): array
|
|
{
|
|
$payload = array_merge([
|
|
'WorkstationCode' => 'WS_' . uniqid(),
|
|
'WorkstationName' => 'Test Workstation ' . uniqid(),
|
|
], $data);
|
|
|
|
$response = $this->withHeaders($this->authHeaders())
|
|
->withBodyFormat('json')
|
|
->call('post', $this->endpoint, $payload);
|
|
|
|
$response->assertStatus(201);
|
|
$decoded = json_decode($response->getJSON(), true);
|
|
$id = $decoded['data'];
|
|
return array_merge(['WorkstationID' => $id], $payload);
|
|
}
|
|
|
|
public function testPartialUpdateWorkstationSuccess()
|
|
{
|
|
$ws = $this->createWorkstation();
|
|
$id = $ws['WorkstationID'];
|
|
|
|
$patch = $this->withHeaders($this->authHeaders())
|
|
->withBodyFormat('json')
|
|
->call('patch', "{$this->endpoint}/{$id}", ['WorkstationName' => 'Updated Workstation']);
|
|
|
|
$patch->assertStatus(200);
|
|
$patchData = json_decode($patch->getJSON(), true);
|
|
$this->assertEquals('success', $patchData['status']);
|
|
|
|
$show = $this->withHeaders($this->authHeaders())->call('get', "{$this->endpoint}/{$id}");
|
|
$show->assertStatus(200);
|
|
$showData = json_decode($show->getJSON(), true)['data'];
|
|
|
|
$this->assertEquals('Updated Workstation', $showData['WorkstationName']);
|
|
$this->assertEquals($ws['WorkstationCode'], $showData['WorkstationCode']);
|
|
}
|
|
|
|
public function testPartialUpdateWorkstationNotFound()
|
|
{
|
|
$patch = $this->withHeaders($this->authHeaders())
|
|
->withBodyFormat('json')
|
|
->call('patch', "{$this->endpoint}/999999", ['WorkstationName' => 'Updated']);
|
|
|
|
$patch->assertStatus(404);
|
|
}
|
|
|
|
public function testPartialUpdateWorkstationInvalidId()
|
|
{
|
|
$patch = $this->withHeaders($this->authHeaders())
|
|
->withBodyFormat('json')
|
|
->call('patch', "{$this->endpoint}/invalid", ['WorkstationName' => 'Updated']);
|
|
|
|
$patch->assertStatus(400);
|
|
}
|
|
|
|
public function testPartialUpdateWorkstationEmptyPayload()
|
|
{
|
|
$ws = $this->createWorkstation();
|
|
$id = $ws['WorkstationID'];
|
|
|
|
$patch = $this->withHeaders($this->authHeaders())
|
|
->withBodyFormat('json')
|
|
->call('patch', "{$this->endpoint}/{$id}", []);
|
|
|
|
$patch->assertStatus(400);
|
|
}
|
|
|
|
public function testPartialUpdateWorkstationSingleField()
|
|
{
|
|
$ws = $this->createWorkstation();
|
|
$id = $ws['WorkstationID'];
|
|
|
|
$patch = $this->withHeaders($this->authHeaders())
|
|
->withBodyFormat('json')
|
|
->call('patch', "{$this->endpoint}/{$id}", ['WorkstationCode' => 'NEW_' . uniqid()]);
|
|
|
|
$patch->assertStatus(200);
|
|
$showData = json_decode($this->withHeaders($this->authHeaders())
|
|
->call('get', "{$this->endpoint}/{$id}")
|
|
->getJSON(), true)['data'];
|
|
|
|
$this->assertNotEquals($ws['WorkstationCode'], $showData['WorkstationCode']);
|
|
$this->assertEquals($ws['WorkstationName'], $showData['WorkstationName']);
|
|
}
|
|
}
|