Courses

Testing in Laravel 12 For Beginners

Auth Test: Is User Logged In?

Summary of this lesson:
- Testing authentication and authorization
- Using actingAs() for authenticated requests
- Testing guest user restrictions
- Verifying login redirects and access control

Now, let's see how we can test the users and the access of logged-in users.


First, we must add a Middleware auth to the route.

routes/web.php:

Route::get('/', function () {
return view('home');
})->name('home');
 
Route::resource('products', ProductController::class)->middleware('auth');

After running the tests, we have three failed Feature tests. The two passed tests are Unit tests.

auth tests failed


Fixing Tests: Acting as a User

We need to create a user using Factories for each test function and perform the server request using that user.

For that, there is a method called actingAs(), which...

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