2013-06-24 07:26:16 +08:00
|
|
|
<?php
|
2013-12-17 07:27:33 +08:00
|
|
|
|
2014-08-24 18:14:35 +08:00
|
|
|
use tests\codeception\_pages\LoginPage;
|
2013-12-02 19:25:21 +08:00
|
|
|
|
2014-08-16 22:15:41 +08:00
|
|
|
$I = new FunctionalTester($scenario);
|
2013-06-24 07:26:16 +08:00
|
|
|
$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);
|
|
|
|
|
2013-06-24 07:26:16 +08:00
|
|
|
$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-06-24 07:26:16 +08:00
|
|
|
|
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-06-24 07:26:16 +08:00
|
|
|
|
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');
|
2013-06-24 07:26:16 +08:00
|
|
|
$I->see('Logout (admin)');
|