summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSean Molenaar <SMillerDev@users.noreply.github.com>2019-03-17 08:23:37 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2019-03-17 08:23:37 +0100
commit2698214c4122d4f5f63f26f7a204035fe0d4f211 (patch)
treee1a033654736cc68f698af7110e8e17fdb0c2e55 /tests
parentf5e25d2edef3360ed7fcdc1ecc663cfb37b650b7 (diff)
fix/allow CDATA encoding (#428)
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Fetcher/FeedFetcherTest.php32
-rw-r--r--tests/Unit/Utility/ProxyConfigParserTest.php103
2 files changed, 17 insertions, 118 deletions
diff --git a/tests/Unit/Fetcher/FeedFetcherTest.php b/tests/Unit/Fetcher/FeedFetcherTest.php
index 8f031d365..0ae453c9c 100644
--- a/tests/Unit/Fetcher/FeedFetcherTest.php
+++ b/tests/Unit/Fetcher/FeedFetcherTest.php
@@ -113,6 +113,7 @@ class FeedFetcherTest extends TestCase
private $pub;
private $updated;
private $body;
+ private $parsed_body;
/**
* @var Author
*/
@@ -172,21 +173,22 @@ class FeedFetcherTest extends TestCase
$timeFactory,
$this->logger
);
- $this->url = 'http://tests';
-
- $this->permalink = 'http://permalink';
- $this->title = 'my&amp;lt;&apos; title';
- $this->guid = 'hey guid here';
- $this->guid_hash = 'df9a5f84e44bfe38cf44f6070d5b0250';
- $this->body = 'let the bodies hit the floor <a href="test">test</a>';
- $this->pub = 23111;
- $this->updated = 23444;
- $this->author = new Author();
+ $this->url = 'http://tests/';
+
+ $this->permalink = 'http://permalink';
+ $this->title = 'my&amp;lt;&apos; title';
+ $this->guid = 'hey guid here';
+ $this->guid_hash = 'df9a5f84e44bfe38cf44f6070d5b0250';
+ $this->body = '<![CDATA[let the bodies hit the floor <a href="test">test</a>]]>';
+ $this->parsed_body = 'let the bodies hit the floor <a href="test">test</a>';
+ $this->pub = 23111;
+ $this->updated = 23444;
+ $this->author = new Author();
$this->author->setName('&lt;boogieman');
- $this->enclosure = 'http://enclosure.you';
+ $this->enclosure = 'http://enclosure.you';
$this->feed_title = '&lt;a&gt;&amp;its a&lt;/a&gt; title';
- $this->feed_link = 'http://tests';
+ $this->feed_link = 'http://tests/';
$this->feed_image = '/an/image';
$this->web_favicon = 'http://anon.google.com';
$this->modified = $this->getMockBuilder('\DateTime')->getMock();
@@ -231,9 +233,9 @@ class FeedFetcherTest extends TestCase
public function testFetchAccount()
{
- $this->__setUpReader('http://account%40email.com:F9sEU%2ARt%25%3AKFK8HMHT%26@tests');
+ $this->__setUpReader('http://account%40email.com:F9sEU%2ARt%25%3AKFK8HMHT%26@tests/');
$item = $this->_createItem();
- $feed = $this->_createFeed('de-DE', false, 'http://account%40email.com:F9sEU%2ARt%25%3AKFK8HMHT%26@tests');
+ $feed = $this->_createFeed('de-DE', false, 'http://account%40email.com:F9sEU%2ARt%25%3AKFK8HMHT%26@tests/');
$this->_mockIterator($this->feed_mock, [$this->item_mock]);
$result = $this->fetcher->fetch($this->url, false, null, 'account@email.com', 'F9sEU*Rt%:KFK8HMHT&');
@@ -477,7 +479,7 @@ class FeedFetcherTest extends TestCase
$item->setTitle('my<\' title');
$item->setGuid($this->guid);
$item->setGuidHash($this->guid_hash);
- $item->setBody($this->body);
+ $item->setBody($this->parsed_body);
$item->setRtl(false);
$item->setLastModified(3);
$item->setPubDate(3);
diff --git a/tests/Unit/Utility/ProxyConfigParserTest.php b/tests/Unit/Utility/ProxyConfigParserTest.php
deleted file mode 100644
index 1433558e7..000000000
--- a/tests/Unit/Utility/ProxyConfigParserTest.php
+++ /dev/null
@@ -1,103 +0,0 @@
-<?php
-/**
- * Nextcloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright 2012 Alessandro Cosentino
- * @copyright 2012-2014 Bernhard Posselt
- */
-
-namespace OCA\News\Tests\Unit\Utility;
-
-
-use OCA\News\Utility\ProxyConfigParser;
-use OCP\IConfig;
-use PHPUnit\Framework\TestCase;
-
-class ProxyConfigParserTest extends TestCase
-{
-
- private $config;
- private $feedService;
- private $itemService;
- private $parser;
-
- protected function setUp()
- {
- $this->config = $this->getMockBuilder(IConfig::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->parser = new ProxyConfigParser($this->config);
- }
-
- private function setExpectedProxy($proxy=null, $userpasswd=null)
- {
- $this->config->expects($this->at(0))
- ->method('getSystemValue')
- ->with($this->equalTo('proxy'))
- ->will($this->returnValue($proxy));
- $this->config->expects($this->at(1))
- ->method('getSystemValue')
- ->with($this->equalTo('proxyuserpwd'))
- ->will($this->returnValue($userpasswd));
- }
-
- public function testParsesNoProxy()
- {
- $expected = [
- 'host' => null,
- 'port' => null,
- 'user' => null,
- 'password' => null
- ];
- $this->setExpectedProxy();
- $result = $this->parser->parse();
- $this->assertEquals($expected, $result);
- }
-
-
- public function testParsesHost()
- {
- $expected = [
- 'host' => 'http://google.com/mytest',
- 'port' => null,
- 'user' => null,
- 'password' => null
- ];
- $this->setExpectedProxy('http://google.com/mytest');
- $result = $this->parser->parse();
- $this->assertEquals($expected, $result);
- }
-
-
- public function testParsesHostAndPort()
- {
- $expected = [
- 'host' => 'http://google.com/mytest',
- 'port' => 89,
- 'user' => null,
- 'password' => null
- ];
- $this->setExpectedProxy('http://google.com:89/mytest');
- $result = $this->parser->parse();
- $this->assertEquals($expected, $result);
- }
-
-
- public function testParsesUser()
- {
- $expected = [
- 'host' => null,
- 'port' => null,
- 'user' => 'john',
- 'password' => 'doe:hey'
- ];
- $this->setExpectedProxy(null, 'john:doe:hey');
- $result = $this->parser->parse();
- $this->assertEquals($expected, $result);
- }
-} \ No newline at end of file