test(api) : add comprehensive API test suite (161 tests)
- Add AbstractApiTestCase with auth helpers and entity factories - Add tests for all entities: Machine, Piece, Composant, Product, Site, ModelType, Constructeur, CustomField, CustomFieldValue, Document, MachineComponentLink, MachinePieceLink, MachineProductLink, Profile - Add controller tests: CommentController, EntityHistory - Add HealthCheck, Filter, Pagination, Validation, Session tests - Test auth (401), authorization (403), CRUD, and edge cases Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
124
tests/Api/Entity/MachinePieceLinkTest.php
Normal file
124
tests/Api/Entity/MachinePieceLinkTest.php
Normal file
@@ -0,0 +1,124 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Tests\Api\Entity;
|
||||
|
||||
use App\Tests\AbstractApiTestCase;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
class MachinePieceLinkTest extends AbstractApiTestCase
|
||||
{
|
||||
public function testGetCollection(): void
|
||||
{
|
||||
$machine = $this->createMachine('Machine A');
|
||||
$piece = $this->createPiece('Joint A');
|
||||
$this->createMachinePieceLink($machine, $piece);
|
||||
|
||||
$client = $this->createViewerClient();
|
||||
$client->request('GET', '/api/machine_piece_links');
|
||||
|
||||
$this->assertResponseIsSuccessful();
|
||||
$this->assertJsonContainsHydraCollection();
|
||||
$this->assertJsonContains(['totalItems' => 1]);
|
||||
}
|
||||
|
||||
public function testPost(): void
|
||||
{
|
||||
$machine = $this->createMachine('Machine A');
|
||||
$piece = $this->createPiece('Joint A');
|
||||
|
||||
$client = $this->createGestionnaireClient();
|
||||
$client->request('POST', '/api/machine_piece_links', [
|
||||
'headers' => ['Content-Type' => 'application/ld+json'],
|
||||
'json' => [
|
||||
'machine' => self::iri('machines', $machine->getId()),
|
||||
'piece' => self::iri('pieces', $piece->getId()),
|
||||
],
|
||||
]);
|
||||
|
||||
$this->assertResponseStatusCodeSame(201);
|
||||
}
|
||||
|
||||
public function testPostWithParentComponentLink(): void
|
||||
{
|
||||
$machine = $this->createMachine('Machine A');
|
||||
$composant = $this->createComposant('Pompe A');
|
||||
$piece = $this->createPiece('Joint A');
|
||||
$compLink = $this->createMachineComponentLink($machine, $composant);
|
||||
|
||||
$client = $this->createGestionnaireClient();
|
||||
$client->request('POST', '/api/machine_piece_links', [
|
||||
'headers' => ['Content-Type' => 'application/ld+json'],
|
||||
'json' => [
|
||||
'machine' => self::iri('machines', $machine->getId()),
|
||||
'piece' => self::iri('pieces', $piece->getId()),
|
||||
'parentLink' => self::iri('machine_component_links', $compLink->getId()),
|
||||
],
|
||||
]);
|
||||
|
||||
$this->assertResponseStatusCodeSame(201);
|
||||
}
|
||||
|
||||
public function testPostWithOverrides(): void
|
||||
{
|
||||
$machine = $this->createMachine('Machine A');
|
||||
$piece = $this->createPiece('Joint A');
|
||||
|
||||
$client = $this->createGestionnaireClient();
|
||||
$client->request('POST', '/api/machine_piece_links', [
|
||||
'headers' => ['Content-Type' => 'application/ld+json'],
|
||||
'json' => [
|
||||
'machine' => self::iri('machines', $machine->getId()),
|
||||
'piece' => self::iri('pieces', $piece->getId()),
|
||||
'nameOverride' => 'Joint spécial',
|
||||
'prixOverride' => '25.00',
|
||||
],
|
||||
]);
|
||||
|
||||
$this->assertResponseStatusCodeSame(201);
|
||||
$this->assertJsonContains([
|
||||
'nameOverride' => 'Joint spécial',
|
||||
'prixOverride' => '25.00',
|
||||
]);
|
||||
}
|
||||
|
||||
public function testDelete(): void
|
||||
{
|
||||
$machine = $this->createMachine('Machine A');
|
||||
$piece = $this->createPiece('Joint A');
|
||||
$link = $this->createMachinePieceLink($machine, $piece);
|
||||
|
||||
$client = $this->createGestionnaireClient();
|
||||
$client->request('DELETE', self::iri('machine_piece_links', $link->getId()));
|
||||
|
||||
$this->assertResponseStatusCodeSame(204);
|
||||
}
|
||||
|
||||
public function testUnauthenticatedAccess(): void
|
||||
{
|
||||
$client = $this->createUnauthenticatedClient();
|
||||
$client->request('GET', '/api/machine_piece_links');
|
||||
|
||||
$this->assertResponseStatusCodeSame(401);
|
||||
}
|
||||
|
||||
public function testViewerCannotWrite(): void
|
||||
{
|
||||
$machine = $this->createMachine('Machine A');
|
||||
$piece = $this->createPiece('Joint A');
|
||||
|
||||
$client = $this->createViewerClient();
|
||||
$client->request('POST', '/api/machine_piece_links', [
|
||||
'headers' => ['Content-Type' => 'application/ld+json'],
|
||||
'json' => [
|
||||
'machine' => self::iri('machines', $machine->getId()),
|
||||
'piece' => self::iri('pieces', $piece->getId()),
|
||||
],
|
||||
]);
|
||||
|
||||
$this->assertResponseStatusCodeSame(403);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user