summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-02-02 00:20:26 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-02-02 00:20:41 +0100
commitac423f6ca08a86d66544c50a0277e3ff00acb467 (patch)
tree9c83c6ebc3594a031ef2eb4618f601b80253408d /tests
parent45df6bcd1339e3f6b949b257319bd85cc676fff0 (diff)
added foldercontroller + test
Diffstat (limited to 'tests')
-rw-r--r--tests/classloader.php35
-rw-r--r--tests/controller/FolderControllerTest.php80
-rw-r--r--tests/index.php13
3 files changed, 115 insertions, 13 deletions
diff --git a/tests/classloader.php b/tests/classloader.php
new file mode 100644
index 000000000..310dbea07
--- /dev/null
+++ b/tests/classloader.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * ownCloud - Advanced App Template
+ *
+ * @author Bernhard Posselt
+ * @copyright 2012 Bernhard Posselt nukeawhale@gmail.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/>.
+ *
+ */
+
+// to execute without owncloud, we need to create our own classloader
+spl_autoload_register(function ($className){
+ if (strpos($className, 'OCA\\') === 0) {
+
+ $path = strtolower(str_replace('\\', '/', substr($className, 3)) . '.php');
+ $relPath = __DIR__ . '/../..' . $path;
+
+ if(file_exists($relPath)){
+ require_once $relPath;
+ }
+ }
+}); \ No newline at end of file
diff --git a/tests/controller/FolderControllerTest.php b/tests/controller/FolderControllerTest.php
new file mode 100644
index 000000000..dd31bc62e
--- /dev/null
+++ b/tests/controller/FolderControllerTest.php
@@ -0,0 +1,80 @@
+<?php
+
+/**
+* ownCloud - News
+*
+* @author Alessandro Copyright
+* @author Bernhard Posselt
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+* @copyright 2012 Bernhard Posselt nukeawhale@gmail.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 OCA\News\Controller;
+
+use \OCA\AppFramework\Http\Request;
+
+
+require_once(__DIR__ . "/../classloader.php");
+
+
+class FolderControllerTest extends \PHPUnit_Framework_TestCase {
+
+ private $api;
+ private $folderMapper;
+ private $request;
+ private $controller;
+
+
+ /**
+ * Gets run before each test
+ */
+ public function setUp(){
+ $this->api = $this->getMock('\OCA\AppFramework\Core\API',
+ null, array('news'));
+ $this->folderMapper = $this->getMock('FolderMapper',
+ array('getAll'));
+ $this->request = new Request();
+ $this->controller = new FolderController($this->api, $this->request,
+ $this->folderMapper);
+
+ }
+
+
+ public function testGetAllCalled(){
+ $this->folderMapper->expects($this->once())
+ ->method('getAll')
+ ->will($this->returnValue( array() ));
+
+ $this->controller->getAll();
+ }
+
+
+ public function testGetAllReturnsFolders(){
+ $return = array(
+ 'folder1' => 'name1',
+ 'folder2' => 'name2'
+ );
+ $this->folderMapper->expects($this->once())
+ ->method('getAll')
+ ->will($this->returnValue($return));
+
+ $response = $this->controller->getAll();
+ $this->assertEquals($return, $response->getParams());
+ }
+
+
+} \ No newline at end of file
diff --git a/tests/index.php b/tests/index.php
deleted file mode 100644
index 6f3ff037d..000000000
--- a/tests/index.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-
-/**
-*
-OC_App::loadApp('news');
-class Test_News_MyTest extends UnitTestCase
-{
-
- public function testTest() {
- $this->assertTrue(false);
- }
-}
-*/