Files
alrahma_sunday_school_api/tests/Feature/Api/V1/Frontend/FrontendControllerTest.php
T
2026-06-09 02:32:58 -04:00

73 lines
1.8 KiB
PHP

<?php
namespace Tests\Feature\Api\V1\Frontend;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\DB;
use Laravel\Sanctum\Sanctum;
use Tests\TestCase;
class FrontendControllerTest extends TestCase
{
use RefreshDatabase;
public function test_index_returns_page(): void
{
$response = $this->getJson('/api/v1/frontend');
$response->assertOk();
$response->assertJsonPath('data.page.page', 'index');
}
public function test_fetch_user_requires_auth(): void
{
$response = $this->getJson('/api/v1/frontend/me');
$response->assertStatus(401);
}
public function test_fetch_user_returns_profile(): void
{
$user = $this->createUser('parent');
Sanctum::actingAs($user);
$response = $this->getJson('/api/v1/frontend/me');
$response->assertOk();
$response->assertJsonPath('data.user.firstname', 'Test');
}
private function createUser(string $roleName): User
{
$roleId = DB::table('roles')->insertGetId([
'name' => $roleName,
'priority' => 1,
'is_active' => 1,
]);
$user = User::query()->create([
'firstname' => 'Test',
'lastname' => 'User',
'email' => $roleName . '@example.com',
'cellphone' => '5555555555',
'address_street' => '123 Main',
'city' => 'City',
'state' => 'ST',
'zip' => '12345',
'accept_school_policy' => 1,
'status' => 'Active',
'password' => bcrypt('secret'),
'semester' => 'Fall',
'school_year' => '2025-2026',
]);
DB::table('user_roles')->insert([
'user_id' => $user->id,
'role_id' => $roleId,
]);
return $user;
}
}