2024-03-03 21:52:26 +01:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2019 - 2024 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\Tests\API\Endpoints;
|
|
|
|
|
|
2026-02-14 23:32:43 +01:00
|
|
|
final class PartEndpointTest extends CrudEndpointTestCase
|
2024-03-03 21:52:26 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
protected function getBasePath(): string
|
|
|
|
|
{
|
|
|
|
|
return '/api/parts';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetCollection(): void
|
|
|
|
|
{
|
|
|
|
|
$this->_testGetCollection();
|
|
|
|
|
self::assertJsonContains([
|
|
|
|
|
'hydra:totalItems' => 3,
|
|
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetItem(): void
|
|
|
|
|
{
|
|
|
|
|
$this->_testGetItem(1);
|
|
|
|
|
$this->_testGetItem(2);
|
|
|
|
|
$this->_testGetItem(3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCreateItem(): void
|
|
|
|
|
{
|
|
|
|
|
$this->_testPostItem([
|
|
|
|
|
'name' => 'Test Part',
|
|
|
|
|
'description' => 'This is a test part',
|
|
|
|
|
'category' => '/api/categories/1',
|
|
|
|
|
'manufacturer' => '/api/manufacturers/1',
|
|
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateItem(): void
|
|
|
|
|
{
|
|
|
|
|
$this->_testPatchItem(1, [
|
|
|
|
|
'name' => 'Test Part Updated',
|
|
|
|
|
'category' => '/api/categories/2',
|
|
|
|
|
'manufacturer' => '/api/manufacturers/2',
|
|
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testDeleteItem(): void
|
|
|
|
|
{
|
|
|
|
|
$this->_testDeleteItem(1);
|
|
|
|
|
}
|
2026-05-25 22:22:55 +02:00
|
|
|
|
2026-05-25 22:37:48 +02:00
|
|
|
public function testMasterPictureAttachmentPatchWithIRI(): void
|
2026-05-25 22:22:55 +02:00
|
|
|
{
|
|
|
|
|
$client = static::createAuthenticatedClient();
|
|
|
|
|
|
|
|
|
|
// Create a new attachment with a picture URL for Part 1
|
|
|
|
|
$response = $client->request('POST', '/api/attachments', ['json' => [
|
|
|
|
|
'name' => 'Test Picture',
|
|
|
|
|
'url' => 'http://example.com/test.jpg',
|
|
|
|
|
'_type' => 'Part',
|
|
|
|
|
'element' => '/api/parts/1',
|
|
|
|
|
'attachment_type' => '/api/attachment_types/1',
|
|
|
|
|
]]);
|
|
|
|
|
self::assertResponseIsSuccessful();
|
|
|
|
|
$attachmentIri = $response->toArray()['@id'];
|
|
|
|
|
|
|
|
|
|
// Now PATCH Part 1 to set master_picture_attachment
|
|
|
|
|
$client->request('PATCH', '/api/parts/1', [
|
|
|
|
|
'json' => ['master_picture_attachment' => $attachmentIri],
|
|
|
|
|
'headers' => ['Content-Type' => 'application/merge-patch+json'],
|
|
|
|
|
]);
|
|
|
|
|
self::assertResponseIsSuccessful();
|
|
|
|
|
self::assertJsonContains(['master_picture_attachment' => ['@id' => $attachmentIri]]);
|
|
|
|
|
}
|
2026-05-25 22:37:48 +02:00
|
|
|
|
|
|
|
|
public function testMasterPictureAttachmentPatchWithArray(): void
|
|
|
|
|
{
|
|
|
|
|
$client = static::createAuthenticatedClient();
|
|
|
|
|
|
|
|
|
|
// Create a new attachment with a picture URL for Part 1
|
|
|
|
|
$response = $client->request('POST', '/api/attachments', ['json' => [
|
|
|
|
|
'name' => 'Test Picture',
|
|
|
|
|
'url' => 'http://example.com/test.jpg',
|
|
|
|
|
'_type' => 'Part',
|
|
|
|
|
'element' => '/api/parts/1',
|
|
|
|
|
'attachment_type' => '/api/attachment_types/1',
|
|
|
|
|
]]);
|
|
|
|
|
self::assertResponseIsSuccessful();
|
|
|
|
|
$attachmentIri = $response->toArray()['@id'];
|
|
|
|
|
|
|
|
|
|
// Now PATCH Part 1 to set master_picture_attachment
|
|
|
|
|
$client->request('PATCH', '/api/parts/1', [
|
|
|
|
|
'json' => ['master_picture_attachment' => ['@id' => $attachmentIri, '_type' => 'Part']],
|
|
|
|
|
'headers' => ['Content-Type' => 'application/merge-patch+json'],
|
|
|
|
|
]);
|
|
|
|
|
self::assertResponseIsSuccessful();
|
|
|
|
|
self::assertJsonContains(['master_picture_attachment' => ['@id' => $attachmentIri]]);
|
|
|
|
|
}
|
2026-05-25 22:22:55 +02:00
|
|
|
}
|