1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2020, Georg Ehrke
*
* @author Georg Ehrke <oc.list@georgehrke.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\UserStatus\Tests\Connector;
use OCA\UserStatus\Connector\UserStatusProvider;
use OCA\UserStatus\Db\UserStatus;
use OCA\UserStatus\Service\StatusService;
use Test\TestCase;
class UserStatusProviderTest extends TestCase {
/** @var \PHPUnit\Framework\MockObject\MockObject */
private $service;
/** @var UserStatusProvider */
private $provider;
protected function setUp(): void {
parent::setUp();
$this->service = $this->createMock(StatusService::class);
$this->provider = new UserStatusProvider($this->service);
}
public function testGetUserStatuses(): void {
$userStatus2 = new UserStatus();
$userStatus2->setUserId('userId2');
$userStatus2->setStatus('dnd');
$userStatus2->setStatusTimestamp(5000);
$userStatus2->setIsUserDefined(true);
$userStatus2->setCustomIcon('💩');
$userStatus2->setCustomMessage('Do not disturb');
$userStatus2->setClearAt(50000);
$userStatus3 = new UserStatus();
$userStatus3->setUserId('userId3');
$userStatus3->setStatus('away');
$userStatus3->setStatusTimestamp(5000);
$userStatus3->setIsUserDefined(false);
$userStatus3->setCustomIcon('🏝');
$userStatus3->setCustomMessage('On vacation');
$userStatus3->setClearAt(60000);
$this->service->expects($this->once())
->method('findByUserIds')
->with(['userId1', 'userId2', 'userId3'])
->willReturn([$userStatus2, $userStatus3]);
$actual = $this->provider->getUserStatuses(['userId1', 'userId2', 'userId3']);
$this->assertCount(2, $actual);
$status2 = $actual['userId2'];
$this->assertEquals('userId2', $status2->getUserId());
$this->assertEquals('dnd', $status2->getStatus());
$this->assertEquals('Do not disturb', $status2->getMessage());
$this->assertEquals('💩', $status2->getIcon());
$dateTime2 = $status2->getClearAt();
$this->assertInstanceOf(\DateTimeImmutable::class, $dateTime2);
$this->assertEquals('50000', $dateTime2->format('U'));
$status3 = $actual['userId3'];
$this->assertEquals('userId3', $status3->getUserId());
$this->assertEquals('away', $status3->getStatus());
$this->assertEquals('On vacation', $status3->getMessage());
$this->assertEquals('🏝', $status3->getIcon());
$dateTime3 = $status3->getClearAt();
$this->assertInstanceOf(\DateTimeImmutable::class, $dateTime3);
$this->assertEquals('60000', $dateTime3->format('U'));
}
}
|