102 lines
3.0 KiB
PHP
102 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Services\Invoices;
|
|
|
|
use App\Services\Invoices\InvoiceConfigService;
|
|
use App\Services\Invoices\InvoiceGradeService;
|
|
use App\Services\Invoices\InvoicePdfService;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Tests\TestCase;
|
|
|
|
class InvoicePdfServiceTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_build_pdf_returns_bytes(): void
|
|
{
|
|
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('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',
|
|
]);
|
|
|
|
$config = new InvoiceConfigService;
|
|
$grades = new InvoiceGradeService($config->getGradeFee());
|
|
$service = new InvoicePdfService($config, $grades);
|
|
|
|
$pdf = $service->buildPdf(1);
|
|
|
|
$this->assertIsString($pdf);
|
|
$this->assertNotSame('', $pdf);
|
|
}
|
|
}
|