95239ad21e
First stab at the StreamResponse, see #12988 The idea is to use an interface ICallbackResponse (I'm not 100% happy with the name yet, suggestions?) that allow the response to output things in its own way, for instance stream the file using readfile Unittests are atm lacking, plan is to check if a mock of ICallbackResponse will be used by calling its callback (also unhappy with this name) method Usage is: $response = new StreamResponse('path/to/file'); rename io to output, add additional methods and handle error and not modified cases when using StreamResponse fix indention and uppercasing, also handle forbidden cases fix indention fix indention no forbidden, figuring out if a file is really readable is too complicated to get to work across OSes and streams remove useless import remove useless import fix intendation
163 lines
4.5 KiB
PHP
163 lines
4.5 KiB
PHP
<?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 OC\AppFramework;
|
|
|
|
use OCP\AppFramework\Http\Response;
|
|
|
|
|
|
function rrmdir($directory) {
|
|
$files = array_diff(scandir($directory), array('.','..'));
|
|
foreach ($files as $file) {
|
|
if (is_dir($directory . '/' . $file)) {
|
|
rrmdir($directory . '/' . $file);
|
|
} else {
|
|
unlink($directory . '/' . $file);
|
|
}
|
|
}
|
|
return rmdir($directory);
|
|
}
|
|
|
|
|
|
class AppTest extends \Test\TestCase {
|
|
|
|
private $container;
|
|
private $io;
|
|
private $api;
|
|
private $controller;
|
|
private $dispatcher;
|
|
private $params;
|
|
private $headers;
|
|
private $output;
|
|
private $controllerName;
|
|
private $controllerMethod;
|
|
private $appPath;
|
|
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
|
|
$this->container = new \OC\AppFramework\DependencyInjection\DIContainer('test', array());
|
|
$this->controller = $this->getMockBuilder(
|
|
'OCP\AppFramework\Controller')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$this->dispatcher = $this->getMockBuilder(
|
|
'OC\AppFramework\Http\Dispatcher')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->io = $this->getMockBuilder('OCP\\AppFramework\\Http\\IOutput')->getMock();
|
|
|
|
$this->headers = array('key' => 'value');
|
|
$this->output = 'hi';
|
|
$this->controllerName = 'Controller';
|
|
$this->controllerMethod = 'method';
|
|
|
|
$this->container[$this->controllerName] = $this->controller;
|
|
$this->container['Dispatcher'] = $this->dispatcher;
|
|
$this->container['OCP\\AppFramework\\Http\\IOutput'] = $this->io;
|
|
$this->container['urlParams'] = array();
|
|
|
|
$this->appPath = __DIR__ . '/../../../apps/namespacetestapp/appinfo';
|
|
$infoXmlPath = $this->appPath . '/info.xml';
|
|
mkdir($this->appPath, 0777, true);
|
|
|
|
$xml = '<?xml version="1.0" encoding="UTF-8"?>' .
|
|
'<info>' .
|
|
'<id>namespacetestapp</id>' .
|
|
'<namespace>NameSpaceTestApp</namespace>' .
|
|
'</info>';
|
|
file_put_contents($infoXmlPath, $xml);
|
|
}
|
|
|
|
|
|
public function testControllerNameAndMethodAreBeingPassed(){
|
|
$return = array(null, array(), array(), null, new Response());
|
|
$this->dispatcher->expects($this->once())
|
|
->method('dispatch')
|
|
->with($this->equalTo($this->controller),
|
|
$this->equalTo($this->controllerMethod))
|
|
->will($this->returnValue($return));
|
|
|
|
$this->io->expects($this->never())
|
|
->method('setOutput');
|
|
|
|
App::main($this->controllerName, $this->controllerMethod,
|
|
$this->container);
|
|
}
|
|
|
|
|
|
public function testBuildAppNamespace() {
|
|
$ns = App::buildAppNamespace('someapp');
|
|
$this->assertEquals('OCA\Someapp', $ns);
|
|
}
|
|
|
|
|
|
public function testBuildAppNamespaceCore() {
|
|
$ns = App::buildAppNamespace('someapp', 'OC\\');
|
|
$this->assertEquals('OC\Someapp', $ns);
|
|
}
|
|
|
|
|
|
public function testBuildAppNamespaceInfoXml() {
|
|
$ns = App::buildAppNamespace('namespacetestapp', 'OCA\\');
|
|
$this->assertEquals('OCA\NameSpaceTestApp', $ns);
|
|
}
|
|
|
|
|
|
protected function tearDown() {
|
|
rrmdir($this->appPath);
|
|
}
|
|
|
|
|
|
public function testOutputIsPrinted(){
|
|
$return = [null, [], [], $this->output, new Response()];
|
|
$this->dispatcher->expects($this->once())
|
|
->method('dispatch')
|
|
->with($this->equalTo($this->controller),
|
|
$this->equalTo($this->controllerMethod))
|
|
->will($this->returnValue($return));
|
|
$this->io->expects($this->once())
|
|
->method('setOutput')
|
|
->with($this->equalTo($this->output));
|
|
App::main($this->controllerName, $this->controllerMethod, $this->container, []);
|
|
}
|
|
|
|
|
|
public function testCallbackIsCalled(){
|
|
$mock = $this->getMockBuilder('OCP\AppFramework\Http\ICallbackResponse')
|
|
->getMock();
|
|
|
|
$return = [null, [], [], $this->output, $mock];
|
|
$this->dispatcher->expects($this->once())
|
|
->method('dispatch')
|
|
->with($this->equalTo($this->controller),
|
|
$this->equalTo($this->controllerMethod))
|
|
->will($this->returnValue($return));
|
|
$mock->expects($this->once())
|
|
->method('callback');
|
|
App::main($this->controllerName, $this->controllerMethod, $this->container, []);
|
|
}
|
|
|
|
}
|