PHP Classes

File: tests/Feature/Auth/AuthenticationTest.php

Recommend this page to a friend!
  Classes of Stanley Aloh   Inventory Assignment   tests/Feature/Auth/AuthenticationTest.php   Download  
File: tests/Feature/Auth/AuthenticationTest.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Inventory Assignment
Manage the inventory of stored products
Author: By
Last change:
Date: 25 days ago
Size: 944 bytes
 

Contents

Class file image Download
<?php

use App\Models\User;

test('login screen can be rendered', function () {
   
$response = $this->get('/login');

   
$response->assertStatus(200);
});

test('users can authenticate using the login screen', function () {
   
$user = User::factory()->create();

   
$response = $this->post('/login', [
       
'email' => $user->email,
       
'password' => 'password',
    ]);

   
$this->assertAuthenticated();
   
$response->assertRedirect(route('dashboard', absolute: false));
});

test('users can not authenticate with invalid password', function () {
   
$user = User::factory()->create();

   
$this->post('/login', [
       
'email' => $user->email,
       
'password' => 'wrong-password',
    ]);

   
$this->assertGuest();
});

test('users can logout', function () {
   
$user = User::factory()->create();

   
$response = $this->actingAs($user)->post('/logout');

   
$this->assertGuest();
   
$response->assertRedirect('/');
});