toby/tests/Feature/AuthenticationTest.php
Krzysztof Rewak f6d59f8bfb
- directory refactor (#32)
* - directory refactor

* - readme.md update

* Update readme.md

Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl>

* Update readme.md

Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>

* Update readme.md

Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>

* Update readme.md

Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>

* Update readme.md

Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl>
Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
2022-01-26 12:31:26 +01:00

44 lines
856 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Feature;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Tests\FeatureTestCase;
use Toby\Eloquent\Models\User;
class AuthenticationTest extends FeatureTestCase
{
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();
}
}