summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Utility/OPMLExporterTest.php
blob: 7f2c7dfdfee32a31b2736e9d32b04f0075f8caa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?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\Db\Folder;
use \OCA\News\Db\Feed;
use OCA\News\Utility\OPMLExporter;


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')
        );
    }


}