summaryrefslogtreecommitdiffstats
path: root/tests/unit/utility/FetcherTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/utility/FetcherTest.php')
-rw-r--r--tests/unit/utility/FetcherTest.php108
1 files changed, 0 insertions, 108 deletions
diff --git a/tests/unit/utility/FetcherTest.php b/tests/unit/utility/FetcherTest.php
deleted file mode 100644
index 8a57c9193..000000000
--- a/tests/unit/utility/FetcherTest.php
+++ /dev/null
@@ -1,108 +0,0 @@
-<?php
-
-/**
-* ownCloud - News
-*
-* @author Alessandro Cosentino
-* @author Bernhard Posselt
-* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
-* @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 OCA\News\Utility;
-
-require_once(__DIR__ . "/../../classloader.php");
-
-
-class FetcherTest extends \OCA\AppFramework\Utility\TestUtility {
-
- private $fetcher;
-
- protected function setUp(){
- $this->fetcher = new Fetcher();
- }
-
-
- public function testFetch(){
- $url = 'hi';
- $mockFetcher = $this->getMockBuilder('\OCA\News\Utility\IFeedFetcher')
- ->disableOriginalConstructor()
- ->getMock();
- $mockFetcher->expects($this->once())
- ->method('canHandle')
- ->with($this->equalTo($url))
- ->will($this->returnValue(true));
- $this->fetcher->registerFetcher($mockFetcher);
-
- $this->fetcher->fetch($url);
- }
-
-
- public function testMultipleFetchers(){
- $url = 'hi';
- $mockFetcher = $this->getMockBuilder('\OCA\News\Utility\IFeedFetcher')
- ->disableOriginalConstructor()
- ->getMock();
- $mockFetcher->expects($this->once())
- ->method('canHandle')
- ->with($this->equalTo($url))
- ->will($this->returnValue(false));
- $mockFetcher2 = $this->getMockBuilder('\OCA\News\Utility\IFeedFetcher')
- ->disableOriginalConstructor()
- ->getMock();
- $mockFetcher2->expects($this->once())
- ->method('canHandle')
- ->with($this->equalTo($url))
- ->will($this->returnValue(true));
-
- $this->fetcher->registerFetcher($mockFetcher);
- $this->fetcher->registerFetcher($mockFetcher2);
-
- $this->fetcher->fetch($url);
- }
-
-
- public function testMultipleFetchersOnlyOneShouldHandle(){
- $url = 'hi';
- $return = 'zeas';
- $mockFetcher = $this->getMockBuilder('\OCA\News\Utility\IFeedFetcher')
- ->disableOriginalConstructor()
- ->getMock();
- $mockFetcher->expects($this->once())
- ->method('canHandle')
- ->with($this->equalTo($url))
- ->will($this->returnValue(true));
- $mockFetcher->expects($this->once())
- ->method('fetch')
- ->with($this->equalTo($url))
- ->will($this->returnValue($return));
- $mockFetcher2 = $this->getMockBuilder('\OCA\News\Utility\IFeedFetcher')
- ->disableOriginalConstructor()
- ->getMock();
- $mockFetcher2->expects($this->never())
- ->method('canHandle');
-
- $this->fetcher->registerFetcher($mockFetcher);
- $this->fetcher->registerFetcher($mockFetcher2);
-
- $result = $this->fetcher->fetch($url);
-
- $this->assertEquals($return, $result);
- }
-
-
-} \ No newline at end of file