53 lines
1.4 KiB
PHP
53 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
class www_SearchTest extends TestBaseApi
|
||
|
{
|
||
|
protected $urlPart = 'search.php';
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Some browsers using opensearch do "urlencode" on the terms,
|
||
|
* for example Firefox. Multiple terms separated with space
|
||
|
* appear as "foo+bar" in the URL.
|
||
|
*/
|
||
|
public function testMultipleTermsUrlEncoded()
|
||
|
{
|
||
|
$this->addBookmark(null, null, 0, null, 'unittest foo bar');
|
||
|
$res = $this->getRequest('/all/foo+bar')->send();
|
||
|
$this->assertSelectCount(
|
||
|
'.xfolkentry', true, $res->getBody(),
|
||
|
'No bookmark found'
|
||
|
);
|
||
|
|
||
|
$res = $this->getRequest('/all/baz+bat')->send();
|
||
|
$this->assertSelectCount(
|
||
|
'.xfolkentry', false, $res->getBody(),
|
||
|
'Bookmarks found'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Some browsers using opensearch do "rawurlencode" on the terms,
|
||
|
* for example Opera. Multiple terms separated with space
|
||
|
* appear as "foo%20bar" in the URL.
|
||
|
*/
|
||
|
public function testMultipleTermsRawUrlEncoded()
|
||
|
{
|
||
|
$this->addBookmark(null, null, 0, null, 'unittest foo bar');
|
||
|
$res = $this->getRequest('/all/foo bar')->send();
|
||
|
$this->assertSelectCount(
|
||
|
'.xfolkentry', true, $res->getBody(),
|
||
|
'No bookmark found'
|
||
|
);
|
||
|
|
||
|
$res = $this->getRequest('/all/baz bat')->send();
|
||
|
$this->assertSelectCount(
|
||
|
'.xfolkentry', false, $res->getBody(),
|
||
|
'Bookmarks found'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|