accounts/api/tests/unit/modules/internal/models/PardonFormTest.php

42 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace api\tests\unit\modules\internal\models;
use api\modules\accounts\models\PardonAccountForm;
2018-04-18 02:17:25 +05:30
use api\modules\internal\helpers\Error as E;
use api\tests\unit\TestCase;
2019-02-23 04:41:57 +05:30
use common\models\Account;
class PardonFormTest extends TestCase {
public function testValidateAccountBanned() {
$account = new Account();
$account->status = Account::STATUS_BANNED;
$form = new PardonAccountForm($account);
$form->validateAccountBanned();
$this->assertEmpty($form->getErrors('account'));
$account = new Account();
$account->status = Account::STATUS_ACTIVE;
$form = new PardonAccountForm($account);
$form->validateAccountBanned();
$this->assertSame([E::ACCOUNT_NOT_BANNED], $form->getErrors('account'));
}
public function testPardon() {
/** @var Account|\PHPUnit\Framework\MockObject\MockObject $account */
$account = $this->getMockBuilder(Account::class)
->setMethods(['save'])
->getMock();
$account->expects($this->once())
->method('save')
->willReturn(true);
$account->status = Account::STATUS_BANNED;
$model = new PardonAccountForm($account);
$this->assertTrue($model->performAction());
$this->assertSame(Account::STATUS_ACTIVE, $account->status);
}
}