mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 21:03:05 +08:00
33 lines
660 B
PHP
33 lines
660 B
PHP
<?php
|
|
|
|
class AuthTest extends TestCase
|
|
{
|
|
|
|
public function testAuthWorking()
|
|
{
|
|
$this->visit('/')
|
|
->seePageIs('/login');
|
|
}
|
|
|
|
public function testLogin()
|
|
{
|
|
$this->visit('/')
|
|
->seePageIs('/login')
|
|
->type('admin@admin.com', '#email')
|
|
->type('password', '#password')
|
|
->press('Sign In')
|
|
->seePageIs('/')
|
|
->see('BookStack');
|
|
}
|
|
|
|
public function testLogout()
|
|
{
|
|
$this->asAdmin()
|
|
->visit('/')
|
|
->seePageIs('/')
|
|
->visit('/logout')
|
|
->visit('/')
|
|
->seePageIs('/login');
|
|
}
|
|
}
|