mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 14:46:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			893 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			893 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use tests\codeception\backend\FunctionalTester;
 | 
						|
use tests\codeception\common\_pages\LoginPage;
 | 
						|
 | 
						|
$I = new FunctionalTester($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->seeLink('Logout (erau)');
 | 
						|
$I->dontSeeLink('Login');
 | 
						|
$I->dontSeeLink('Signup');
 |