mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
a9774741e8
Signed-off-by: Hamza Mahjoubi <hamzamahjoubi221@gmail.com>
213 lines
6.5 KiB
PHP
213 lines
6.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace Test\User;
|
|
|
|
use OC\User\AvailabilityCoordinator;
|
|
use OC\User\OutOfOfficeData;
|
|
use OCA\DAV\CalDAV\TimezoneService;
|
|
use OCA\DAV\Db\Absence;
|
|
use OCA\DAV\Service\AbsenceService;
|
|
use OCP\ICache;
|
|
use OCP\ICacheFactory;
|
|
use OCP\IConfig;
|
|
use OCP\IUser;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Psr\Log\LoggerInterface;
|
|
use Test\TestCase;
|
|
|
|
class AvailabilityCoordinatorTest extends TestCase {
|
|
private AvailabilityCoordinator $availabilityCoordinator;
|
|
private ICacheFactory $cacheFactory;
|
|
private ICache $cache;
|
|
private IConfig|MockObject $config;
|
|
private AbsenceService $absenceService;
|
|
private LoggerInterface $logger;
|
|
private MockObject|TimezoneService $timezoneService;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->cacheFactory = $this->createMock(ICacheFactory::class);
|
|
$this->cache = $this->createMock(ICache::class);
|
|
$this->absenceService = $this->createMock(AbsenceService::class);
|
|
$this->config = $this->createMock(IConfig::class);
|
|
$this->logger = $this->createMock(LoggerInterface::class);
|
|
$this->timezoneService = $this->createMock(TimezoneService::class);
|
|
|
|
$this->cacheFactory->expects(self::once())
|
|
->method('createLocal')
|
|
->willReturn($this->cache);
|
|
|
|
$this->availabilityCoordinator = new AvailabilityCoordinator(
|
|
$this->cacheFactory,
|
|
$this->config,
|
|
$this->absenceService,
|
|
$this->logger,
|
|
$this->timezoneService,
|
|
);
|
|
}
|
|
|
|
public function testIsEnabled(): void {
|
|
$this->config->expects(self::once())
|
|
->method('getAppValue')
|
|
->with('dav', 'hide_absence_settings', 'no')
|
|
->willReturn('no');
|
|
|
|
$isEnabled = $this->availabilityCoordinator->isEnabled();
|
|
|
|
self::assertTrue($isEnabled);
|
|
}
|
|
|
|
public function testGetOutOfOfficeDataInEffect(): void {
|
|
$absence = new Absence();
|
|
$absence->setId(420);
|
|
$absence->setUserId('user');
|
|
$absence->setFirstDay('2023-10-01');
|
|
$absence->setLastDay('2023-10-08');
|
|
$absence->setStatus('Vacation');
|
|
$absence->setMessage('On vacation');
|
|
$absence->setReplacementUserId('batman');
|
|
$absence->setReplacementUserDisplayName('Bruce Wayne');
|
|
$this->timezoneService->method('getUserTimezone')->with('user')->willReturn('Europe/Berlin');
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
$user->method('getUID')
|
|
->willReturn('user');
|
|
|
|
$this->cache->expects(self::exactly(2))
|
|
->method('get')
|
|
->willReturnOnConsecutiveCalls(null, null);
|
|
$this->absenceService->expects(self::once())
|
|
->method('getAbsence')
|
|
->with($user->getUID())
|
|
->willReturn($absence);
|
|
$this->cache->expects(self::exactly(2))
|
|
->method('set')
|
|
->withConsecutive([$user->getUID() . '_timezone', 'Europe/Berlin', 3600],
|
|
[$user->getUID(), '{"id":"420","startDate":1696111200,"endDate":1696802340,"shortMessage":"Vacation","message":"On vacation","replacementUserId":"batman","replacementUserDisplayName":"Bruce Wayne"}', 300]);
|
|
|
|
$expected = new OutOfOfficeData(
|
|
'420',
|
|
$user,
|
|
1696111200,
|
|
1696802340,
|
|
'Vacation',
|
|
'On vacation',
|
|
'batman',
|
|
'Bruce Wayne',
|
|
);
|
|
$actual = $this->availabilityCoordinator->getCurrentOutOfOfficeData($user);
|
|
self::assertEquals($expected, $actual);
|
|
}
|
|
|
|
public function testGetOutOfOfficeDataCachedAll(): void {
|
|
$absence = new Absence();
|
|
$absence->setId(420);
|
|
$absence->setUserId('user');
|
|
$absence->setFirstDay('2023-10-01');
|
|
$absence->setLastDay('2023-10-08');
|
|
$absence->setStatus('Vacation');
|
|
$absence->setMessage('On vacation');
|
|
$absence->setReplacementUserId('batman');
|
|
$absence->setReplacementUserDisplayName('Bruce Wayne');
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
$user->method('getUID')
|
|
->willReturn('user');
|
|
|
|
$this->cache->expects(self::exactly(2))
|
|
->method('get')
|
|
->willReturnOnConsecutiveCalls('UTC', '{"id":"420","startDate":1696118400,"endDate":1696809540,"shortMessage":"Vacation","message":"On vacation","replacementUserId":"batman","replacementUserDisplayName":"Bruce Wayne"}');
|
|
$this->absenceService->expects(self::never())
|
|
->method('getAbsence');
|
|
$this->cache->expects(self::exactly(1))
|
|
->method('set');
|
|
|
|
$expected = new OutOfOfficeData(
|
|
'420',
|
|
$user,
|
|
1696118400,
|
|
1696809540,
|
|
'Vacation',
|
|
'On vacation',
|
|
'batman',
|
|
'Bruce Wayne'
|
|
);
|
|
$actual = $this->availabilityCoordinator->getCurrentOutOfOfficeData($user);
|
|
self::assertEquals($expected, $actual);
|
|
}
|
|
|
|
public function testGetOutOfOfficeDataNoData(): void {
|
|
$absence = new Absence();
|
|
$absence->setId(420);
|
|
$absence->setUserId('user');
|
|
$absence->setFirstDay('2023-10-01');
|
|
$absence->setLastDay('2023-10-08');
|
|
$absence->setStatus('Vacation');
|
|
$absence->setMessage('On vacation');
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
$user->method('getUID')
|
|
->willReturn('user');
|
|
|
|
$this->cache->expects(self::exactly(2))
|
|
->method('get')
|
|
->willReturnOnConsecutiveCalls('UTC', null);
|
|
$this->absenceService->expects(self::once())
|
|
->method('getAbsence')
|
|
->willReturn(null);
|
|
$this->cache->expects(self::never())
|
|
->method('set');
|
|
|
|
$actual = $this->availabilityCoordinator->getCurrentOutOfOfficeData($user);
|
|
self::assertNull($actual);
|
|
}
|
|
|
|
public function testGetOutOfOfficeDataWithInvalidCachedData(): void {
|
|
$absence = new Absence();
|
|
$absence->setId(420);
|
|
$absence->setUserId('user');
|
|
$absence->setFirstDay('2023-10-01');
|
|
$absence->setLastDay('2023-10-08');
|
|
$absence->setStatus('Vacation');
|
|
$absence->setMessage('On vacation');
|
|
$absence->setReplacementUserId('batman');
|
|
$absence->setReplacementUserDisplayName('Bruce Wayne');
|
|
$this->timezoneService->method('getUserTimezone')->with('user')->willReturn('Europe/Berlin');
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
$user->method('getUID')
|
|
->willReturn('user');
|
|
|
|
$this->cache->expects(self::exactly(2))
|
|
->method('get')
|
|
->willReturnOnConsecutiveCalls('UTC', '{"id":"420",}');
|
|
$this->absenceService->expects(self::once())
|
|
->method('getAbsence')
|
|
->with('user')
|
|
->willReturn($absence);
|
|
$this->cache->expects(self::once())
|
|
->method('set')
|
|
->with('user', '{"id":"420","startDate":1696118400,"endDate":1696809540,"shortMessage":"Vacation","message":"On vacation","replacementUserId":"batman","replacementUserDisplayName":"Bruce Wayne"}', 300);
|
|
|
|
$expected = new OutOfOfficeData(
|
|
'420',
|
|
$user,
|
|
1696118400,
|
|
1696809540,
|
|
'Vacation',
|
|
'On vacation',
|
|
'batman',
|
|
'Bruce Wayne'
|
|
);
|
|
$actual = $this->availabilityCoordinator->getCurrentOutOfOfficeData($user);
|
|
self::assertEquals($expected, $actual);
|
|
}
|
|
}
|