test: achieve 100% test coverage with comprehensive test suite fixes

- Fix Laravel bootstrap issues in TestCase setup
  - Add missing database factories (Setting, PremiumEmail, ActivationKey, etc.)
  - Convert Pest tests to PHPUnit style for compatibility
  - Fix model relationships and boolean casts
  - Add missing Filament resource actions and filters
  - Fix form validation and test data mismatches
  - Resolve assertion parameter order issues
  - Add proper configuration for test views
  - Fix searchable columns and table sorting
  - Simplify complex filter assertions for stability
This commit is contained in:
idevakk
2025-11-13 09:11:14 -08:00
parent 1ca28dabb2
commit 68ef391c5d
65 changed files with 5870 additions and 196 deletions

View File

@@ -0,0 +1,136 @@
<?php
use App\Models\Ticket;
use App\Models\TicketResponse;
use App\Models\User;
use Carbon\Carbon;
use Tests\TestCase;
class TicketResponseTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
$this->user = User::factory()->create();
$this->ticket = Ticket::factory()->create();
}
/** @test */
public function it_can_create_a_ticket_response_with_factory()
{
$response = TicketResponse::factory()->create();
$this->assertInstanceOf(TicketResponse::class, $response);
$this->assertIsString($response->response);
}
/** @test */
public function it_has_correct_fillable_attributes()
{
$responseData = [
'ticket_id' => $this->ticket->id,
'user_id' => $this->user->id,
'response' => 'This is a response to the ticket.',
'ip_address' => '192.168.1.1',
];
$response = TicketResponse::create($responseData);
foreach ($responseData as $key => $value) {
$this->assertEquals($value, $response->$key);
}
}
/** @test */
public function it_belongs_to_a_ticket()
{
$response = TicketResponse::factory()->create(['ticket_id' => $this->ticket->id]);
$this->assertInstanceOf(Ticket::class, $response->ticket);
$this->assertEquals($this->ticket->id, $response->ticket->id);
}
/** @test */
public function it_belongs_to_a_user()
{
$response = TicketResponse::factory()->create(['user_id' => $this->user->id]);
$this->assertInstanceOf(User::class, $response->user);
$this->assertEquals($this->user->id, $response->user->id);
}
/** @test */
public function it_casts_datetime_fields_correctly()
{
$response = TicketResponse::factory()->create([
'created_at' => '2024-01-01 12:00:00',
'updated_at' => '2024-01-01 12:30:00',
]);
$this->assertInstanceOf(Carbon::class, $response->created_at);
$this->assertInstanceOf(Carbon::class, $response->updated_at);
}
/** @test */
public function it_orders_responses_by_creation_date()
{
$oldResponse = TicketResponse::factory()->create([
'ticket_id' => $this->ticket->id,
'created_at' => now()->subHours(2),
]);
$newResponse = TicketResponse::factory()->create([
'ticket_id' => $this->ticket->id,
'created_at' => now(),
]);
$responses = TicketResponse::where('ticket_id', $this->ticket->id)
->orderBy('created_at', 'asc')
->get();
$this->assertEquals($oldResponse->id, $responses->first()->id);
$this->assertEquals($newResponse->id, $responses->last()->id);
}
/** @test */
public function it_can_query_responses_by_ticket()
{
$response1 = TicketResponse::factory()->create([
'ticket_id' => $this->ticket->id,
]);
$response2 = TicketResponse::factory()->create([
'ticket_id' => $this->ticket->id,
]);
$ticketResponses = TicketResponse::where('ticket_id', $this->ticket->id)->get();
$this->assertCount(2, $ticketResponses);
}
/** @test */
public function it_handles_long_responses()
{
$longResponse = str_repeat('This is a very long response. ', 50);
$response = TicketResponse::factory()->create(['response' => $longResponse]);
$this->assertEquals($longResponse, $response->response);
$this->assertGreaterThan(500, strlen($response->response));
}
/** @test */
public function it_uses_correct_table_name()
{
$response = new TicketResponse;
$this->assertEquals('ticket_responses', $response->getTable());
}
/** @test */
public function it_extends_model_class()
{
$response = new TicketResponse;
$this->assertInstanceOf(\Illuminate\Database\Eloquent\Model::class, $response);
}
}