Current state

This commit is contained in:
2026-02-07 08:23:18 +01:00
commit 0a4372c40d
22479 changed files with 1553543 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
<?php
use App\Models\Artwork;
use App\Models\ContentType;
use App\Models\Category;
use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
test('view public artwork by slug', function () {
$art = Artwork::factory()->create();
$this->getJson('/api/v1/artworks/' . $art->slug)
->assertStatus(200)
->assertJsonPath('slug', $art->slug)
->assertJsonStructure(['slug', 'title', 'description', 'file', 'published_at']);
});
test('cannot view unapproved artwork', function () {
$art = Artwork::factory()->unapproved()->create();
$this->getJson('/api/v1/artworks/' . $art->slug)
->assertStatus(404);
});
test('soft-deleted artwork returns 404', function () {
$art = Artwork::factory()->create();
$art->delete();
$this->getJson('/api/v1/artworks/' . $art->slug)
->assertStatus(404);
});
test('category browsing returns artworks for the category only', function () {
$contentType = ContentType::create(['name' => 'Photography', 'slug' => 'photography', 'description' => '']);
$category = Category::create([
'content_type_id' => $contentType->id,
'parent_id' => null,
'name' => 'Abstract',
'slug' => 'abstract',
'description' => '',
'is_active' => true,
'sort_order' => 0,
]);
$inCat = Artwork::factory()->create();
$outCat = Artwork::factory()->create();
$inCat->categories()->attach($category->id);
$this->getJson('/api/v1/categories/' . $category->slug . '/artworks')
->assertStatus(200)
->assertJsonStructure(['data', 'links', 'meta'])
->assertJsonCount(1, 'data')
->assertJsonPath('data.0.slug', $inCat->slug);
});
test('unauthorized or private access is blocked (private artwork)', function () {
$art = Artwork::factory()->private()->create();
$this->getJson('/api/v1/artworks/' . $art->slug)
->assertStatus(404);
});