yii2-netdisk/tests/codeception/functional/LoginCept.php

27 lines
698 B
PHP
Raw Normal View History

<?php
use codeception\_pages\LoginPage;
2013-12-02 19:25:21 +08:00
$I = new TestGuy($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');
$I->expectTo('see user info');
$I->see('Logout (admin)');