userSession = $this->createMock(Session::class); $this->config = $this->createMock(IConfig::class); $this->cmd = new FinishRememberedLoginCommand( $this->userSession, $this->config ); } public function testProcessNotRememberedLogin(): void { $data = $this->getLoggedInLoginData(); $data->setRememberLogin(false); $this->userSession->expects($this->never()) ->method('createRememberMeToken'); $result = $this->cmd->process($data); $this->assertTrue($result->isSuccess()); } public function testProcess(): void { $data = $this->getLoggedInLoginData(); $this->config->expects($this->once()) ->method('getSystemValueBool') ->with('auto_logout', false) ->willReturn(false); $this->userSession->expects($this->once()) ->method('createRememberMeToken') ->with($this->user); $result = $this->cmd->process($data); $this->assertTrue($result->isSuccess()); } public function testProcessNotRemeberedLoginWithAutologout(): void { $data = $this->getLoggedInLoginData(); $this->config->expects($this->once()) ->method('getSystemValueBool') ->with('auto_logout', false) ->willReturn(true); $this->userSession->expects($this->never()) ->method('createRememberMeToken'); $result = $this->cmd->process($data); $this->assertTrue($result->isSuccess()); } }