118 lines
3.5 KiB
PHP
118 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Services\Invoices;
|
|
|
|
use App\Services\Invoices\InvoiceConfigService;
|
|
use App\Services\Invoices\InvoiceManagementService;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Tests\TestCase;
|
|
|
|
class InvoiceManagementServiceTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_management_data_returns_parent_invoice_summary(): void
|
|
{
|
|
DB::table('roles')->insert([
|
|
['id' => 1, 'name' => 'parent', 'slug' => 'parent', 'is_active' => 1],
|
|
]);
|
|
|
|
DB::table('users')->insert([
|
|
'id' => 10,
|
|
'school_id' => 1,
|
|
'firstname' => 'Parent',
|
|
'lastname' => 'User',
|
|
'cellphone' => '5555555555',
|
|
'email' => 'parent@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',
|
|
]);
|
|
|
|
DB::table('user_roles')->insert([
|
|
'user_id' => 10,
|
|
'role_id' => 1,
|
|
]);
|
|
|
|
DB::table('students')->insert([
|
|
'id' => 100,
|
|
'parent_id' => 10,
|
|
'firstname' => 'Kid',
|
|
'lastname' => 'User',
|
|
'school_id' => 'S1',
|
|
'age' => 8,
|
|
'gender' => 'Male',
|
|
'photo_consent' => 1,
|
|
'year_of_registration' => '2025',
|
|
'school_year' => '2025-2026',
|
|
'is_active' => 1,
|
|
]);
|
|
|
|
DB::table('classSection')->insert([
|
|
'class_section_id' => 1,
|
|
'class_section_name' => '1A',
|
|
'class_id' => 1,
|
|
'semester' => 'Fall',
|
|
'school_year' => '2025-2026',
|
|
]);
|
|
|
|
DB::table('student_class')->insert([
|
|
'student_id' => 100,
|
|
'class_section_id' => 1,
|
|
'semester' => 'Fall',
|
|
'school_year' => '2025-2026',
|
|
'is_event_only' => 0,
|
|
]);
|
|
|
|
DB::table('enrollments')->insert([
|
|
'student_id' => 100,
|
|
'parent_id' => 10,
|
|
'class_section_id' => 1,
|
|
'enrollment_date' => '2025-01-01',
|
|
'enrollment_status' => 'enrolled',
|
|
'semester' => 'Fall',
|
|
'school_year' => '2025-2026',
|
|
]);
|
|
|
|
DB::table('invoices')->insert([
|
|
'id' => 1,
|
|
'parent_id' => 10,
|
|
'invoice_number' => 'INV-001',
|
|
'total_amount' => 100,
|
|
'balance' => 100,
|
|
'paid_amount' => 0,
|
|
'has_discount' => 0,
|
|
'issue_date' => '2025-01-10',
|
|
'status' => 'unpaid',
|
|
'school_year' => '2025-2026',
|
|
]);
|
|
|
|
DB::table('refunds')->insert([
|
|
'id' => 1,
|
|
'parent_id' => 10,
|
|
'school_year' => '2025-2026',
|
|
'invoice_id' => 1,
|
|
'refund_amount' => 5,
|
|
'status' => 'Paid',
|
|
'refund_paid_amount' => 5,
|
|
]);
|
|
|
|
$service = new InvoiceManagementService(new InvoiceConfigService);
|
|
$data = $service->getManagementData('2025-2026');
|
|
|
|
$this->assertSame('2025-2026', $data['schoolYear']);
|
|
$this->assertCount(1, $data['invoices']);
|
|
$this->assertSame(5.0, $data['invoices'][0]['refund_amount']);
|
|
}
|
|
}
|