feat(tenant): enhance storefront website types with header_type and multi-event support

This commit is contained in:
2026-09-17 16:02:21 -03:00
parent 131eb1a7ee
commit eb1e4df63f
8 changed files with 50 additions and 7 deletions

View File

@@ -30,7 +30,7 @@ class TenantSeederTest extends TestCase
$this->assertSame('onticket', $tenant->client->code);
$this->assertSame($websiteType->codigo, $tenant->admin_website_type_code);
$this->assertSame($websiteType->codigo, $tenant->storefront_website_type_code);
$this->assertSame('onticket_multi_event', $tenant->storefront_website_type_code);
$this->assertSame($websiteType->nombre, $tenant->nombre);
$this->assertSame($websiteType->dominio, $tenant->dominio);
$this->assertSame($websiteType->site_title, $tenant->site_title);

View File

@@ -22,7 +22,7 @@ class WebsiteTypeSeederTest extends TestCase
$this->seed(WebsiteTypeSeeder::class);
$this->assertSame(2, AdminWebsiteType::query()->count());
$this->assertSame(2, StorefrontWebsiteType::query()->count());
$this->assertSame(3, StorefrontWebsiteType::query()->count());
$this->assertSame(5, Attachment::query()->count());
$expectedPresentation = [
@@ -53,6 +53,7 @@ class WebsiteTypeSeederTest extends TestCase
$this->assertSame('onticket_favicon.svg', $shopIt->favicon->filename);
Storage::disk('s3')->assertExists($shopIt->favicon->path);
$shopItStorefront = StorefrontWebsiteType::query()->where('codigo', 'shopit')->with('extras')->sole();
$this->assertSame('standard', $shopItStorefront->header_type);
$this->assertSame(['carousel'], $shopItStorefront->extras->pluck('codigo')->all());
$this->assertSame('Carrusel principal', $shopItStorefront->extras->sole()->nombre);
$this->assertSame([
@@ -85,6 +86,10 @@ class WebsiteTypeSeederTest extends TestCase
$this->assertSame($shopIt->favicon_id, $onTicket->favicon_id);
$this->assertSame('onticket_favicon.svg', $onTicket->favicon->filename);
$onTicketStorefront = StorefrontWebsiteType::query()->where('codigo', 'onticket')->with('extras')->sole();
$this->assertSame('standard', $onTicketStorefront->header_type);
$multiEventStorefront = StorefrontWebsiteType::query()->where('codigo', 'onticket_multi_event')->with('extras')->sole();
$this->assertSame('immersive', $multiEventStorefront->header_type);
$this->assertCount(0, $multiEventStorefront->extras);
$this->assertEqualsCanonicalizing(
['heroConfig', 'eventConfig', 'additionalInfoConfig'],
$onTicketStorefront->extras->pluck('codigo')->all(),