'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 createTestMapDetail(array $data = []): array { $payload = array_merge([ 'TestMapDetailCode' => 'TMD_' . uniqid(), 'TestMapDetailName' => 'Test Map Detail ' . uniqid(), ], $data); $response = $this->withHeaders($this->authHeaders()) ->withBodyFormat('json') ->call('post', $this->endpoint, $payload); $response->assertStatus(201); $decoded = json_decode($response->getJSON(), true); return $decoded['data']; } public function testPartialUpdateTestMapDetailSuccess() { $detail = $this->createTestMapDetail(); $id = $detail['TestMapDetailID']; $patch = $this->withHeaders($this->authHeaders()) ->withBodyFormat('json') ->call('patch', "{$this->endpoint}/{$id}", ['TestMapDetailName' => 'Updated Detail']); $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 Detail', $showData['TestMapDetailName']); $this->assertEquals($detail['TestMapDetailCode'], $showData['TestMapDetailCode']); } public function testPartialUpdateTestMapDetailNotFound() { $patch = $this->withHeaders($this->authHeaders()) ->withBodyFormat('json') ->call('patch', "{$this->endpoint}/999999", ['TestMapDetailName' => 'Updated']); $patch->assertStatus(404); } public function testPartialUpdateTestMapDetailInvalidId() { $patch = $this->withHeaders($this->authHeaders()) ->withBodyFormat('json') ->call('patch', "{$this->endpoint}/invalid", ['TestMapDetailName' => 'Updated']); $patch->assertStatus(400); } public function testPartialUpdateTestMapDetailEmptyPayload() { $detail = $this->createTestMapDetail(); $id = $detail['TestMapDetailID']; $patch = $this->withHeaders($this->authHeaders()) ->withBodyFormat('json') ->call('patch', "{$this->endpoint}/{$id}", []); $patch->assertStatus(400); } public function testPartialUpdateTestMapDetailSingleField() { $detail = $this->createTestMapDetail(); $id = $detail['TestMapDetailID']; $patch = $this->withHeaders($this->authHeaders()) ->withBodyFormat('json') ->call('patch', "{$this->endpoint}/{$id}", ['TestMapDetailCode' => 'NEW_' . uniqid()]); $patch->assertStatus(200); $showData = json_decode($this->withHeaders($this->authHeaders()) ->call('get', "{$this->endpoint}/{$id}") ->getJSON(), true)['data']; $this->assertNotEquals($detail['TestMapDetailCode'], $showData['TestMapDetailCode']); $this->assertEquals($detail['TestMapDetailName'], $showData['TestMapDetailName']); } }