2018-02-28 03:57:35 +05:30
|
|
|
<?php
|
2019-02-21 01:28:52 +05:30
|
|
|
namespace common\tests\unit\tasks;
|
2018-02-28 03:57:35 +05:30
|
|
|
|
|
|
|
use common\models\OauthClient;
|
|
|
|
use common\models\OauthSession;
|
|
|
|
use common\tasks\ClearOauthSessions;
|
2019-02-21 01:28:52 +05:30
|
|
|
use common\tests\fixtures;
|
|
|
|
use common\tests\unit\TestCase;
|
2018-02-28 03:57:35 +05:30
|
|
|
use yii\queue\Queue;
|
|
|
|
|
|
|
|
class ClearOauthSessionsTest extends TestCase {
|
|
|
|
|
2019-05-14 04:28:29 +05:30
|
|
|
public function _fixtures(): array {
|
2018-02-28 03:57:35 +05:30
|
|
|
return [
|
|
|
|
'oauthClients' => fixtures\OauthClientFixture::class,
|
|
|
|
'oauthSessions' => fixtures\OauthSessionFixture::class,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCreateFromClient() {
|
|
|
|
$client = new OauthClient();
|
|
|
|
$client->id = 'mocked-id';
|
|
|
|
|
|
|
|
$result = ClearOauthSessions::createFromOauthClient($client);
|
|
|
|
$this->assertInstanceOf(ClearOauthSessions::class, $result);
|
|
|
|
$this->assertSame('mocked-id', $result->clientId);
|
|
|
|
$this->assertNull($result->notSince);
|
|
|
|
|
|
|
|
$result = ClearOauthSessions::createFromOauthClient($client, time());
|
|
|
|
$this->assertInstanceOf(ClearOauthSessions::class, $result);
|
|
|
|
$this->assertSame('mocked-id', $result->clientId);
|
2019-02-26 04:56:02 +05:30
|
|
|
$this->assertEqualsWithDelta(time(), $result->notSince, 1);
|
2018-02-28 03:57:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
public function testExecute() {
|
|
|
|
$task = new ClearOauthSessions();
|
|
|
|
$task->clientId = 'deleted-oauth-client-with-sessions';
|
|
|
|
$task->notSince = 1519510065;
|
|
|
|
$task->execute(mock(Queue::class));
|
|
|
|
|
2019-09-23 03:33:36 +05:30
|
|
|
$this->assertFalse(OauthSession::find()->andWhere(['legacy_id' => 3])->exists());
|
|
|
|
$this->assertTrue(OauthSession::find()->andWhere(['legacy_id' => 4])->exists());
|
2018-02-28 03:57:35 +05:30
|
|
|
|
|
|
|
$task = new ClearOauthSessions();
|
|
|
|
$task->clientId = 'deleted-oauth-client-with-sessions';
|
|
|
|
$task->execute(mock(Queue::class));
|
|
|
|
|
2019-09-23 03:33:36 +05:30
|
|
|
$this->assertFalse(OauthSession::find()->andWhere(['legacy_id' => 4])->exists());
|
2018-02-28 03:57:35 +05:30
|
|
|
|
|
|
|
$task = new ClearOauthSessions();
|
|
|
|
$task->clientId = 'some-not-exists-client-id';
|
|
|
|
$task->execute(mock(Queue::class));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|