summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-05-02 13:45:34 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-05-02 13:45:34 +0200
commitc5dde50a7166f6e24776b680ea8da1c0e78a7543 (patch)
tree7ade52e5e6e929a87dfb9afca547d6cacc480dce /tests
parent2dfab0dbec8a1868c2287aee7f7a93a56d9a301c (diff)
implemented first feeds get all method
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/external/FeedAPITest.php137
1 files changed, 137 insertions, 0 deletions
diff --git a/tests/unit/external/FeedAPITest.php b/tests/unit/external/FeedAPITest.php
new file mode 100644
index 000000000..8ceafd016
--- /dev/null
+++ b/tests/unit/external/FeedAPITest.php
@@ -0,0 +1,137 @@
+<?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\External;
+
+use \OCA\News\BusinessLayer\BusinessLayerException;
+
+use \OCA\News\Db\Folder;
+use \OCA\News\Db\Feed;
+use \OCA\News\Db\Item;
+
+require_once(__DIR__ . "/../../classloader.php");
+
+
+class FeedAPITest extends \PHPUnit_Framework_TestCase {
+
+ private $folderBusinessLayer;
+ private $feedBusinessLayer;
+ private $itemBusinessLayer;
+ private $feedAPI;
+ private $api;
+ private $user;
+
+ protected function setUp() {
+ $this->api = $this->folderBusinessLayer = $this->getMockBuilder(
+ '\OCA\AppFramework\Core\API')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->folderBusinessLayer = $this->getMockBuilder(
+ '\OCA\News\BusinessLayer\FolderBusinessLayer')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->feedBusinessLayer = $this->getMockBuilder(
+ '\OCA\News\BusinessLayer\FeedBusinessLayer')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->itemBusinessLayer = $this->getMockBuilder(
+ '\OCA\News\BusinessLayer\ItemBusinessLayer')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->feedAPI = new FeedAPI(
+ $this->api,
+ $this->folderBusinessLayer,
+ $this->feedBusinessLayer,
+ $this->itemBusinessLayer
+ );
+ $this->user = 'tom';
+ }
+
+
+ public function testGetAll() {
+ $feeds = array(
+ new Feed()
+ );
+ $starredCount = 3;
+ $newestItemId = 2;
+
+ $this->api->expects($this->once())
+ ->method('getUserId')
+ ->will($this->returnValue($this->user));
+ $this->itemBusinessLayer->expects($this->once())
+ ->method('starredCount')
+ ->with($this->equalTo($this->user))
+ ->will($this->returnValue($starredCount));
+ $this->itemBusinessLayer->expects($this->once())
+ ->method('getNewestItemId')
+ ->with($this->equalTo($this->user))
+ ->will($this->returnValue($newestItemId));
+ $this->feedBusinessLayer->expects($this->once())
+ ->method('findAll')
+ ->with($this->equalTo($this->user))
+ ->will($this->returnValue($feeds));
+
+ $response = $this->feedAPI->getAll();
+
+ $this->assertEquals(array(
+ 'feeds' => array($feeds[0]->toAPI()),
+ 'starredCount' => $starredCount,
+ 'newestItemId' => $newestItemId
+ ), $response);
+ }
+
+
+ public function testGetAllNoNewestItemId() {
+ $feeds = array(
+ new Feed()
+ );
+ $starredCount = 3;
+
+ $this->api->expects($this->once())
+ ->method('getUserId')
+ ->will($this->returnValue($this->user));
+ $this->itemBusinessLayer->expects($this->once())
+ ->method('starredCount')
+ ->with($this->equalTo($this->user))
+ ->will($this->returnValue($starredCount));
+ $this->itemBusinessLayer->expects($this->once())
+ ->method('getNewestItemId')
+ ->with($this->equalTo($this->user))
+ ->will($this->throwException(new BusinessLayerException('')));
+ $this->feedBusinessLayer->expects($this->once())
+ ->method('findAll')
+ ->with($this->equalTo($this->user))
+ ->will($this->returnValue($feeds));
+
+ $response = $this->feedAPI->getAll();
+
+ $this->assertEquals(array(
+ 'feeds' => array($feeds[0]->toAPI()),
+ 'starredCount' => $starredCount,
+ ), $response);
+ }
+
+
+} \ No newline at end of file