Files
famous-ly4-ev/app-modules/catalog/tests/Feature/CatalogReadApiTest.php
T
Nyan Lin Paing d1ce73e7ff Fix EV company logo upload to use public disk
Logos were being written to the default filesystem disk, which
resolves to storage/app/private and isn't web-servable, so the
frontend couldn't load the image. Store logos on the public disk
(storage/app/public, symlinked to public/storage) instead, and
resolve logoUrl() against that disk explicitly.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015HaT8a5ZWh45JkjTLPWeaP
2026-09-03 00:30:50 +07:00

89 lines
3.3 KiB
PHP

<?php
use App\Models\User;
use Illuminate\Support\Facades\Storage;
use Modules\Catalog\Models\Destination;
use Modules\Catalog\Models\EvCompany;
beforeEach(function () {
$this->token = User::factory()->create()->createToken('test-token')->plainTextToken;
});
test('lists active ev companies', function () {
$active = EvCompany::factory()->create(['is_active' => true]);
EvCompany::factory()->create(['is_active' => false]);
$this->withHeader('Authorization', "Bearer {$this->token}")
->getJson('/api/v1/companies')
->assertSuccessful()
->assertJsonCount(1, 'data')
->assertJsonFragment(['id' => $active->id]);
});
test('returns the company logo as a full absolute url', function () {
$company = EvCompany::factory()->create(['is_active' => true, 'logo' => 'logos/example.png']);
$this->withHeader('Authorization', "Bearer {$this->token}")
->getJson('/api/v1/companies')
->assertSuccessful()
->assertJsonFragment(['logo' => url(Storage::disk('public')->url($company->logo))]);
});
test('returns a null logo when the company has none', function () {
EvCompany::factory()->create(['is_active' => true, 'logo' => null]);
$this->withHeader('Authorization', "Bearer {$this->token}")
->getJson('/api/v1/companies')
->assertSuccessful()
->assertJsonFragment(['logo' => null]);
});
test('lists active destinations', function () {
$active = Destination::factory()->create(['is_active' => true]);
Destination::factory()->create(['is_active' => false]);
$this->withHeader('Authorization', "Bearer {$this->token}")
->getJson('/api/v1/destinations')
->assertSuccessful()
->assertJsonCount(1, 'data')
->assertJsonFragment(['id' => $active->id]);
});
test('paginates companies and destinations', function () {
EvCompany::factory()->count(20)->create(['is_active' => true]);
Destination::factory()->count(20)->create(['is_active' => true]);
$this->withHeader('Authorization', "Bearer {$this->token}")
->getJson('/api/v1/companies')
->assertSuccessful()
->assertJsonCount(15, 'data')
->assertJsonPath('meta.total', 20);
$this->withHeader('Authorization', "Bearer {$this->token}")
->getJson('/api/v1/destinations')
->assertSuccessful()
->assertJsonCount(15, 'data')
->assertJsonPath('meta.total', 20);
});
test('searches destinations by comma-separated terms', function () {
$yangon = Destination::factory()->create(['is_active' => true, 'name' => 'Yangon']);
$mandalay = Destination::factory()->create(['is_active' => true, 'name' => 'Mandalay']);
Destination::factory()->create(['is_active' => true, 'name' => 'Bagan']);
$this->withHeader('Authorization', "Bearer {$this->token}")
->getJson('/api/v1/destinations?search=yangon,mandalay')
->assertSuccessful()
->assertJsonCount(2, 'data')
->assertJsonFragment(['id' => $yangon->id])
->assertJsonFragment(['id' => $mandalay->id]);
});
test('companies endpoint rejects unauthenticated requests', function () {
$this->getJson('/api/v1/companies')->assertUnauthorized();
});
test('destinations endpoint rejects unauthenticated requests', function () {
$this->getJson('/api/v1/destinations')->assertUnauthorized();
});