Courses

Testing in Laravel 12 For Beginners

Important: Test "Happy" and "Sad" Paths

Summary of this lesson:
- Understanding importance of testing both success and failure scenarios
- Prioritizing "unhappy path" test cases
- Identifying potential failure points in applications
- Balancing test coverage with practical constraints

The final part of this "philosophical" course section on "what to test" is about the happy/unhappy paths. The example is from our tests.

test('admin can see products create button', function () {
$admin = User::factory()->create(['is_admin' => true]);
 
actingAs($admin)
->get('/products')
->assertStatus(200)
->assertSee('Add new product');
});
 
test('non admin cannot see products create button', function () {
actingAs($this->user)
->get('/products')
->assertStatus(200)
->assertDontSee('Add new product');
});

For example, we covered the create button for products in previous lessons.

I added two tests for the opposite cases:

  • The "happy path": if I'm an admin, I can see the button
  • The "non-happy path": if I'm not an admin, I cannot see the products create button.

And this is important.

Quite often...

The full lesson is only for Premium Members.
Want to access all 25 lessons of this course? (90 min read)

You also get:

  • 75 courses
  • Premium tutorials
  • Access to repositories
  • Private Discord