seedUsers(); $this->seedConfig(); $this->seedStudent(); $this->seedInvoice(); Sanctum::actingAs(User::query()->findOrFail(1)); $response = $this->getJson('/api/v1/finance/manual-pay/search?search_term=parent@example.com'); $response->assertOk(); $response->assertJson(['ok' => true]); $this->assertSame(10, $response->json('parent.id')); } public function test_suggest_returns_items(): void { $this->seedUsers(); Sanctum::actingAs(User::query()->findOrFail(1)); $response = $this->getJson('/api/v1/finance/manual-pay/suggest?q=parent'); $response->assertOk(); $response->assertJson(['ok' => true]); $this->assertNotEmpty($response->json('items')); } private function seedUsers(): void { DB::table('roles')->insert([ ['id' => 1, 'name' => 'admin', 'slug' => 'admin', 'is_active' => 1], ['id' => 2, 'name' => 'parent', 'slug' => 'parent', 'is_active' => 1], ]); DB::table('users')->insert([ 'id' => 1, 'school_id' => 1, 'firstname' => 'Admin', 'lastname' => 'User', 'cellphone' => '5555555555', 'email' => 'admin@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('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' => 1, 'role_id' => 1], ['user_id' => 10, 'role_id' => 2], ]); } private function seedConfig(): void { DB::table('configuration')->insert([ ['config_key' => 'school_year', 'config_value' => '2025-2026'], ['config_key' => 'semester', 'config_value' => 'Fall'], ['config_key' => 'installment_date', 'config_value' => '2025-06-01'], ]); } private function seedStudent(): void { DB::table('students')->insert([ 'id' => 100, 'parent_id' => 10, 'firstname' => 'Kid', 'lastname' => 'User', 'school_id' => 1, 'is_active' => 1, ]); } private function seedInvoice(): void { DB::table('invoices')->insert([ 'id' => 1, 'parent_id' => 10, 'invoice_number' => 'INV-001', 'total_amount' => 100, 'balance' => 100, 'paid_amount' => 0, 'status' => 'unpaid', 'school_year' => '2025-2026', 'issue_date' => '2025-01-01', ]); } }