61 lines
1.7 KiB
PHP
61 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Services\Staff;
|
|
|
|
use App\Models\Staff;
|
|
use App\Models\User;
|
|
use App\Services\Staff\StaffCommandService;
|
|
use App\Services\System\GlobalConfigService;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class StaffCommandServiceTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_create_requires_user(): void
|
|
{
|
|
$service = new StaffCommandService(new GlobalConfigService);
|
|
|
|
$this->expectException(\RuntimeException::class);
|
|
$service->create([
|
|
'firstname' => 'Test',
|
|
'lastname' => 'User',
|
|
'email' => 'missing@example.com',
|
|
'role_name' => 'teacher',
|
|
]);
|
|
}
|
|
|
|
public function test_create_with_user_id(): void
|
|
{
|
|
$user = User::query()->create([
|
|
'firstname' => 'Test',
|
|
'lastname' => 'User',
|
|
'email' => 'staffcmd@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',
|
|
]);
|
|
|
|
$service = new StaffCommandService(new GlobalConfigService);
|
|
$staff = $service->create([
|
|
'user_id' => $user->id,
|
|
'firstname' => 'Staff',
|
|
'lastname' => 'User',
|
|
'email' => 'staffcmd@example.com',
|
|
'role_name' => 'teacher',
|
|
'school_year' => '2025-2026',
|
|
]);
|
|
|
|
$this->assertInstanceOf(Staff::class, $staff);
|
|
$this->assertSame($user->id, $staff->user_id);
|
|
}
|
|
}
|