This commit is contained in:
Bernhard Posselt 2013-04-19 15:00:25 +02:00
Родитель a841116494
Коммит 9bb05d9733
4 изменённых файлов: 52 добавлений и 5 удалений

Просмотреть файл

@ -70,7 +70,6 @@ class FeedBusinessLayerTest extends \OCA\AppFramework\Utility\TestUtility {
$timeFactory);
$this->user = 'jack';
$response = 'hi';
}

Просмотреть файл

@ -97,11 +97,11 @@ class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility {
$this->url = 'tests';
$this->permalink = 'http://permalink';
$this->title = 'my title';
$this->title = 'my title<';
$this->guid = 'hey guid here';
$this->body = 'let the bodies hit the floor';
$this->pub = 23111;
$this->author = 'boogieman&lte;';
$this->author = '<boogieman';
$this->enclosureLink = 'http://enclosure.you';
$this->feedTitle = '&lte;its a title';
@ -172,7 +172,7 @@ class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility {
$item->setStatus(0);
$item->setUnread();
$item->setUrl($this->permalink);
$item->setTitle($this->title);
$item->setTitle(html_entity_decode($this->title));
$item->setGuid($this->guid);
$item->setGuidHash(md5($this->guid));
$item->setBody($this->body);

Просмотреть файл

@ -0,0 +1,48 @@
<?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\Utility;
use \OCA\News\Db\Folder;
use \OCA\News\Db\Feed;
require_once(__DIR__ . "/../../classloader.php");
class OPMLExporterTest extends \OCA\AppFramework\Utility\TestUtility {
private $exporter;
protected function setUp() {
$this->exporter = new OPMLExporter();
}
public function testBuildEmpty(){
$result = $this->exporter->build(array(), array());
}
}

Просмотреть файл

@ -120,7 +120,7 @@ class FeedFetcher implements IFeedFetcher {
$author = $simplePieItem->get_author();
if ($author !== null) {
$item->setAuthor($author->get_name());
$item->setAuthor(html_entity_decode($author->get_name()));
}
// TODO: make it work for video files also