123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2020, Georg Ehrke
- *
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Joas Schilling <coding@schilljs.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\Service;
- use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
- use OC\DB\Exceptions\DbalException;
- use OCA\UserStatus\Db\UserStatus;
- use OCA\UserStatus\Db\UserStatusMapper;
- use OCA\UserStatus\Exception\InvalidClearAtException;
- use OCA\UserStatus\Exception\InvalidMessageIdException;
- use OCA\UserStatus\Exception\InvalidStatusIconException;
- use OCA\UserStatus\Exception\InvalidStatusTypeException;
- use OCA\UserStatus\Exception\StatusMessageTooLongException;
- use OCA\UserStatus\Service\PredefinedStatusService;
- use OCA\UserStatus\Service\StatusService;
- use OCP\AppFramework\Db\DoesNotExistException;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\DB\Exception;
- use OCP\IConfig;
- use OCP\IEmojiHelper;
- use OCP\IUserManager;
- use OCP\UserStatus\IUserStatus;
- use PHPUnit\Framework\MockObject\MockObject;
- use Test\TestCase;
- class StatusServiceTest extends TestCase {
- /** @var UserStatusMapper|MockObject */
- private $mapper;
- /** @var ITimeFactory|MockObject */
- private $timeFactory;
- /** @var PredefinedStatusService|MockObject */
- private $predefinedStatusService;
- /** @var IEmojiHelper|MockObject */
- private $emojiHelper;
- /** @var IConfig|MockObject */
- private $config;
- /** @var IUserManager|MockObject */
- private $userManager;
- private StatusService $service;
- protected function setUp(): void {
- parent::setUp();
- $this->mapper = $this->createMock(UserStatusMapper::class);
- $this->timeFactory = $this->createMock(ITimeFactory::class);
- $this->predefinedStatusService = $this->createMock(PredefinedStatusService::class);
- $this->emojiHelper = $this->createMock(IEmojiHelper::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->config = $this->createMock(IConfig::class);
- $this->config->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'no']
- ]);
- $this->service = new StatusService($this->mapper,
- $this->timeFactory,
- $this->predefinedStatusService,
- $this->emojiHelper,
- $this->config,
- $this->userManager
- );
- }
- public function testFindAll(): void {
- $status1 = $this->createMock(UserStatus::class);
- $status2 = $this->createMock(UserStatus::class);
- $this->mapper->expects($this->once())
- ->method('findAll')
- ->with(20, 50)
- ->willReturn([$status1, $status2]);
- $this->assertEquals([
- $status1,
- $status2,
- ], $this->service->findAll(20, 50));
- }
- public function testFindAllRecentStatusChanges(): void {
- $status1 = $this->createMock(UserStatus::class);
- $status2 = $this->createMock(UserStatus::class);
- $this->mapper->expects($this->once())
- ->method('findAllRecent')
- ->with(20, 50)
- ->willReturn([$status1, $status2]);
- $this->assertEquals([
- $status1,
- $status2,
- ], $this->service->findAllRecentStatusChanges(20, 50));
- }
- public function testFindAllRecentStatusChangesNoEnumeration(): void {
- $status1 = $this->createMock(UserStatus::class);
- $status2 = $this->createMock(UserStatus::class);
- $this->mapper->method('findAllRecent')
- ->with(20, 50)
- ->willReturn([$status1, $status2]);
- // Rebuild $this->service with user enumeration turned off
- $this->config = $this->createMock(IConfig::class);
- $this->config->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'no']
- ]);
- $this->service = new StatusService($this->mapper,
- $this->timeFactory,
- $this->predefinedStatusService,
- $this->emojiHelper,
- $this->config,
- $this->userManager
- );
- $this->assertEquals([], $this->service->findAllRecentStatusChanges(20, 50));
- // Rebuild $this->service with user enumeration limited to common groups
- $this->config = $this->createMock(IConfig::class);
- $this->config->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'yes']
- ]);
- $this->service = new StatusService($this->mapper,
- $this->timeFactory,
- $this->predefinedStatusService,
- $this->emojiHelper,
- $this->config,
- $this->userManager
- );
- $this->assertEquals([], $this->service->findAllRecentStatusChanges(20, 50));
- }
- public function testFindByUserIdDoesNotExist(): void {
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willThrowException(new DoesNotExistException(''));
- $this->expectException(DoesNotExistException::class);
- $this->service->findByUserId('john.doe');
- }
- public function testFindAllAddDefaultMessage(): void {
- $status = new UserStatus();
- $status->setMessageId('commuting');
- $this->predefinedStatusService->expects($this->once())
- ->method('getDefaultStatusById')
- ->with('commuting')
- ->willReturn([
- 'id' => 'commuting',
- 'icon' => '🚌',
- 'message' => 'Commuting',
- 'clearAt' => [
- 'type' => 'period',
- 'time' => 1800,
- ],
- ]);
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willReturn($status);
- $this->assertEquals($status, $this->service->findByUserId('john.doe'));
- $this->assertEquals('🚌', $status->getCustomIcon());
- $this->assertEquals('Commuting', $status->getCustomMessage());
- }
- public function testFindAllClearStatus(): void {
- $status = new UserStatus();
- $status->setStatus('online');
- $status->setStatusTimestamp(1000);
- $status->setIsUserDefined(true);
- $this->timeFactory->method('getTime')
- ->willReturn(2600);
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willReturn($status);
- $this->assertEquals($status, $this->service->findByUserId('john.doe'));
- $this->assertEquals('offline', $status->getStatus());
- $this->assertEquals(2600, $status->getStatusTimestamp());
- $this->assertFalse($status->getIsUserDefined());
- }
- public function testFindAllClearMessage(): void {
- $status = new UserStatus();
- $status->setClearAt(50);
- $status->setMessageId('commuting');
- $status->setStatusTimestamp(60);
- $this->timeFactory->method('getTime')
- ->willReturn(60);
- $this->predefinedStatusService->expects($this->never())
- ->method('getDefaultStatusById');
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willReturn($status);
- $this->assertEquals($status, $this->service->findByUserId('john.doe'));
- $this->assertNull($status->getClearAt());
- $this->assertNull($status->getMessageId());
- }
- /**
- * @param string $userId
- * @param string $status
- * @param int|null $statusTimestamp
- * @param bool $isUserDefined
- * @param bool $expectExisting
- * @param bool $expectSuccess
- * @param bool $expectTimeFactory
- * @param bool $expectException
- * @param string|null $expectedExceptionClass
- * @param string|null $expectedExceptionMessage
- *
- * @dataProvider setStatusDataProvider
- */
- public function testSetStatus(string $userId,
- string $status,
- ?int $statusTimestamp,
- bool $isUserDefined,
- bool $expectExisting,
- bool $expectSuccess,
- bool $expectTimeFactory,
- bool $expectException,
- ?string $expectedExceptionClass,
- ?string $expectedExceptionMessage): void {
- $userStatus = new UserStatus();
- if ($expectExisting) {
- $userStatus->setId(42);
- $userStatus->setUserId($userId);
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with($userId)
- ->willReturn($userStatus);
- } else {
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with($userId)
- ->willThrowException(new DoesNotExistException(''));
- }
- if ($expectTimeFactory) {
- $this->timeFactory
- ->method('getTime')
- ->willReturn(40);
- }
- if ($expectException) {
- $this->expectException($expectedExceptionClass);
- $this->expectExceptionMessage($expectedExceptionMessage);
- $this->service->setStatus($userId, $status, $statusTimestamp, $isUserDefined);
- }
- if ($expectSuccess) {
- if ($expectExisting) {
- $this->mapper->expects($this->once())
- ->method('update')
- ->willReturnArgument(0);
- } else {
- $this->mapper->expects($this->once())
- ->method('insert')
- ->willReturnArgument(0);
- }
- $actual = $this->service->setStatus($userId, $status, $statusTimestamp, $isUserDefined);
- $this->assertEquals('john.doe', $actual->getUserId());
- $this->assertEquals($status, $actual->getStatus());
- $this->assertEquals($statusTimestamp ?? 40, $actual->getStatusTimestamp());
- $this->assertEquals($isUserDefined, $actual->getIsUserDefined());
- }
- }
- public function setStatusDataProvider(): array {
- return [
- ['john.doe', 'online', 50, true, true, true, false, false, null, null],
- ['john.doe', 'online', 50, true, false, true, false, false, null, null],
- ['john.doe', 'online', 50, false, true, true, false, false, null, null],
- ['john.doe', 'online', 50, false, false, true, false, false, null, null],
- ['john.doe', 'online', null, true, true, true, true, false, null, null],
- ['john.doe', 'online', null, true, false, true, true, false, null, null],
- ['john.doe', 'online', null, false, true, true, true, false, null, null],
- ['john.doe', 'online', null, false, false, true, true, false, null, null],
- ['john.doe', 'away', 50, true, true, true, false, false, null, null],
- ['john.doe', 'away', 50, true, false, true, false, false, null, null],
- ['john.doe', 'away', 50, false, true, true, false, false, null, null],
- ['john.doe', 'away', 50, false, false, true, false, false, null, null],
- ['john.doe', 'away', null, true, true, true, true, false, null, null],
- ['john.doe', 'away', null, true, false, true, true, false, null, null],
- ['john.doe', 'away', null, false, true, true, true, false, null, null],
- ['john.doe', 'away', null, false, false, true, true, false, null, null],
- ['john.doe', 'dnd', 50, true, true, true, false, false, null, null],
- ['john.doe', 'dnd', 50, true, false, true, false, false, null, null],
- ['john.doe', 'dnd', 50, false, true, true, false, false, null, null],
- ['john.doe', 'dnd', 50, false, false, true, false, false, null, null],
- ['john.doe', 'dnd', null, true, true, true, true, false, null, null],
- ['john.doe', 'dnd', null, true, false, true, true, false, null, null],
- ['john.doe', 'dnd', null, false, true, true, true, false, null, null],
- ['john.doe', 'dnd', null, false, false, true, true, false, null, null],
- ['john.doe', 'invisible', 50, true, true, true, false, false, null, null],
- ['john.doe', 'invisible', 50, true, false, true, false, false, null, null],
- ['john.doe', 'invisible', 50, false, true, true, false, false, null, null],
- ['john.doe', 'invisible', 50, false, false, true, false, false, null, null],
- ['john.doe', 'invisible', null, true, true, true, true, false, null, null],
- ['john.doe', 'invisible', null, true, false, true, true, false, null, null],
- ['john.doe', 'invisible', null, false, true, true, true, false, null, null],
- ['john.doe', 'invisible', null, false, false, true, true, false, null, null],
- ['john.doe', 'offline', 50, true, true, true, false, false, null, null],
- ['john.doe', 'offline', 50, true, false, true, false, false, null, null],
- ['john.doe', 'offline', 50, false, true, true, false, false, null, null],
- ['john.doe', 'offline', 50, false, false, true, false, false, null, null],
- ['john.doe', 'offline', null, true, true, true, true, false, null, null],
- ['john.doe', 'offline', null, true, false, true, true, false, null, null],
- ['john.doe', 'offline', null, false, true, true, true, false, null, null],
- ['john.doe', 'offline', null, false, false, true, true, false, null, null],
- ['john.doe', 'illegal-status', 50, true, true, false, false, true, InvalidStatusTypeException::class, 'Status-type "illegal-status" is not supported'],
- ['john.doe', 'illegal-status', 50, true, false, false, false, true, InvalidStatusTypeException::class, 'Status-type "illegal-status" is not supported'],
- ['john.doe', 'illegal-status', 50, false, true, false, false, true, InvalidStatusTypeException::class, 'Status-type "illegal-status" is not supported'],
- ['john.doe', 'illegal-status', 50, false, false, false, false, true, InvalidStatusTypeException::class, 'Status-type "illegal-status" is not supported'],
- ['john.doe', 'illegal-status', null, true, true, false, true, true, InvalidStatusTypeException::class, 'Status-type "illegal-status" is not supported'],
- ['john.doe', 'illegal-status', null, true, false, false, true, true, InvalidStatusTypeException::class, 'Status-type "illegal-status" is not supported'],
- ['john.doe', 'illegal-status', null, false, true, false, true, true, InvalidStatusTypeException::class, 'Status-type "illegal-status" is not supported'],
- ['john.doe', 'illegal-status', null, false, false, false, true, true, InvalidStatusTypeException::class, 'Status-type "illegal-status" is not supported'],
- ];
- }
- /**
- * @param string $userId
- * @param string $messageId
- * @param bool $isValidMessageId
- * @param int|null $clearAt
- * @param bool $expectExisting
- * @param bool $expectSuccess
- * @param bool $expectException
- * @param string|null $expectedExceptionClass
- * @param string|null $expectedExceptionMessage
- *
- * @dataProvider setPredefinedMessageDataProvider
- */
- public function testSetPredefinedMessage(string $userId,
- string $messageId,
- bool $isValidMessageId,
- ?int $clearAt,
- bool $expectExisting,
- bool $expectSuccess,
- bool $expectException,
- ?string $expectedExceptionClass,
- ?string $expectedExceptionMessage): void {
- $userStatus = new UserStatus();
- if ($expectExisting) {
- $userStatus->setId(42);
- $userStatus->setUserId($userId);
- $userStatus->setStatus('offline');
- $userStatus->setStatusTimestamp(0);
- $userStatus->setIsUserDefined(false);
- $userStatus->setCustomIcon('😀');
- $userStatus->setCustomMessage('Foo');
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with($userId)
- ->willReturn($userStatus);
- } else {
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with($userId)
- ->willThrowException(new DoesNotExistException(''));
- }
- $this->predefinedStatusService->expects($this->once())
- ->method('isValidId')
- ->with($messageId)
- ->willReturn($isValidMessageId);
- $this->timeFactory
- ->method('getTime')
- ->willReturn(40);
- if ($expectException) {
- $this->expectException($expectedExceptionClass);
- $this->expectExceptionMessage($expectedExceptionMessage);
- $this->service->setPredefinedMessage($userId, $messageId, $clearAt);
- }
- if ($expectSuccess) {
- if ($expectExisting) {
- $this->mapper->expects($this->once())
- ->method('update')
- ->willReturnArgument(0);
- } else {
- $this->mapper->expects($this->once())
- ->method('insert')
- ->willReturnArgument(0);
- }
- $actual = $this->service->setPredefinedMessage($userId, $messageId, $clearAt);
- $this->assertEquals('john.doe', $actual->getUserId());
- $this->assertEquals('offline', $actual->getStatus());
- $this->assertEquals(0, $actual->getStatusTimestamp());
- $this->assertEquals(false, $actual->getIsUserDefined());
- $this->assertEquals($messageId, $actual->getMessageId());
- $this->assertNull($actual->getCustomIcon());
- $this->assertNull($actual->getCustomMessage());
- $this->assertEquals($clearAt, $actual->getClearAt());
- }
- }
- public function setPredefinedMessageDataProvider(): array {
- return [
- ['john.doe', 'sick-leave', true, null, true, true, false, null, null],
- ['john.doe', 'sick-leave', true, null, false, true, false, null, null],
- ['john.doe', 'sick-leave', true, 20, true, false, true, InvalidClearAtException::class, 'ClearAt is in the past'],
- ['john.doe', 'sick-leave', true, 20, false, false, true, InvalidClearAtException::class, 'ClearAt is in the past'],
- ['john.doe', 'sick-leave', true, 60, true, true, false, null, null],
- ['john.doe', 'sick-leave', true, 60, false, true, false, null, null],
- ['john.doe', 'illegal-message-id', false, null, true, false, true, InvalidMessageIdException::class, 'Message-Id "illegal-message-id" is not supported'],
- ['john.doe', 'illegal-message-id', false, null, false, false, true, InvalidMessageIdException::class, 'Message-Id "illegal-message-id" is not supported'],
- ];
- }
- /**
- * @param string $userId
- * @param string|null $statusIcon
- * @param bool $supportsEmoji
- * @param string $message
- * @param int|null $clearAt
- * @param bool $expectExisting
- * @param bool $expectSuccess
- * @param bool $expectException
- * @param string|null $expectedExceptionClass
- * @param string|null $expectedExceptionMessage
- *
- * @dataProvider setCustomMessageDataProvider
- */
- public function testSetCustomMessage(string $userId,
- ?string $statusIcon,
- bool $supportsEmoji,
- string $message,
- ?int $clearAt,
- bool $expectExisting,
- bool $expectSuccess,
- bool $expectException,
- ?string $expectedExceptionClass,
- ?string $expectedExceptionMessage): void {
- $userStatus = new UserStatus();
- if ($expectExisting) {
- $userStatus->setId(42);
- $userStatus->setUserId($userId);
- $userStatus->setStatus('offline');
- $userStatus->setStatusTimestamp(0);
- $userStatus->setIsUserDefined(false);
- $userStatus->setMessageId('messageId-42');
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with($userId)
- ->willReturn($userStatus);
- } else {
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with($userId)
- ->willThrowException(new DoesNotExistException(''));
- }
- $this->emojiHelper->method('isValidSingleEmoji')
- ->with($statusIcon)
- ->willReturn($supportsEmoji);
- $this->timeFactory
- ->method('getTime')
- ->willReturn(40);
- if ($expectException) {
- $this->expectException($expectedExceptionClass);
- $this->expectExceptionMessage($expectedExceptionMessage);
- $this->service->setCustomMessage($userId, $statusIcon, $message, $clearAt);
- }
- if ($expectSuccess) {
- if ($expectExisting) {
- $this->mapper->expects($this->once())
- ->method('update')
- ->willReturnArgument(0);
- } else {
- $this->mapper->expects($this->once())
- ->method('insert')
- ->willReturnArgument(0);
- }
- $actual = $this->service->setCustomMessage($userId, $statusIcon, $message, $clearAt);
- $this->assertEquals('john.doe', $actual->getUserId());
- $this->assertEquals('offline', $actual->getStatus());
- $this->assertEquals(0, $actual->getStatusTimestamp());
- $this->assertEquals(false, $actual->getIsUserDefined());
- $this->assertNull($actual->getMessageId());
- $this->assertEquals($statusIcon, $actual->getCustomIcon());
- $this->assertEquals($message, $actual->getCustomMessage());
- $this->assertEquals($clearAt, $actual->getClearAt());
- }
- }
- public function setCustomMessageDataProvider(): array {
- return [
- ['john.doe', '😁', true, 'Custom message', null, true, true, false, null, null],
- ['john.doe', '😁', true, 'Custom message', null, false, true, false, null, null],
- ['john.doe', null, false, 'Custom message', null, true, true, false, null, null],
- ['john.doe', null, false, 'Custom message', null, false, true, false, null, null],
- ['john.doe', '😁', false, 'Custom message', null, true, false, true, InvalidStatusIconException::class, 'Status-Icon is longer than one character'],
- ['john.doe', '😁', false, 'Custom message', null, false, false, true, InvalidStatusIconException::class, 'Status-Icon is longer than one character'],
- ['john.doe', null, false, 'Custom message that is way too long and violates the maximum length and hence should be rejected', null, true, false, true, StatusMessageTooLongException::class, 'Message is longer than supported length of 80 characters'],
- ['john.doe', null, false, 'Custom message that is way too long and violates the maximum length and hence should be rejected', null, false, false, true, StatusMessageTooLongException::class, 'Message is longer than supported length of 80 characters'],
- ['john.doe', '😁', true, 'Custom message', 80, true, true, false, null, null],
- ['john.doe', '😁', true, 'Custom message', 80, false, true, false, null, null],
- ['john.doe', '😁', true, 'Custom message', 20, true, false, true, InvalidClearAtException::class, 'ClearAt is in the past'],
- ['john.doe', '😁', true, 'Custom message', 20, false, false, true, InvalidClearAtException::class, 'ClearAt is in the past'],
- ];
- }
- public function testClearStatus(): void {
- $status = new UserStatus();
- $status->setId(1);
- $status->setUserId('john.doe');
- $status->setStatus('dnd');
- $status->setStatusTimestamp(1337);
- $status->setIsUserDefined(true);
- $status->setMessageId('messageId-42');
- $status->setCustomIcon('🙊');
- $status->setCustomMessage('My custom status message');
- $status->setClearAt(42);
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willReturn($status);
- $this->mapper->expects($this->once())
- ->method('update')
- ->with($status);
- $actual = $this->service->clearStatus('john.doe');
- $this->assertTrue($actual);
- $this->assertEquals('offline', $status->getStatus());
- $this->assertEquals(0, $status->getStatusTimestamp());
- $this->assertFalse($status->getIsUserDefined());
- }
- public function testClearStatusDoesNotExist(): void {
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willThrowException(new DoesNotExistException(''));
- $this->mapper->expects($this->never())
- ->method('update');
- $actual = $this->service->clearStatus('john.doe');
- $this->assertFalse($actual);
- }
- public function testClearMessage(): void {
- $status = new UserStatus();
- $status->setId(1);
- $status->setUserId('john.doe');
- $status->setStatus('dnd');
- $status->setStatusTimestamp(1337);
- $status->setIsUserDefined(true);
- $status->setMessageId('messageId-42');
- $status->setCustomIcon('🙊');
- $status->setCustomMessage('My custom status message');
- $status->setClearAt(42);
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willReturn($status);
- $this->mapper->expects($this->once())
- ->method('update')
- ->with($status);
- $actual = $this->service->clearMessage('john.doe');
- $this->assertTrue($actual);
- $this->assertNull($status->getMessageId());
- $this->assertNull($status->getCustomMessage());
- $this->assertNull($status->getCustomIcon());
- $this->assertNull($status->getClearAt());
- }
- public function testClearMessageDoesNotExist(): void {
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willThrowException(new DoesNotExistException(''));
- $this->mapper->expects($this->never())
- ->method('update');
- $actual = $this->service->clearMessage('john.doe');
- $this->assertFalse($actual);
- }
- public function testRemoveUserStatus(): void {
- $status = $this->createMock(UserStatus::class);
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willReturn($status);
- $this->mapper->expects($this->once())
- ->method('delete')
- ->with($status);
- $actual = $this->service->removeUserStatus('john.doe');
- $this->assertTrue($actual);
- }
- public function testRemoveUserStatusDoesNotExist(): void {
- $this->mapper->expects($this->once())
- ->method('findByUserId')
- ->with('john.doe')
- ->willThrowException(new DoesNotExistException(''));
- $this->mapper->expects($this->never())
- ->method('delete');
- $actual = $this->service->removeUserStatus('john.doe');
- $this->assertFalse($actual);
- }
- public function testCleanStatusAutomaticOnline(): void {
- $status = new UserStatus();
- $status->setStatus(IUserStatus::ONLINE);
- $status->setStatusTimestamp(1337);
- $status->setIsUserDefined(false);
- $this->mapper->expects(self::once())
- ->method('update')
- ->with($status);
- parent::invokePrivate($this->service, 'cleanStatus', [$status]);
- }
- public function testCleanStatusCustomOffline(): void {
- $status = new UserStatus();
- $status->setStatus(IUserStatus::OFFLINE);
- $status->setStatusTimestamp(1337);
- $status->setIsUserDefined(true);
- $this->mapper->expects(self::once())
- ->method('update')
- ->with($status);
- parent::invokePrivate($this->service, 'cleanStatus', [$status]);
- }
- public function testCleanStatusCleanedAlready(): void {
- $status = new UserStatus();
- $status->setStatus(IUserStatus::OFFLINE);
- $status->setStatusTimestamp(1337);
- $status->setIsUserDefined(false);
- // Don't update the status again and again when no value changed
- $this->mapper->expects(self::never())
- ->method('update')
- ->with($status);
- parent::invokePrivate($this->service, 'cleanStatus', [$status]);
- }
- public function testBackupWorkingHasBackupAlready(): void {
- $p = $this->createMock(UniqueConstraintViolationException::class);
- $e = DbalException::wrap($p);
- $this->mapper->expects($this->once())
- ->method('createBackupStatus')
- ->with('john')
- ->willThrowException($e);
- $this->assertFalse($this->service->backupCurrentStatus('john'));
- }
- public function testBackupThrowsOther(): void {
- $e = new Exception('', Exception::REASON_CONNECTION_LOST);
- $this->mapper->expects($this->once())
- ->method('createBackupStatus')
- ->with('john')
- ->willThrowException($e);
- $this->expectException(Exception::class);
- $this->service->backupCurrentStatus('john');
- }
- public function testBackup(): void {
- $e = new Exception('', Exception::REASON_UNIQUE_CONSTRAINT_VIOLATION);
- $this->mapper->expects($this->once())
- ->method('createBackupStatus')
- ->with('john')
- ->willReturn(true);
- $this->assertTrue($this->service->backupCurrentStatus('john'));
- }
- public function testRevertMultipleUserStatus(): void {
- $john = new UserStatus();
- $john->setId(1);
- $john->setStatus(IUserStatus::AWAY);
- $john->setStatusTimestamp(1337);
- $john->setIsUserDefined(false);
- $john->setMessageId('call');
- $john->setUserId('john');
- $john->setIsBackup(false);
- $johnBackup = new UserStatus();
- $johnBackup->setId(2);
- $johnBackup->setStatus(IUserStatus::ONLINE);
- $johnBackup->setStatusTimestamp(1337);
- $johnBackup->setIsUserDefined(true);
- $johnBackup->setMessageId('hello');
- $johnBackup->setUserId('_john');
- $johnBackup->setIsBackup(true);
- $noBackup = new UserStatus();
- $noBackup->setId(3);
- $noBackup->setStatus(IUserStatus::AWAY);
- $noBackup->setStatusTimestamp(1337);
- $noBackup->setIsUserDefined(false);
- $noBackup->setMessageId('call');
- $noBackup->setUserId('nobackup');
- $noBackup->setIsBackup(false);
- $backupOnly = new UserStatus();
- $backupOnly->setId(4);
- $backupOnly->setStatus(IUserStatus::ONLINE);
- $backupOnly->setStatusTimestamp(1337);
- $backupOnly->setIsUserDefined(true);
- $backupOnly->setMessageId('hello');
- $backupOnly->setUserId('_backuponly');
- $backupOnly->setIsBackup(true);
- $noBackupDND = new UserStatus();
- $noBackupDND->setId(5);
- $noBackupDND->setStatus(IUserStatus::DND);
- $noBackupDND->setStatusTimestamp(1337);
- $noBackupDND->setIsUserDefined(false);
- $noBackupDND->setMessageId('call');
- $noBackupDND->setUserId('nobackupanddnd');
- $noBackupDND->setIsBackup(false);
- $this->mapper->expects($this->once())
- ->method('findByUserIds')
- ->with(['john', 'nobackup', 'backuponly', 'nobackupanddnd', '_john', '_nobackup', '_backuponly', '_nobackupanddnd'])
- ->willReturn([
- $john,
- $johnBackup,
- $noBackup,
- $backupOnly,
- $noBackupDND,
- ]);
- $this->mapper->expects($this->once())
- ->method('deleteByIds')
- ->with([1, 3, 5]);
- $this->mapper->expects($this->once())
- ->method('restoreBackupStatuses')
- ->with([2]);
- $this->service->revertMultipleUserStatus(['john', 'nobackup', 'backuponly', 'nobackupanddnd'], 'call');
- }
- }
|