diff options
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/www/bookmarksTest.php | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/tests/www/bookmarksTest.php b/tests/www/bookmarksTest.php index ae82118..ac549d8 100755 --- a/tests/www/bookmarksTest.php +++ b/tests/www/bookmarksTest.php @@ -124,5 +124,33 @@ class www_bookmarksTest extends TestBaseApi          $this->assertNotContains('privateKey=', (string)$elements[0]['href']);      }//end testVerifyPrivateRSSLinkDoesNotExist + + +    /** +     * We once had the bug that URLs with special characters were escaped too +     * often. & -> & +     */ +    public function testAddressEncoding() +    { +        $this->addBookmark(null, 'http://example.org?foo&bar=baz'); + +        //get rid of bookmarks.php +        $this->url = $GLOBALS['unittestUrl']; + +        $html = $this->getRequest()->send()->getBody(); +        $x = simplexml_load_string($html); +        $ns = $x->getDocNamespaces(); +        $x->registerXPathNamespace('ns', reset($ns)); + +        $elements = $x->xpath('//ns:a[@class="taggedlink"]'); +        $this->assertEquals( +            1, count($elements), 'Number of links is not 1' +        ); +        $this->assertEquals( +            'http://example.org?foo&bar=baz', +            (string)$elements[0]['href'] +        ); +    } +  }//end class www_bookmarksTest  ?> | 
