199 lines
7.7 KiB
PHP
199 lines
7.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Catalog;
|
|
|
|
use App\Domains\Attachable\Enums\AttachmentType;
|
|
use App\Domains\Attachable\Models\Attachment;
|
|
use App\Domains\Catalog\Enums\ProductLayout;
|
|
use App\Domains\Catalog\Models\CatalogItem;
|
|
use App\Domains\Catalog\Models\FeaturedGroup;
|
|
use App\Domains\Catalog\Models\Inventory;
|
|
use App\Domains\Tenant\Models\Tenant;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Tests\TestCase;
|
|
|
|
class CatalogControllerTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_row_and_column_with_cart_return_item_details_variants_and_technical_stock(): void
|
|
{
|
|
$tenant = $this->createTenant('catalog-index');
|
|
$row = $this->createGroup($tenant, ProductLayout::Row, 'Row', 2);
|
|
$cart = $this->createGroup($tenant, ProductLayout::ColumnWithCart, 'Cart', 1);
|
|
|
|
$directInventory = Inventory::query()->create([
|
|
'real_stock' => 10,
|
|
'reserved_stock' => 2,
|
|
]);
|
|
$directItem = $this->createItem($tenant, 'Direct', $directInventory);
|
|
$row->featuredItems()->create(['catalog_item_id' => $directItem->id]);
|
|
|
|
$variantItem = $this->createItem($tenant, 'Variants');
|
|
$firstInventory = Inventory::query()->create([
|
|
'real_stock' => 5,
|
|
'reserved_stock' => 1,
|
|
]);
|
|
$secondInventory = Inventory::query()->create([
|
|
'real_stock' => 4,
|
|
'reserved_stock' => 1,
|
|
]);
|
|
$variantItem->variants()->create(['inventory_id' => $firstInventory->id]);
|
|
$variantItem->variants()->create(['inventory_id' => $secondInventory->id]);
|
|
$cart->featuredItems()->create(['catalog_item_id' => $variantItem->id]);
|
|
|
|
$response = $this->getJson("/api/tenants/{$tenant->codigo}/catalog");
|
|
|
|
$response
|
|
->assertOk()
|
|
->assertJsonCount(2)
|
|
->assertJsonPath('0.title', 'Cart')
|
|
->assertJsonPath('0.layout', ProductLayout::ColumnWithCart->value)
|
|
->assertJsonPath('0.items.meta.current_page', 1)
|
|
->assertJsonPath('0.items.data.0.nombre', 'Variants')
|
|
->assertJsonPath('0.items.data.0.descripcion', 'Variants description')
|
|
->assertJsonPath('0.items.data.0.precio', '100.00')
|
|
->assertJsonPath('0.items.data.0.stock_tecnico', 7)
|
|
->assertJsonCount(2, '0.items.data.0.variants')
|
|
->assertJsonPath('0.items.data.0.variants.0.stock_tecnico', 4)
|
|
->assertJsonPath('0.items.data.0.variants.1.stock_tecnico', 3)
|
|
->assertJsonPath('1.title', 'Row')
|
|
->assertJsonPath('1.items.data.0.stock_tecnico', 8)
|
|
->assertJsonCount(0, '1.items.data.0.variants');
|
|
}
|
|
|
|
public function test_column_with_image_uses_item_image_then_variant_image_then_null(): void
|
|
{
|
|
Storage::fake('s3');
|
|
$tenant = $this->createTenant('catalog-images');
|
|
$group = $this->createGroup($tenant, ProductLayout::ColumnWithImage, 'Images');
|
|
|
|
$directItem = $this->createItem($tenant, 'Direct image');
|
|
$directImage = $this->createAttachment('direct');
|
|
$directItem->attachments()->attach($directImage, ['orden' => 0]);
|
|
$group->featuredItems()->create([
|
|
'catalog_item_id' => $directItem->id,
|
|
'order' => 0,
|
|
]);
|
|
|
|
$variantItem = $this->createItem($tenant, 'Variant image');
|
|
$variantInventory = Inventory::query()->create();
|
|
$variant = $variantItem->variants()->create(['inventory_id' => $variantInventory->id]);
|
|
$variantImage = $this->createAttachment('variant');
|
|
$variant->attachments()->attach($variantImage, ['orden' => 0]);
|
|
$group->featuredItems()->create([
|
|
'catalog_item_id' => $variantItem->id,
|
|
'order' => 1,
|
|
]);
|
|
|
|
$emptyItem = $this->createItem($tenant, 'No image');
|
|
$group->featuredItems()->create([
|
|
'catalog_item_id' => $emptyItem->id,
|
|
'order' => 2,
|
|
]);
|
|
|
|
$response = $this->getJson("/api/tenants/{$tenant->codigo}/catalog");
|
|
|
|
$response
|
|
->assertOk()
|
|
->assertJsonPath('0.layout', ProductLayout::ColumnWithImage->value)
|
|
->assertJsonPath('0.items.data.0.nombre', 'Direct image')
|
|
->assertJsonPath('0.items.data.0.precio', '100.00')
|
|
->assertJsonPath('0.items.data.0.image', fn (?string $url): bool => str_contains($url ?? '', 'direct.png'))
|
|
->assertJsonPath('0.items.data.1.image', fn (?string $url): bool => str_contains($url ?? '', 'variant.png'))
|
|
->assertJsonPath('0.items.data.2.image', null);
|
|
}
|
|
|
|
public function test_index_always_returns_page_one_and_group_endpoint_returns_other_pages(): void
|
|
{
|
|
$tenant = $this->createTenant('catalog-pagination');
|
|
$group = $this->createGroup($tenant, ProductLayout::Row, 'Paginated');
|
|
|
|
foreach (range(1, 13) as $number) {
|
|
$item = $this->createItem($tenant, "Item {$number}");
|
|
$group->featuredItems()->create([
|
|
'catalog_item_id' => $item->id,
|
|
'order' => $number,
|
|
]);
|
|
}
|
|
|
|
$this->getJson("/api/tenants/{$tenant->codigo}/catalog?page=2")
|
|
->assertOk()
|
|
->assertJsonPath('0.items.meta.current_page', 1)
|
|
->assertJsonPath('0.items.meta.last_page', 2)
|
|
->assertJsonPath('0.items.meta.per_page', 12)
|
|
->assertJsonPath('0.items.meta.total', 13)
|
|
->assertJsonCount(12, '0.items.data')
|
|
->assertJsonPath('0.items.data.0.nombre', 'Item 1');
|
|
|
|
$this->getJson(
|
|
"/api/tenants/{$tenant->codigo}/catalog/featured-groups/{$group->id}/items?page=2"
|
|
)
|
|
->assertOk()
|
|
->assertJsonPath('meta.current_page', 2)
|
|
->assertJsonPath('meta.last_page', 2)
|
|
->assertJsonCount(1, 'data')
|
|
->assertJsonPath('data.0.nombre', 'Item 13');
|
|
}
|
|
|
|
private function createGroup(
|
|
Tenant $tenant,
|
|
ProductLayout $layout,
|
|
string $name,
|
|
int $order = 0,
|
|
): FeaturedGroup {
|
|
return FeaturedGroup::query()->create([
|
|
'tenant_code' => $tenant->codigo,
|
|
'product_layout' => $layout,
|
|
'group_name' => $name,
|
|
'group_order' => $order,
|
|
]);
|
|
}
|
|
|
|
private function createItem(
|
|
Tenant $tenant,
|
|
string $name,
|
|
?Inventory $inventory = null,
|
|
): CatalogItem {
|
|
return CatalogItem::query()->create([
|
|
'tenant_code' => $tenant->codigo,
|
|
'inventory_id' => $inventory?->id,
|
|
'slug' => str($name)->slug()->toString(),
|
|
'nombre' => $name,
|
|
'descripcion' => "{$name} description",
|
|
'precio' => 100,
|
|
]);
|
|
}
|
|
|
|
private function createTenant(string $code): Tenant
|
|
{
|
|
$headerLogo = $this->createAttachment("{$code}-header");
|
|
$footerLogo = $this->createAttachment("{$code}-footer");
|
|
|
|
return Tenant::query()->create([
|
|
'codigo' => $code,
|
|
'nombre' => ucfirst($code),
|
|
'dominio' => "{$code}.local",
|
|
'primary_color' => '#000000',
|
|
'secondary_color' => '#000000',
|
|
'danger_color' => '#000000',
|
|
'success_color' => '#000000',
|
|
'header_bg_color' => '#000000',
|
|
'footer_bg_color' => '#000000',
|
|
'header_logo_id' => $headerLogo->id,
|
|
'footer_logo_id' => $footerLogo->id,
|
|
]);
|
|
}
|
|
|
|
private function createAttachment(string $name): Attachment
|
|
{
|
|
return Attachment::query()->create([
|
|
'path' => "test/{$name}.png",
|
|
'filename' => "{$name}.png",
|
|
'type' => AttachmentType::Image,
|
|
'mime_type' => 'image/png',
|
|
]);
|
|
}
|
|
}
|