]>
Commit | Line | Data |
---|---|---|
cd5327be V |
1 | <?php |
2 | ||
3 | require_once 'application/NetscapeBookmarkUtils.php'; | |
4 | ||
5 | /** | |
d6d85587 | 6 | * Netscape bookmark export |
cd5327be | 7 | */ |
d6d85587 | 8 | class BookmarkExportTest extends PHPUnit_Framework_TestCase |
cd5327be V |
9 | { |
10 | /** | |
11 | * @var string datastore to test write operations | |
12 | */ | |
13 | protected static $testDatastore = 'sandbox/datastore.php'; | |
14 | ||
15 | /** | |
16 | * @var ReferenceLinkDB instance. | |
17 | */ | |
18 | protected static $refDb = null; | |
19 | ||
20 | /** | |
21 | * @var LinkDB private LinkDB instance. | |
22 | */ | |
23 | protected static $linkDb = null; | |
24 | ||
25 | /** | |
26 | * Instantiate reference data | |
27 | */ | |
28 | public static function setUpBeforeClass() | |
29 | { | |
30 | self::$refDb = new ReferenceLinkDB(); | |
31 | self::$refDb->write(self::$testDatastore); | |
32 | self::$linkDb = new LinkDB(self::$testDatastore, true, false); | |
33 | } | |
34 | ||
35 | /** | |
36 | * Attempt to export an invalid link selection | |
37 | * @expectedException Exception | |
38 | * @expectedExceptionMessageRegExp /Invalid export selection/ | |
39 | */ | |
40 | public function testFilterAndFormatInvalid() | |
41 | { | |
bb4a23aa | 42 | NetscapeBookmarkUtils::filterAndFormat(self::$linkDb, 'derp', false, ''); |
cd5327be V |
43 | } |
44 | ||
45 | /** | |
46 | * Prepare all links for export | |
47 | */ | |
48 | public function testFilterAndFormatAll() | |
49 | { | |
bb4a23aa | 50 | $links = NetscapeBookmarkUtils::filterAndFormat(self::$linkDb, 'all', false, ''); |
cd5327be V |
51 | $this->assertEquals(self::$refDb->countLinks(), sizeof($links)); |
52 | foreach ($links as $link) { | |
53 | $date = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $link['linkdate']); | |
54 | $this->assertEquals( | |
55 | $date->getTimestamp(), | |
56 | $link['timestamp'] | |
57 | ); | |
58 | $this->assertEquals( | |
59 | str_replace(' ', ',', $link['tags']), | |
60 | $link['taglist'] | |
61 | ); | |
62 | } | |
63 | } | |
64 | ||
65 | /** | |
66 | * Prepare private links for export | |
67 | */ | |
68 | public function testFilterAndFormatPrivate() | |
69 | { | |
bb4a23aa | 70 | $links = NetscapeBookmarkUtils::filterAndFormat(self::$linkDb, 'private', false, ''); |
cd5327be V |
71 | $this->assertEquals(self::$refDb->countPrivateLinks(), sizeof($links)); |
72 | foreach ($links as $link) { | |
73 | $date = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $link['linkdate']); | |
74 | $this->assertEquals( | |
75 | $date->getTimestamp(), | |
76 | $link['timestamp'] | |
77 | ); | |
78 | $this->assertEquals( | |
79 | str_replace(' ', ',', $link['tags']), | |
80 | $link['taglist'] | |
81 | ); | |
82 | } | |
83 | } | |
84 | ||
85 | /** | |
86 | * Prepare public links for export | |
87 | */ | |
88 | public function testFilterAndFormatPublic() | |
89 | { | |
bb4a23aa | 90 | $links = NetscapeBookmarkUtils::filterAndFormat(self::$linkDb, 'public', false, ''); |
cd5327be V |
91 | $this->assertEquals(self::$refDb->countPublicLinks(), sizeof($links)); |
92 | foreach ($links as $link) { | |
93 | $date = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $link['linkdate']); | |
94 | $this->assertEquals( | |
95 | $date->getTimestamp(), | |
96 | $link['timestamp'] | |
97 | ); | |
98 | $this->assertEquals( | |
99 | str_replace(' ', ',', $link['tags']), | |
100 | $link['taglist'] | |
101 | ); | |
102 | } | |
103 | } | |
bb4a23aa V |
104 | |
105 | /** | |
106 | * Do not prepend notes with the Shaarli index's URL | |
107 | */ | |
108 | public function testFilterAndFormatDoNotPrependNoteUrl() | |
109 | { | |
110 | $links = NetscapeBookmarkUtils::filterAndFormat(self::$linkDb, 'public', false, ''); | |
111 | $this->assertEquals( | |
112 | '?WDWyig', | |
113 | $links[0]['url'] | |
114 | ); | |
115 | } | |
116 | ||
117 | /** | |
118 | * Prepend notes with the Shaarli index's URL | |
119 | */ | |
120 | public function testFilterAndFormatPrependNoteUrl() | |
121 | { | |
122 | $indexUrl = 'http://localhost:7469/shaarli/'; | |
123 | $links = NetscapeBookmarkUtils::filterAndFormat( | |
124 | self::$linkDb, | |
125 | 'public', | |
126 | true, | |
127 | $indexUrl | |
128 | ); | |
129 | $this->assertEquals( | |
130 | $indexUrl . '?WDWyig', | |
131 | $links[0]['url'] | |
132 | ); | |
133 | } | |
cd5327be | 134 | } |