Files
alrahma_sunday_school_api/tests/Unit/Services/Frontend/LandingPageContextServiceTest.php
T
2026-03-11 17:53:15 -04:00

30 lines
955 B
PHP

<?php
namespace Tests\Unit\Services\Frontend;
use App\Services\Frontend\LandingPageContextService;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\DB;
use Tests\TestCase;
class LandingPageContextServiceTest extends TestCase
{
use RefreshDatabase;
public function test_context_returns_config_values(): void
{
DB::table('configuration')->insert([
['config_key' => 'school_year', 'config_value' => '2025-2026'],
['config_key' => 'semester', 'config_value' => 'Fall'],
['config_key' => 'enrollment_deadline', 'config_value' => '2025-09-01'],
['config_key' => 'refund_deadline', 'config_value' => '2025-10-01'],
]);
$service = app(LandingPageContextService::class);
$context = $service->context();
$this->assertSame('2025-2026', $context['school_year']);
$this->assertSame('Fall', $context['semester']);
}
}