yii2-netdisk/tests/acceptance/LoginCept.php

30 lines
764 B
PHP
Raw Normal View History

<?php
2013-12-02 19:25:21 +08:00
use tests\_pages\LoginPage;
$I = new WebGuy($scenario);
$I->wantTo('ensure that login works');
2013-12-02 19:25:21 +08:00
2013-12-18 12:43:43 +08:00
$loginPage = LoginPage::openBy($I);
$I->see('Login', 'h1');
2013-12-02 19:25:21 +08:00
$I->amGoingTo('try to login with empty credentials');
$loginPage->login('', '');
$I->expectTo('see validations errors');
$I->see('Username cannot be blank.');
$I->see('Password cannot be blank.');
2013-12-02 19:25:21 +08:00
$I->amGoingTo('try to login with wrong credentials');
$loginPage->login('admin', 'wrong');
$I->expectTo('see validations errors');
$I->see('Incorrect username or password.');
2013-12-02 19:25:21 +08:00
$I->amGoingTo('try to login with correct credentials');
$loginPage->login('admin', 'admin');
if (method_exists($I, 'wait')) {
2014-03-16 12:46:16 +08:00
$I->wait(3); // only for selenium
}
2013-12-02 19:25:21 +08:00
$I->expectTo('see user info');
$I->see('Logout (admin)');