<?php
namespace tests\codeception\api\traits;

use api\traits\AccountFinder;
use Codeception\Specify;
use common\models\Account;
use tests\codeception\api\unit\DbTestCase;
use tests\codeception\common\fixtures\AccountFixture;

/**
 * @property \tests\codeception\api\UnitTester $actor
 * @property array $accounts
 */
class AccountFinderTest extends DbTestCase {
    use Specify;

    public function fixtures() {
        return [
            'accounts' => [
                'class' => AccountFixture::class,
                'dataFile' => '@tests/codeception/common/fixtures/data/accounts.php',
            ],
        ];
    }

    public function testGetAccount() {
        $this->specify('founded account for passed login data', function() {
            $model = new AccountFinderTestTestClass();
            $model->login = $this->accounts['admin']['email'];
            $account = $model->getAccount();
            expect($account)->isInstanceOf(Account::class);
            expect($account->id)->equals($this->accounts['admin']['id']);
        });

        $this->specify('null, if account not founded', function() {
            $model = new AccountFinderTestTestClass();
            $model->login = 'unexpected';
            expect($account = $model->getAccount())->null();
        });
    }

    public function testGetLoginAttribute() {
        $this->specify('if login look like email value, then \'email\'', function() {
            $model = new AccountFinderTestTestClass();
            $model->login = 'erickskrauch@ely.by';
            expect($model->getLoginAttribute())->equals('email');
        });

        $this->specify('username in any other case', function() {
            $model = new AccountFinderTestTestClass();
            $model->login = 'erickskrauch';
            expect($model->getLoginAttribute())->equals('username');
        });
    }

}

class AccountFinderTestTestClass {
    use AccountFinder;

    public $login;

    public function getLogin() {
        return $this->login;
    }

}