80 lines
2.2 KiB
PHP
80 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Services\Incidents;
|
|
|
|
use App\Services\Incidents\IncidentLookupService;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Tests\TestCase;
|
|
|
|
class IncidentLookupServiceTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_grade_options_with_active_students(): void
|
|
{
|
|
DB::table('classSection')->insert([
|
|
'id' => 1,
|
|
'class_id' => 1,
|
|
'class_section_id' => 10,
|
|
'class_section_name' => '1A',
|
|
'semester' => 'Fall',
|
|
'school_year' => '2025-2026',
|
|
]);
|
|
|
|
DB::table('students')->insert([
|
|
'id' => 1,
|
|
'school_id' => 'S1',
|
|
'firstname' => 'Test',
|
|
'lastname' => 'Student',
|
|
'age' => 8,
|
|
'gender' => 'Male',
|
|
'photo_consent' => 1,
|
|
'parent_id' => 1,
|
|
'year_of_registration' => '2025',
|
|
'school_year' => '2025-2026',
|
|
]);
|
|
|
|
DB::table('student_class')->insert([
|
|
'student_id' => 1,
|
|
'class_section_id' => 10,
|
|
'semester' => 'Fall',
|
|
'school_year' => '2025-2026',
|
|
]);
|
|
|
|
$service = new IncidentLookupService();
|
|
$grades = $service->gradeOptionsWithActiveStudents('2025-2026');
|
|
|
|
$this->assertSame([['id' => 10, 'name' => '1A']], $grades);
|
|
}
|
|
|
|
public function test_updater_name_map(): void
|
|
{
|
|
DB::table('users')->insert([
|
|
'id' => 1,
|
|
'school_id' => 1,
|
|
'firstname' => 'Jane',
|
|
'lastname' => 'Doe',
|
|
'cellphone' => '5555555555',
|
|
'email' => 'jane@example.com',
|
|
'address_street' => '123 Main',
|
|
'city' => 'City',
|
|
'state' => 'ST',
|
|
'zip' => '12345',
|
|
'accept_school_policy' => 1,
|
|
'is_verified' => 1,
|
|
'status' => 'Active',
|
|
'is_suspended' => 0,
|
|
'failed_attempts' => 0,
|
|
'password' => bcrypt('secret'),
|
|
'semester' => 'Fall',
|
|
'school_year' => '2025-2026',
|
|
]);
|
|
|
|
$service = new IncidentLookupService();
|
|
$map = $service->updaterNameMap([1]);
|
|
|
|
$this->assertSame('Jane Doe', $map[1]);
|
|
}
|
|
}
|