aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorVirtualTam <virtualtam+github@flibidi.net>2016-10-17 17:58:39 +0200
committerGitHub <noreply@github.com>2016-10-17 17:58:39 +0200
commit8406a4b670957b7d0450f6ea5e4f2e61c7114e8f (patch)
tree942421652643f6f340437939f76295f5d092afe1 /tests
parent209aa96e7e32d810db30d2eb437cef2280c5cad6 (diff)
parent44a718090d716e53c0e78bf3a0225fd2fb30071e (diff)
downloadShaarli-8406a4b670957b7d0450f6ea5e4f2e61c7114e8f.tar.gz
Shaarli-8406a4b670957b7d0450f6ea5e4f2e61c7114e8f.tar.zst
Shaarli-8406a4b670957b7d0450f6ea5e4f2e61c7114e8f.zip
Merge pull request #662 from virtualtam/fix/feed/self-link
Fix: return the proper value for the "self" feed attribute
Diffstat (limited to 'tests')
-rw-r--r--tests/FeedBuilderTest.php33
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}