shareManager = $this->createMock(IManager::class); $this->l = $this->createMock(IL10N::class); $this->l->method('t')->will($this->returnArgument(0)); $this->middleware = new OCSShareAPIMiddleware($this->shareManager, $this->l); } public function dataBeforeController() { return [ [ $this->createMock(Controller::class), false, false ], [ $this->createMock(Controller::class), true, false ], [ $this->createMock(OCSController::class), false, false ], [ $this->createMock(OCSController::class), true, false ], [ $this->createMock(ShareAPIController::class), false, true ], [ $this->createMock(ShareAPIController::class), true, false ], ]; } /** * @dataProvider dataBeforeController * * @param Controller $controller * @param bool $enabled * @param bool $exception */ public function testBeforeController(Controller $controller, $enabled, $exception) { $this->shareManager->method('shareApiEnabled')->willReturn($enabled); try { $this->middleware->beforeController($controller, 'foo'); $this->assertFalse($exception); } catch (OCSNotFoundException $e) { $this->assertTrue($exception); } } public function dataAfterController() { return [ [ $this->createMock(Controller::class), ], [ $this->createMock(OCSController::class), ], [ $this->createMock(ShareAPIController::class), ], ]; } /** * @dataProvider dataAfterController * * @param Controller $controller * @param bool $called */ public function testAfterController(Controller $controller) { if ($controller instanceof ShareAPIController) { $controller->expects($this->once())->method('cleanup'); } $response = $this->getMockBuilder('OCP\AppFramework\Http\Response') ->disableOriginalConstructor() ->getMock(); $this->middleware->afterController($controller, 'foo', $response); } }