Merge pull request #14007 from owncloud/fix-broken-master

[master] Request requires a second parameter
remotes/origin/log-external-deletes
Morris Jobke 12 years ago
commit 297b52fa4c
  1. 22
      tests/lib/appframework/controller/OCSControllerTest.php

@ -36,12 +36,13 @@ class OCSControllerTest extends \Test\TestCase {
public function testCors() { public function testCors() {
$request = new Request( $request = new Request(
array('server' => array('HTTP_ORIGIN' => 'test')) array('server' => array('HTTP_ORIGIN' => 'test')),
$this->getMock('\OCP\Security\ISecureRandom')
); );
$this->controller = new ChildOCSController('app', $request, 'verbs', $controller = new ChildOCSController('app', $request, 'verbs',
'headers', 100); 'headers', 100);
$response = $this->controller->preflightedCors(); $response = $controller->preflightedCors();
$headers = $response->getHeaders(); $headers = $response->getHeaders();
@ -54,7 +55,10 @@ class OCSControllerTest extends \Test\TestCase {
public function testXML() { public function testXML() {
$controller = new ChildOCSController('app', new Request); $controller = new ChildOCSController('app', new Request(
[],
$this->getMock('\OCP\Security\ISecureRandom')
));
$expected = "<?xml version=\"1.0\"?>\n" . $expected = "<?xml version=\"1.0\"?>\n" .
"<ocs>\n" . "<ocs>\n" .
" <meta>\n" . " <meta>\n" .
@ -80,7 +84,10 @@ class OCSControllerTest extends \Test\TestCase {
public function testXMLDataResponse() { public function testXMLDataResponse() {
$controller = new ChildOCSController('app', new Request); $controller = new ChildOCSController('app', new Request(
[],
$this->getMock('\OCP\Security\ISecureRandom')
));
$expected = "<?xml version=\"1.0\"?>\n" . $expected = "<?xml version=\"1.0\"?>\n" .
"<ocs>\n" . "<ocs>\n" .
" <meta>\n" . " <meta>\n" .
@ -106,7 +113,10 @@ class OCSControllerTest extends \Test\TestCase {
public function testJSON() { public function testJSON() {
$controller = new ChildOCSController('app', new Request); $controller = new ChildOCSController('app', new Request(
[],
$this->getMock('\OCP\Security\ISecureRandom')
));
$expected = '{"status":"OK","statuscode":400,"message":"OK",' . $expected = '{"status":"OK","statuscode":400,"message":"OK",' .
'"totalitems":"","itemsperpage":"","data":{"test":"hi"}}'; '"totalitems":"","itemsperpage":"","data":{"test":"hi"}}';
$params = [ $params = [

Loading…
Cancel
Save