You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

179 lines
3.7 KiB

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\UserStatus\Tests\Integration\Service;
use OCA\UserStatus\Service\StatusService;
use OCP\AppFramework\Db\DoesNotExistException;
use OCP\IDBConnection;
use OCP\Server;
use OCP\UserStatus\IUserStatus;
use Test\TestCase;
use function sleep;
use function time;
/**
* @group DB
*/
class StatusServiceIntegrationTest extends TestCase {
private StatusService $service;
protected function setUp(): void {
parent::setUp();
$this->service = Server::get(StatusService::class);
$db = Server::get(IDBConnection::class);
$qb = $db->getQueryBuilder();
$qb->delete('user_status')->executeStatement();
}
public function testNoStatusYet(): void {
$this->expectException(DoesNotExistException::class);
$this->service->findByUserId('test123');
}
public function testCustomStatusMessageTimestamp(): void {
$this->service->setCustomMessage(
'test123',
'🍕',
'Lunch',
null,
);
$status = $this->service->findByUserId('test123');
self::assertSame('Lunch', $status->getCustomMessage());
self::assertGreaterThanOrEqual(time(), $status->getStatusMessageTimestamp());
}
public function testOnlineStatusKeepsMessageTimestamp(): void {
$this->service->setStatus(
'test123',
IUserStatus::OFFLINE,
time() + 1000,
false,
);
$this->service->setCustomMessage(
'test123',
'🍕',
'Lunch',
null,
);
$timeAfterInsert = time();
sleep(1);
$this->service->setStatus(
'test123',
IUserStatus::ONLINE,
time() + 2000,
false,
);
$status = $this->service->findByUserId('test123');
self::assertSame('Lunch', $status->getCustomMessage());
self::assertLessThanOrEqual($timeAfterInsert, $status->getStatusMessageTimestamp());
}
public function testCreateRestoreBackupAutomatically(): void {
$this->service->setStatus(
'test123',
IUserStatus::ONLINE,
null,
false,
);
$this->service->setUserStatus(
'test123',
IUserStatus::DND,
'meeting',
true,
);
self::assertSame(
'meeting',
$this->service->findByUserId('test123')->getMessageId(),
);
$this->service->revertUserStatus(
'test123',
'meeting',
);
self::assertSame(
IUserStatus::ONLINE,
$this->service->findByUserId('test123')->getStatus(),
);
}
public function testCallOverwritesMeetingStatus(): void {
$this->service->setStatus(
'test123',
IUserStatus::ONLINE,
null,
false,
);
$this->service->setUserStatus(
'test123',
IUserStatus::AWAY,
IUserStatus::MESSAGE_CALENDAR_BUSY,
true,
);
self::assertSame(
'meeting',
$this->service->findByUserId('test123')->getMessageId(),
);
$this->service->setUserStatus(
'test123',
IUserStatus::AWAY,
IUserStatus::MESSAGE_CALL,
true,
);
self::assertSame(
IUserStatus::AWAY,
$this->service->findByUserId('test123')->getStatus(),
);
self::assertSame(
IUserStatus::MESSAGE_CALL,
$this->service->findByUserId('test123')->getMessageId(),
);
}
public function testOtherAutomationsDoNotOverwriteEachOther(): void {
$this->service->setStatus(
'test123',
IUserStatus::ONLINE,
null,
false,
);
$this->service->setUserStatus(
'test123',
IUserStatus::AWAY,
IUserStatus::MESSAGE_CALENDAR_BUSY,
true,
);
self::assertSame(
'meeting',
$this->service->findByUserId('test123')->getMessageId(),
);
$nostatus = $this->service->setUserStatus(
'test123',
IUserStatus::AWAY,
IUserStatus::MESSAGE_AVAILABILITY,
true,
);
self::assertNull($nostatus);
self::assertSame(
IUserStatus::MESSAGE_CALENDAR_BUSY,
$this->service->findByUserId('test123')->getMessageId(),
);
}
}