2018-02-28 03:57:35 +05:30
|
|
|
<?php
|
2019-02-21 01:28:52 +05:30
|
|
|
namespace common\tests\unit\models;
|
2018-02-28 03:57:35 +05:30
|
|
|
|
|
|
|
use common\models\OauthClient;
|
2019-02-21 01:28:52 +05:30
|
|
|
use common\tests\fixtures\OauthClientFixture;
|
|
|
|
use common\tests\unit\TestCase;
|
2018-02-28 03:57:35 +05:30
|
|
|
|
|
|
|
class OauthClientQueryTest extends TestCase {
|
|
|
|
|
2019-05-14 04:28:29 +05:30
|
|
|
public function _fixtures(): array {
|
2018-02-28 03:57:35 +05:30
|
|
|
return [
|
|
|
|
'oauthClients' => OauthClientFixture::class,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDefaultHideDeletedEntries() {
|
|
|
|
/** @var OauthClient[] $clients */
|
|
|
|
$clients = OauthClient::find()->all();
|
|
|
|
$this->assertEmpty(array_filter($clients, function(OauthClient $client) {
|
|
|
|
return (bool)$client->is_deleted === true;
|
|
|
|
}));
|
|
|
|
$this->assertNull(OauthClient::findOne('deleted-oauth-client'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAllowFindDeletedEntries() {
|
|
|
|
/** @var OauthClient[] $clients */
|
|
|
|
$clients = OauthClient::find()->includeDeleted()->all();
|
|
|
|
$this->assertNotEmpty(array_filter($clients, function(OauthClient $client) {
|
|
|
|
return (bool)$client->is_deleted === true;
|
|
|
|
}));
|
|
|
|
$client = OauthClient::find()
|
|
|
|
->includeDeleted()
|
|
|
|
->andWhere(['id' => 'deleted-oauth-client'])
|
|
|
|
->one();
|
|
|
|
$this->assertInstanceOf(OauthClient::class, $client);
|
|
|
|
$deletedClients = OauthClient::find()->onlyDeleted()->all();
|
|
|
|
$this->assertEmpty(array_filter($deletedClients, function(OauthClient $client) {
|
|
|
|
return (bool)$client->is_deleted === false;
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|