- 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
32 lines
841 B
PHP
Executable File
32 lines
841 B
PHP
Executable File
<?php
|
|
|
|
namespace Tests\Feature\Organization;
|
|
|
|
use CodeIgniter\Test\FeatureTestTrait;
|
|
use CodeIgniter\Test\CIUnitTestCase;
|
|
|
|
class CodingSysControllerTest extends CIUnitTestCase
|
|
{
|
|
use FeatureTestTrait;
|
|
|
|
protected $endpoint = 'api/organization/codingsys';
|
|
|
|
public function testIndexCodingSys()
|
|
{
|
|
$result = $this->get($this->endpoint);
|
|
$result->assertStatus(200);
|
|
}
|
|
|
|
public function testCreateCodingSys()
|
|
{
|
|
$payload = [
|
|
'CodingSysAbb' => 'ICD' . substr(time(), -3),
|
|
'FullText' => 'International Classification of Diseases 10 ' . time(),
|
|
'Description' => 'Medical diagnosis coding system'
|
|
];
|
|
|
|
$result = $this->withBodyFormat('json')->post($this->endpoint, $payload);
|
|
$result->assertStatus(201);
|
|
}
|
|
}
|