You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
<?php
|
|
use tests\codeception\frontend\AcceptanceTester;
|
|
use tests\codeception\common\_pages\LoginPage;
|
|
|
|
/* @var $scenario Codeception\Scenario */
|
|
|
|
$I = new AcceptanceTester($scenario);
|
|
$I->wantTo('ensure login page works');
|
|
|
|
$loginPage = LoginPage::openBy($I);
|
|
|
|
$I->amGoingTo('submit login form with no data');
|
|
$loginPage->login('', '');
|
|
$I->expectTo('see validations errors');
|
|
$I->see('Username cannot be blank.', '.help-block');
|
|
$I->see('Password cannot be blank.', '.help-block');
|
|
|
|
$I->amGoingTo('try to login with wrong credentials');
|
|
$I->expectTo('see validations errors');
|
|
$loginPage->login('admin', 'wrong');
|
|
$I->expectTo('see validations errors');
|
|
$I->see('Incorrect username or password.', '.help-block');
|
|
|
|
$I->amGoingTo('try to login with correct credentials');
|
|
$loginPage->login('erau', 'password_0');
|
|
$I->expectTo('see that user is logged');
|
|
$I->see('Logout (erau)', 'form button[type=submit]');
|
|
$I->dontSeeLink('Login');
|
|
$I->dontSeeLink('Signup');
|
|
/** Uncomment if using WebDriver
|
|
* $I->click('Logout (erau)');
|
|
* $I->dontSeeLink('Logout (erau)');
|
|
* $I->seeLink('Login');
|
|
*/
|
|
|