diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/FeedBuilderTest.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/FeedBuilderTest.php b/tests/FeedBuilderTest.php index c9ff397d..aa57f44e 100644 --- a/tests/FeedBuilderTest.php +++ b/tests/FeedBuilderTest.php | |||
@@ -217,4 +217,37 @@ class FeedBuilderTest extends PHPUnit_Framework_TestCase | |||
217 | $this->assertEquals(ReferenceLinkDB::$NB_LINKS_TOTAL, count($data['links'])); | 217 | $this->assertEquals(ReferenceLinkDB::$NB_LINKS_TOTAL, count($data['links'])); |
218 | $this->assertEquals('http://pubsubhub.io', $data['pubsubhub_url']); | 218 | $this->assertEquals('http://pubsubhub.io', $data['pubsubhub_url']); |
219 | } | 219 | } |
220 | |||
221 | /** | ||
222 | * Test buildData when Shaarli is served from a subdirectory | ||
223 | */ | ||
224 | public function testBuildDataServerSubdir() | ||
225 | { | ||
226 | $serverInfo = array( | ||
227 | 'HTTPS' => 'Off', | ||
228 | 'SERVER_NAME' => 'host.tld', | ||
229 | 'SERVER_PORT' => '8080', | ||
230 | 'SCRIPT_NAME' => '/~user/shaarli/index.php', | ||
231 | 'REQUEST_URI' => '/~user/shaarli/index.php?do=feed', | ||
232 | ); | ||
233 | $feedBuilder = new FeedBuilder( | ||
234 | self::$linkDB, | ||
235 | FeedBuilder::$FEED_ATOM, | ||
236 | $serverInfo, | ||
237 | null, | ||
238 | false | ||
239 | ); | ||
240 | $feedBuilder->setLocale(self::$LOCALE); | ||
241 | $data = $feedBuilder->buildData(); | ||
242 | |||
243 | $this->assertEquals( | ||
244 | 'http://host.tld:8080/~user/shaarli/index.php?do=feed', | ||
245 | $data['self_link'] | ||
246 | ); | ||
247 | |||
248 | // Test first link (note link) | ||
249 | $link = array_shift($data['links']); | ||
250 | $this->assertEquals('http://host.tld:8080/~user/shaarli/?WDWyig', $link['guid']); | ||
251 | $this->assertEquals('http://host.tld:8080/~user/shaarli/?WDWyig', $link['url']); | ||
252 | } | ||
220 | } | 253 | } |