mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	Добавлена базовая форма с запросом пароля Валидация ника и email адреса вынесены из формы регистрации в модель аккаунта Отрефакторен тест формы регистрации Добавлены тесты для модели аккаунта
		
			
				
	
	
		
			34 lines
		
	
	
		
			971 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			971 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace tests\codeception\api\_pages;
 | 
						|
 | 
						|
use yii\codeception\BasePage;
 | 
						|
 | 
						|
/**
 | 
						|
 * @property \tests\codeception\api\FunctionalTester $actor
 | 
						|
 */
 | 
						|
class AccountsRoute extends BasePage {
 | 
						|
 | 
						|
    public function current() {
 | 
						|
        $this->route = ['accounts/current'];
 | 
						|
        $this->actor->sendGET($this->getUrl());
 | 
						|
    }
 | 
						|
 | 
						|
    public function changePassword($currentPassword = null, $newPassword = null, $newRePassword = null) {
 | 
						|
        $this->route = ['accounts/change-password'];
 | 
						|
        $this->actor->sendPOST($this->getUrl(), [
 | 
						|
            'password' => $currentPassword,
 | 
						|
            'newPassword' => $newPassword,
 | 
						|
            'newRePassword' => $newRePassword,
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    public function changeUsername($currentPassword = null, $newUsername = null) {
 | 
						|
        $this->route = ['accounts/change-username'];
 | 
						|
        $this->actor->sendPOST($this->getUrl(), [
 | 
						|
            'password' => $currentPassword,
 | 
						|
            'username' => $newUsername,
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
}
 |