* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * License as published by the Free Software Foundation; either * version 3 of the License, or any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details. * * You should have received a copy of the GNU Affero General Public * License along with this library. If not, see . * */ namespace Test\AppFramework\Controller; use OC\AppFramework\Http\Request; use OCP\AppFramework\Controller; use OCP\AppFramework\Http\TemplateResponse; use OCP\AppFramework\Http\JSONResponse; use OCP\AppFramework\Http\DataResponse; use OCP\IConfig; class ChildController extends Controller { public function __construct($appName, $request) { parent::__construct($appName, $request); $this->registerResponder('tom', function ($respone) { return 'hi'; }); } public function custom($in) { $this->registerResponder('json', function ($response) { return new JSONResponse(array(strlen($response))); }); return $in; } public function customDataResponse($in) { $response = new DataResponse($in, 300); $response->addHeader('test', 'something'); return $response; } }; class ControllerTest extends \Test\TestCase { /** * @var Controller */ private $controller; private $app; protected function setUp(){ parent::setUp(); $request = new Request( [ 'get' => ['name' => 'John Q. Public', 'nickname' => 'Joey'], 'post' => ['name' => 'Jane Doe', 'nickname' => 'Janey'], 'urlParams' => ['name' => 'Johnny Weissmüller'], 'files' => ['file' => 'filevalue'], 'env' => ['PATH' => 'daheim'], 'session' => ['sezession' => 'kein'], 'method' => 'hi', ], $this->getMockBuilder('\OCP\Security\ISecureRandom') ->disableOriginalConstructor() ->getMock(), $this->getMockBuilder(IConfig::class) ->disableOriginalConstructor() ->getMock() ); $this->app = $this->getMockBuilder('OC\AppFramework\DependencyInjection\DIContainer') ->setMethods(['getAppName']) ->setConstructorArgs(['test']) ->getMock(); $this->app->expects($this->any()) ->method('getAppName') ->will($this->returnValue('apptemplate_advanced')); $this->controller = new ChildController($this->app, $request); } /** * @expectedException \DomainException */ public function testFormatResonseInvalidFormat() { $this->controller->buildResponse(null, 'test'); } public function testFormat() { $response = $this->controller->buildResponse(array('hi'), 'json'); $this->assertEquals(array('hi'), $response->getData()); } public function testFormatDataResponseJSON() { $expectedHeaders = [ 'test' => 'something', 'Cache-Control' => 'no-cache, no-store, must-revalidate', 'Content-Type' => 'application/json; charset=utf-8', 'Content-Security-Policy' => "default-src 'none';base-uri 'none';manifest-src 'self';script-src 'self';style-src 'self' 'unsafe-inline';img-src 'self' data: blob:;font-src 'self' data:;connect-src 'self';media-src 'self';frame-ancestors 'self'", ]; $response = $this->controller->customDataResponse(array('hi')); $response = $this->controller->buildResponse($response, 'json'); $this->assertEquals(array('hi'), $response->getData()); $this->assertEquals(300, $response->getStatus()); $this->assertEquals($expectedHeaders, $response->getHeaders()); } public function testCustomFormatter() { $response = $this->controller->custom('hi'); $response = $this->controller->buildResponse($response, 'json'); $this->assertEquals(array(2), $response->getData()); } public function testDefaultResponderToJSON() { $responder = $this->controller->getResponderByHTTPHeader('*/*'); $this->assertEquals('json', $responder); } public function testResponderAcceptHeaderParsed() { $responder = $this->controller->getResponderByHTTPHeader( '*/*, application/tom, application/json' ); $this->assertEquals('tom', $responder); } public function testResponderAcceptHeaderParsedUpperCase() { $responder = $this->controller->getResponderByHTTPHeader( '*/*, apPlication/ToM, application/json' ); $this->assertEquals('tom', $responder); } }