Files
amare/tests/Feature/PublicSite/HomePageContentTest.php
Manoel Freitas 7902b35393 feat(home): alinhar cadência editorial (#47)
* feat(home): alinhar cadência editorial

* test(home): ajustar contrato do hero dividido
2026-08-11 09:52:08 -03:00

258 lines
9.0 KiB
PHP

<?php
declare(strict_types=1);
namespace Tests\Feature\PublicSite;
use App\Models\PortfolioCase;
use App\Models\Service;
use App\Models\SiteSetting;
use App\Models\Testimonial;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class HomePageContentTest extends TestCase
{
use RefreshDatabase;
public function test_published_featured_content_appears_in_order_and_drafts_are_hidden(): void
{
$settings = SiteSetting::instance();
$settings->update([
'hero_title' => 'Celebrações com propósito',
'hero_cta_label' => 'Solicitar orçamento',
'manifesto_title' => 'Manifesto Amare',
]);
Service::factory()->create([
'title' => 'Serviço Rascunho',
'is_featured' => true,
'published_at' => null,
]);
Service::factory()->published()->featured()->create([
'title' => 'Serviço B',
'sort_order' => 20,
]);
Service::factory()->published()->featured()->create([
'title' => 'Serviço A',
'sort_order' => 10,
]);
PortfolioCase::factory()->create([
'title' => 'Caso Rascunho',
'is_featured' => true,
'published_at' => null,
]);
PortfolioCase::factory()->published()->create([
'title' => 'Caso B',
'is_featured' => true,
'sort_order' => 20,
]);
PortfolioCase::factory()->published()->create([
'title' => 'Caso A',
'is_featured' => true,
'sort_order' => 10,
]);
Testimonial::factory()->create([
'author_name' => 'Autor Rascunho',
'published_at' => null,
]);
Testimonial::factory()->published()->create([
'author_name' => 'Autor B',
'quote' => 'Depoimento B',
'sort_order' => 20,
]);
Testimonial::factory()->published()->create([
'author_name' => 'Autor A',
'quote' => 'Depoimento A',
'sort_order' => 10,
]);
$response = $this->get(route('home'));
$response
->assertOk()
->assertSee('Celebrações com propósito')
->assertSeeInOrder([
'id="hero-heading"',
'id="manifesto-heading"',
'id="services-heading"',
'id="portfolio-heading"',
'id="method-heading"',
'id="testimonials-heading"',
'id="positioning-heading"',
'id="final-cta-heading"',
], false)
->assertSeeInOrder(['Serviço A', 'Serviço B'])
->assertSeeInOrder(['Caso A', 'Caso B'])
->assertSeeInOrder(['Autor A', 'Autor B'])
->assertDontSee('Serviço Rascunho')
->assertDontSee('Caso Rascunho')
->assertDontSee('Autor Rascunho')
->assertSee('data-testid="home-primary-cta"', false)
->assertSee('href="'.route('contact').'"', false);
}
public function test_empty_sections_are_omitted_when_no_published_content(): void
{
SiteSetting::instance();
$response = $this->get(route('home'));
$response
->assertOk()
->assertDontSee('id="services-heading"', false)
->assertDontSee('id="portfolio-heading"', false)
->assertDontSee('id="testimonials-heading"', false)
->assertSee('id="manifesto-heading"', false)
->assertSee('id="method-heading"', false)
->assertSee('id="positioning-heading"', false)
->assertSee('id="final-cta-heading"', false);
}
public function test_hero_falls_back_to_default_copy_when_fields_are_empty(): void
{
SiteSetting::instance()->update([
'hero_title' => '',
'hero_cta_label' => '',
'hero_secondary_cta_label' => '',
'hero_subtitle' => '',
'hero_note' => '',
]);
$response = $this->get(route('home'));
$response
->assertOk()
->assertSeeInOrder(['id="hero-heading"', 'Celebrações com propósito'])
->assertSeeInOrder(['data-testid="home-primary-cta"', 'Solicitar proposta']);
}
public function test_home_hero_uses_its_own_cms_image_instead_of_the_social_og_image(): void
{
SiteSetting::instance()->update([
'hero_image_path' => 'content/home/hero.jpg',
'hero_image_alt' => 'Celebração ao ar livre',
'default_og_image_path' => 'content/og/social.jpg',
'default_og_image_alt' => 'Imagem social',
]);
$response = $this->get(route('home'))
->assertOk()
->assertSee('content/home/hero.jpg', false)
->assertSee('alt="Celebração ao ar livre"', false);
$this->assertMatchesRegularExpression(
'/data-motion-beat="media"[^>]*>\s*<img[^>]*content\/home\/hero\.jpg/s',
$response->getContent(),
);
}
public function test_home_hero_keeps_an_intentional_typographic_fallback_without_media(): void
{
SiteSetting::instance()->update([
'hero_image_path' => null,
'hero_image_alt' => null,
]);
$this->get(route('home'))
->assertOk()
->assertSee('min-h-[100dvh]', false)
->assertSee('id="hero-heading"', false)
->assertSee('data-testid="home-primary-cta"', false)
->assertDontSee('data-motion-beat="media"', false);
}
public function test_blank_quote_testimonials_are_skipped(): void
{
Testimonial::factory()->published()->create([
'author_name' => 'Autor Mantido',
'quote' => 'Experiência impecável do início ao fim.',
]);
Testimonial::factory()->published()->create([
'author_name' => 'Autor Oculto',
'quote' => ' ',
]);
$response = $this->get(route('home'));
$response
->assertOk()
->assertSee('Autor Mantido')
->assertSee('Experiência impecável do início ao fim.')
->assertDontSee('Autor Oculto')
->assertSee('data-reveal-from="left"', false);
}
public function test_blank_testimonials_are_filtered_before_directional_sequence(): void
{
Testimonial::factory()->published()->create([
'author_name' => 'Primeira autora',
'quote' => 'Primeiro relato.',
'sort_order' => 10,
]);
Testimonial::factory()->published()->create([
'author_name' => 'Relato vazio',
'quote' => " \n ",
'sort_order' => 20,
]);
Testimonial::factory()->published()->create([
'author_name' => 'Segunda autora',
'quote' => 'Segundo relato.',
'sort_order' => 30,
]);
$response = $this->get(route('home'));
$response
->assertOk()
->assertDontSee('Relato vazio')
->assertSeeInOrder([
'data-reveal-from="left"',
'Primeira autora',
'data-reveal-from="right"',
'Segunda autora',
], false);
$this->assertSame(1, preg_match_all('/<blockquote\b[^>]*data-reveal-from="left"/i', $response->getContent()));
$this->assertSame(1, preg_match_all('/<blockquote\b[^>]*data-reveal-from="right"/i', $response->getContent()));
}
public function test_testimonials_section_is_omitted_when_every_published_quote_is_blank(): void
{
Testimonial::factory()->published()->create([
'author_name' => 'Relato vazio',
'quote' => ' ',
]);
$this->get(route('home'))
->assertOk()
->assertDontSee('id="testimonials-heading"', false)
->assertDontSee('href="#testimonials-heading"', false)
->assertDontSee('Relato vazio');
}
public function test_home_removes_ornamental_folios_and_counter_css(): void
{
SiteSetting::instance();
Service::factory()->published()->featured()->create();
PortfolioCase::factory()->published()->create(['is_featured' => true]);
Testimonial::factory()->published()->create(['quote' => 'Relato publicado.']);
$html = $this->get(route('home'))->assertOk()->getContent();
$this->assertStringNotContainsString('data-home-folio', (string) $html);
$this->assertStringNotContainsString('home-folio', (string) $html);
$this->assertSame(1, preg_match_all('/<h1\b/i', (string) $html));
$css = (string) file_get_contents(resource_path('css/app.css'));
$this->assertStringNotContainsString('counter-reset: home-chapter', $css);
$this->assertStringNotContainsString('counter-increment: home-chapter', $css);
$this->assertStringNotContainsString('counter(home-chapter', $css);
$this->assertFileDoesNotExist(resource_path('views/components/home/folio.blade.php'));
}
}