|
@@ -4,11 +4,12 @@ namespace tests\unit\models;
|
|
|
|
|
|
|
|
use Yii;
|
|
use Yii;
|
|
|
use yii\codeception\TestCase;
|
|
use yii\codeception\TestCase;
|
|
|
-use app\models\User;
|
|
|
|
|
|
|
+use app\models\LoginForm;
|
|
|
|
|
+use Codeception\Specify;
|
|
|
|
|
|
|
|
class LoginFormTest extends TestCase
|
|
class LoginFormTest extends TestCase
|
|
|
{
|
|
{
|
|
|
- use \Codeception\Specify;
|
|
|
|
|
|
|
+ use Specify;
|
|
|
|
|
|
|
|
protected function tearDown()
|
|
protected function tearDown()
|
|
|
{
|
|
{
|
|
@@ -18,10 +19,10 @@ class LoginFormTest extends TestCase
|
|
|
|
|
|
|
|
public function testLoginNoUser()
|
|
public function testLoginNoUser()
|
|
|
{
|
|
{
|
|
|
- $model = $this->mockUser(null);
|
|
|
|
|
-
|
|
|
|
|
- $model->username = 'some_username';
|
|
|
|
|
- $model->password = 'some_password';
|
|
|
|
|
|
|
+ $model = new LoginForm([
|
|
|
|
|
+ 'username' => 'not_existing_username',
|
|
|
|
|
+ 'password' => 'not_existing_password',
|
|
|
|
|
+ ]);
|
|
|
|
|
|
|
|
$this->specify('user should not be able to login, when there is no identity', function () use ($model) {
|
|
$this->specify('user should not be able to login, when there is no identity', function () use ($model) {
|
|
|
expect('model should not login user', $model->login())->false();
|
|
expect('model should not login user', $model->login())->false();
|
|
@@ -31,10 +32,10 @@ class LoginFormTest extends TestCase
|
|
|
|
|
|
|
|
public function testLoginWrongPassword()
|
|
public function testLoginWrongPassword()
|
|
|
{
|
|
{
|
|
|
- $model = $this->mockUser(new User);
|
|
|
|
|
-
|
|
|
|
|
- $model->username = 'demo';
|
|
|
|
|
- $model->password = 'wrong-password';
|
|
|
|
|
|
|
+ $model = new LoginForm([
|
|
|
|
|
+ 'username' => 'demo',
|
|
|
|
|
+ 'password' => 'wrong_password',
|
|
|
|
|
+ ]);
|
|
|
|
|
|
|
|
$this->specify('user should not be able to login with wrong password', function () use ($model) {
|
|
$this->specify('user should not be able to login with wrong password', function () use ($model) {
|
|
|
expect('model should not login user', $model->login())->false();
|
|
expect('model should not login user', $model->login())->false();
|
|
@@ -45,10 +46,10 @@ class LoginFormTest extends TestCase
|
|
|
|
|
|
|
|
public function testLoginCorrect()
|
|
public function testLoginCorrect()
|
|
|
{
|
|
{
|
|
|
- $model = $this->mockUser(new User(['password' => 'demo']));
|
|
|
|
|
-
|
|
|
|
|
- $model->username = 'demo';
|
|
|
|
|
- $model->password = 'demo';
|
|
|
|
|
|
|
+ $model = new LoginForm([
|
|
|
|
|
+ 'username' => 'demo',
|
|
|
|
|
+ 'password' => 'demo',
|
|
|
|
|
+ ]);
|
|
|
|
|
|
|
|
$this->specify('user should be able to login with correct credentials', function () use ($model) {
|
|
$this->specify('user should be able to login with correct credentials', function () use ($model) {
|
|
|
expect('model should login user', $model->login())->true();
|
|
expect('model should login user', $model->login())->true();
|
|
@@ -57,11 +58,4 @@ class LoginFormTest extends TestCase
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- private function mockUser($user)
|
|
|
|
|
- {
|
|
|
|
|
- $loginForm = $this->getMock('app\models\LoginForm', ['getUser']);
|
|
|
|
|
- $loginForm->expects($this->any())->method('getUser')->will($this->returnValue($user));
|
|
|
|
|
-
|
|
|
|
|
- return $loginForm;
|
|
|
|
|
- }
|
|
|
|
|
}
|
|
}
|