config = $this->createMock(IConfig::class); $this->session = $this->createMock(ISession::class); $this->cmd = new SetUserTimezoneCommand( $this->config, $this->session ); } public function testProcessNoTimezoneSet() { $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() { $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()); } }