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.
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...