user = $this->createMock(IUser::class); $this->user->expects($this->any()) ->method('getUid') ->willReturn('alice'); $this->session = $this->createMock(IUserSession::class); $this->shareManager = $this->createMock(IManager::class); $this->request = $this->createMock(IRequest::class); $this->userManager = $this->createMock(IUserManager::class); $this->handler = new UserPlaceholderHandler($this->session, $this->shareManager, $this->request, $this->userManager); } protected function setUser() { $this->session->expects($this->any()) ->method('getUser') ->willReturn($this->user); } public function optionProvider() { return [ ['/foo/bar/$user/foobar', '/foo/bar/alice/foobar'], [['/foo/bar/$user/foobar'], ['/foo/bar/alice/foobar']], [['/FOO/BAR/$USER/FOOBAR'], ['/FOO/BAR/alice/FOOBAR']], ]; } /** * @dataProvider optionProvider */ public function testHandle($option, $expected): void { $this->setUser(); $this->assertSame($expected, $this->handler->handle($option)); } /** * @dataProvider optionProvider */ public function testHandleNoUser($option): void { $this->shareManager->expects($this->once()) ->method('getShareByToken') ->willThrowException(new ShareNotFound()); $this->assertSame($option, $this->handler->handle($option)); } }