summaryrefslogtreecommitdiffstats
path: root/tests/bl
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-20 21:48:22 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-21 00:31:18 +0100
commit6dab27a668b33f91efe5905d0bcb83d4b212ee86 (patch)
tree129ee8329c90eed20aa02c7bcfef5bd39c6425da /tests/bl
parentb9d98e336c29d15cbf669d7d735eff7c80b02414 (diff)
be nice
Diffstat (limited to 'tests/bl')
-rw-r--r--tests/bl/BlTest.php107
-rw-r--r--tests/bl/FeedBlTest.php98
2 files changed, 205 insertions, 0 deletions
diff --git a/tests/bl/BlTest.php b/tests/bl/BlTest.php
new file mode 100644
index 000000000..5dc16d5a2
--- /dev/null
+++ b/tests/bl/BlTest.php
@@ -0,0 +1,107 @@
+<?php
+
+/**
+* ownCloud - News
+*
+* @author Alessandro Cosentino
+* @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\Bl;
+
+require_once(__DIR__ . "/../classloader.php");
+
+
+use \OCA\News\Db\Folder;
+
+
+class TestBl extends BL {
+ public function __construct($mapper){
+ parent::__construct($mapper);
+ }
+}
+
+class BlTest extends \OCA\AppFramework\Utility\TestUtility {
+
+ protected $api;
+ protected $newsMapper;
+ protected $newsBl;
+
+ protected function setUp(){
+ $this->api = $this->getAPIMock();
+ $this->newsMapper = $this->getMock('\OCA\News\Db\NewsMapper',
+ array('update', 'delete', 'find'), array($this->api, 'test'));
+ $this->newsBl = new TestBl($this->newsMapper);
+ }
+
+
+ public function testDelete(){
+ $id = 5;
+ $user = 'ken';
+ $folder = new Folder();
+ $folder->setId($id);
+
+ $this->newsMapper->expects($this->once())
+ ->method('delete')
+ ->with($this->equalTo($folder));
+ $this->newsMapper->expects($this->once())
+ ->method('find')
+ ->with($this->equalTo($id), $this->equalTo($user))
+ ->will($this->returnValue($folder));
+
+ $result = $this->newsBl->delete($id, $user);
+ }
+
+
+ public function testFind(){
+ $id = 3;
+ $user = 'ken';
+
+ $this->newsMapper->expects($this->once())
+ ->method('find')
+ ->with($this->equalTo($id), $this->equalTo($user));
+
+ $result = $this->newsBl->find($id, $user);
+ }
+
+
+ public function testFindDoesNotExist(){
+ $ex = new \OCA\AppFramework\Db\DoesNotExistException('hi');
+
+ $this->newsMapper->expects($this->once())
+ ->method('find')
+ ->will($this->throwException($ex));
+
+ $this->setExpectedException('\OCA\News\Bl\BLException');
+ $this->newsBl->find(1, '');
+ }
+
+
+ public function testFindMultiple(){
+ $ex = new \OCA\AppFramework\Db\MultipleObjectsReturnedException('hi');
+
+ $this->newsMapper->expects($this->once())
+ ->method('find')
+ ->will($this->throwException($ex));
+
+ $this->setExpectedException('\OCA\News\Bl\BLException');
+ $this->newsBl->find(1, '');
+ }
+
+}
diff --git a/tests/bl/FeedBlTest.php b/tests/bl/FeedBlTest.php
new file mode 100644
index 000000000..01301b91f
--- /dev/null
+++ b/tests/bl/FeedBlTest.php
@@ -0,0 +1,98 @@
+<?php
+
+/**
+* ownCloud - News
+*
+* @author Alessandro Cosentino
+* @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\Bl;
+
+require_once(__DIR__ . "/../classloader.php");
+
+
+use \OCA\News\Db\Folder;
+
+
+class FolderBlTest extends \OCA\AppFramework\Utility\TestUtility {
+
+ protected $api;
+ protected $folderMapper;
+ protected $folderBl;
+
+ protected function setUp(){
+ $this->api = $this->getAPIMock();
+ $this->folderMapper = $this->getMock(
+ '\OCA\News\Db\NewsMapper',
+ array('findAllFromUser', 'insert', 'update', 'find'),
+ array($this->api, 'test'));
+ $this->folderBl = new FolderBl($this->folderMapper);
+ }
+
+
+ function testGetAll(){
+ $userId = 'jack';
+ $return = 'hi';
+ $this->folderMapper->expects($this->once())
+ ->method('findAllFromUser')
+ ->with($this->equalTo($userId))
+ ->will($this->returnValue($return));
+
+ $result = $this->folderBl->getAll($userId);
+
+ $this->assertEquals($return, $result);
+ }
+
+
+ public function testCreate(){
+ $folder = new Folder();
+ $folder->setName('hey');
+ $folder->setParentId(5);
+
+ $this->folderMapper->expects($this->once())
+ ->method('insert')
+ ->with($this->equalTo($folder))
+ ->will($this->returnValue($folder));
+
+ $result = $this->folderBl->create('hey', 5);
+
+ $this->assertEquals($folder, $result);
+ }
+
+
+ public function testSetOpened(){
+ $folder = new Folder();
+
+ $this->folderMapper->expects($this->once())
+ ->method('find')
+ ->with($this->equalTo(3))
+ ->will($this->returnValue($folder));
+
+ $this->folderMapper->expects($this->once())
+ ->method('update')
+ ->with($this->equalTo($folder));
+
+ $this->folderBl->setOpened(3, false, '');
+
+ $this->assertFalse($folder->getOpened());
+
+ }
+
+}