blob: fb8240c4b1ebb5888a9e4e66a5cd569c3dfbc456 (
plain)
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
|
<?php
/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
declare(strict_types=1);
namespace Test\Authentication\Login;
use OC\Authentication\Login\SetUserTimezoneCommand;
use OCP\IConfig;
use OCP\ISession;
use PHPUnit\Framework\MockObject\MockObject;
class SetUserTimezoneCommandTest extends ALoginTestCommand {
/** @var IConfig|MockObject */
private $config;
/** @var ISession|MockObject */
private $session;
protected function setUp(): void {
parent::setUp();
$this->config = $this->createMock(IConfig::class);
$this->session = $this->createMock(ISession::class);
$this->cmd = new SetUserTimezoneCommand(
$this->config,
$this->session
);
}
public function testProcessNoTimezoneSet(): void {
$data = $this->getLoggedInLoginData();
$this->config->expects($this->never())
->method('setUserValue');
$this->session->expects($this->never())
->method('set');
$result = $this->cmd->process($data);
$this->assertTrue($result->isSuccess());
}
public function testProcess(): void {
$data = $this->getLoggedInLoginDataWithTimezone();
$this->user->expects($this->once())
->method('getUID')
->willReturn($this->username);
$this->config->expects($this->once())
->method('setUserValue')
->with(
$this->username,
'core',
'timezone',
$this->timezone
);
$this->session->expects($this->once())
->method('set')
->with(
'timezone',
$this->timeZoneOffset
);
$result = $this->cmd->process($data);
$this->assertTrue($result->isSuccess());
}
}
|