summaryrefslogtreecommitdiffstats
path: root/tests/unit/utility/OPMLExporterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/utility/OPMLExporterTest.php')
-rw-r--r--tests/unit/utility/OPMLExporterTest.php172
1 files changed, 86 insertions, 86 deletions
diff --git a/tests/unit/utility/OPMLExporterTest.php b/tests/unit/utility/OPMLExporterTest.php
index fe7b142e8..5d6f849fb 100644
--- a/tests/unit/utility/OPMLExporterTest.php
+++ b/tests/unit/utility/OPMLExporterTest.php
@@ -19,92 +19,92 @@ use \OCA\News\Db\Feed;
class OPMLExporterTest extends \PHPUnit_Framework_TestCase {
- private $exporter;
- private $feed1;
- private $feed2;
-
- protected function setUp() {
- $this->exporter = new OPMLExporter();
- $this->folder1 = new Folder();
- $this->folder1->setId(3);
- $this->folder1->setParentId(0);
- $this->folder1->setName('Örgendwas');
- $this->folder2 = new Folder();
- $this->folder2->setId(1);
- $this->folder2->setParentId(3);
- $this->folder2->setName('a ergendwas');
- $this->feed1 = new Feed();
- $this->feed1->setUrl('url 1');
- $this->feed1->setTitle('tötel');
- $this->feed1->setFolderId(0);
- $this->feed2 = new Feed();
- $this->feed2->setUrl('url');
- $this->feed2->setTitle('ttel df');
- $this->feed2->setLink('goooooogel');
- $this->feed2->setFolderId(1);
- }
-
-
- private function getAttribute($item, $name) {
- // used to fix scrutinizer errors
- if ($item instanceof \DOMElement) {
- return $item->getAttribute($name);
- } else {
- return null;
- }
- }
-
-
- public function testBuildEmpty(){
- $result = $this->exporter->build([], []);
- $xpath = new \DOMXpath($result);
-
- $this->assertEquals(0, $xpath->query('//outline')->length);
- }
-
-
- public function testBuildReturnsFolders() {
- $result = $this->exporter->build([$this->folder1, $this->folder2], []);
- $xpath = new \DOMXpath($result);
- $elems = $xpath->query('/opml/body/outline');
-
- $this->assertEquals(2, $elems->length);
- $this->assertEquals($this->folder1->getName(), $this->getAttribute($elems->item(0), 'title'));
- $this->assertEquals($this->folder1->getName(), $this->getAttribute($elems->item(0), 'text'));
- $this->assertEquals($this->folder2->getName(), $this->getAttribute($elems->item(1), 'title'));
- $this->assertEquals($this->folder2->getName(), $this->getAttribute($elems->item(1), 'text'));
- }
-
-
- public function testBuildReturnsOnlyOneFeedIfParentFolderNotThere() {
- $result = $this->exporter->build([], [$this->feed1, $this->feed2]);
- $xpath = new \DOMXpath($result);
- $elems = $xpath->query('//outline');
-
- $this->assertEquals(1, $elems->length);
- $this->assertEquals($this->feed1->getTitle(), $this->getAttribute($elems->item(0), 'title'));
- $this->assertEquals($this->feed1->getTitle(), $this->getAttribute($elems->item(0), 'text'));
- $this->assertEquals($this->feed1->getUrl(), $this->getAttribute($elems->item(0), 'xmlUrl'));
- $this->assertEquals('', $this->getAttribute($elems->item(0), 'htmlUrl'));
- }
-
-
- public function testBuildReturnsFeedsAndFolders() {
- $result = $this->exporter->build(
- [$this->folder1, $this->folder2],
- [$this->feed1, $this->feed2]
- );
- $xpath = new \DOMXpath($result);
- $elems = $xpath->query('/opml/body/outline');
-
- $this->assertEquals(3, $elems->length);
-
-
- $this->assertEquals($this->folder1->getName(), $this->getAttribute($elems->item(0), 'title'));
- $this->assertEquals($this->folder2->getName(), $this->getAttribute($elems->item(1), 'text'));
- $this->assertEquals($this->feed1->getUrl(), $this->getAttribute($elems->item(2), 'xmlUrl'));
- $this->assertEquals($this->feed2->getLink(), $this->getAttribute($elems->item(1)->childNodes->item(0), 'htmlUrl'));
- }
+ private $exporter;
+ private $feed1;
+ private $feed2;
+
+ protected function setUp() {
+ $this->exporter = new OPMLExporter();
+ $this->folder1 = new Folder();
+ $this->folder1->setId(3);
+ $this->folder1->setParentId(0);
+ $this->folder1->setName('Örgendwas');
+ $this->folder2 = new Folder();
+ $this->folder2->setId(1);
+ $this->folder2->setParentId(3);
+ $this->folder2->setName('a ergendwas');
+ $this->feed1 = new Feed();
+ $this->feed1->setUrl('url 1');
+ $this->feed1->setTitle('tötel');
+ $this->feed1->setFolderId(0);
+ $this->feed2 = new Feed();
+ $this->feed2->setUrl('url');
+ $this->feed2->setTitle('ttel df');
+ $this->feed2->setLink('goooooogel');
+ $this->feed2->setFolderId(1);
+ }
+
+
+ private function getAttribute($item, $name) {
+ // used to fix scrutinizer errors
+ if ($item instanceof \DOMElement) {
+ return $item->getAttribute($name);
+ } else {
+ return null;
+ }
+ }
+
+
+ public function testBuildEmpty(){
+ $result = $this->exporter->build([], []);
+ $xpath = new \DOMXpath($result);
+
+ $this->assertEquals(0, $xpath->query('//outline')->length);
+ }
+
+
+ public function testBuildReturnsFolders() {
+ $result = $this->exporter->build([$this->folder1, $this->folder2], []);
+ $xpath = new \DOMXpath($result);
+ $elems = $xpath->query('/opml/body/outline');
+
+ $this->assertEquals(2, $elems->length);
+ $this->assertEquals($this->folder1->getName(), $this->getAttribute($elems->item(0), 'title'));
+ $this->assertEquals($this->folder1->getName(), $this->getAttribute($elems->item(0), 'text'));
+ $this->assertEquals($this->folder2->getName(), $this->getAttribute($elems->item(1), 'title'));
+ $this->assertEquals($this->folder2->getName(), $this->getAttribute($elems->item(1), 'text'));
+ }
+
+
+ public function testBuildReturnsOnlyOneFeedIfParentFolderNotThere() {
+ $result = $this->exporter->build([], [$this->feed1, $this->feed2]);
+ $xpath = new \DOMXpath($result);
+ $elems = $xpath->query('//outline');
+
+ $this->assertEquals(1, $elems->length);
+ $this->assertEquals($this->feed1->getTitle(), $this->getAttribute($elems->item(0), 'title'));
+ $this->assertEquals($this->feed1->getTitle(), $this->getAttribute($elems->item(0), 'text'));
+ $this->assertEquals($this->feed1->getUrl(), $this->getAttribute($elems->item(0), 'xmlUrl'));
+ $this->assertEquals('', $this->getAttribute($elems->item(0), 'htmlUrl'));
+ }
+
+
+ public function testBuildReturnsFeedsAndFolders() {
+ $result = $this->exporter->build(
+ [$this->folder1, $this->folder2],
+ [$this->feed1, $this->feed2]
+ );
+ $xpath = new \DOMXpath($result);
+ $elems = $xpath->query('/opml/body/outline');
+
+ $this->assertEquals(3, $elems->length);
+
+
+ $this->assertEquals($this->folder1->getName(), $this->getAttribute($elems->item(0), 'title'));
+ $this->assertEquals($this->folder2->getName(), $this->getAttribute($elems->item(1), 'text'));
+ $this->assertEquals($this->feed1->getUrl(), $this->getAttribute($elems->item(2), 'xmlUrl'));
+ $this->assertEquals($this->feed2->getLink(), $this->getAttribute($elems->item(1)->childNodes->item(0), 'htmlUrl'));
+ }
} \ No newline at end of file