#2 - wip
This commit is contained in:
43
tests/Feature/AuthenticationTest.php
Normal file
43
tests/Feature/AuthenticationTest.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
||||
use Tests\TestCase;
|
||||
use Toby\Models\User;
|
||||
|
||||
class AuthenticationTest extends TestCase
|
||||
{
|
||||
use DatabaseMigrations;
|
||||
|
||||
public function testGuestIsRedirectedFromDashboard(): void
|
||||
{
|
||||
$this->get("/")
|
||||
->assertRedirect();
|
||||
}
|
||||
|
||||
public function testUserIsNotRedirectedFromDashboard(): void
|
||||
{
|
||||
$user = User::factory()->create();
|
||||
|
||||
$this->actingAs($user)
|
||||
->get("/")
|
||||
->assertOk();
|
||||
}
|
||||
|
||||
public function testUserCanLogout(): void
|
||||
{
|
||||
$user = User::factory()->create();
|
||||
|
||||
$this->actingAs($user);
|
||||
|
||||
$this->assertAuthenticated();
|
||||
|
||||
$this->post("/logout")
|
||||
->assertRedirect();
|
||||
|
||||
$this->assertGuest();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user