bajapro/Penilaian-Esai/tests/ApiTestTrait.php
2025-06-07 16:18:13 +07:00

33 lines
881 B
PHP

<?php namespace Tests;
trait ApiTestTrait
{
private $response;
public function assertApiResponse(Array $actualData)
{
$this->assertApiSuccess();
$response = json_decode($this->response->getContent(), true);
$responseData = $response['data'];
$this->assertNotEmpty($responseData['id']);
$this->assertModelData($actualData, $responseData);
}
public function assertApiSuccess()
{
$this->response->assertStatus(200);
$this->response->assertJson(['success' => true]);
}
public function assertModelData(Array $actualData, Array $expectedData)
{
foreach ($actualData as $key => $value) {
if (in_array($key, ['created_at', 'updated_at'])) {
continue;
}
$this->assertEquals($actualData[$key], $expectedData[$key]);
}
}
}