123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <?php
- /**
- * ownCloud - App Framework
- *
- * @author Bernhard Posselt
- * @copyright 2012 Bernhard Posselt <dev@bernhard-posselt.com>
- *
- * 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 <http://www.gnu.org/licenses/>.
- *
- */
- 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);
- }
- }
|