mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Fixed HTTPTest when invoked through dev/tests/all or with GET parameters (see r98373) (from r98383)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102650 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
28fd09115a
commit
804c588215
@ -47,14 +47,17 @@ class HTTPTest extends SapphireTest {
|
||||
* Tests {@link HTTP::setGetVar()}
|
||||
*/
|
||||
public function testSetGetVar() {
|
||||
// HACK No easy way to get the current URL without the query string or fragment
|
||||
$base = Director::absoluteBaseURL() . 'dev/tests/HTTPTest';
|
||||
$currentURL = Director::absoluteURL($_SERVER['REQUEST_URI']);
|
||||
|
||||
// Hackery to work around volatile URL formats in test invocation
|
||||
$expected = $currentURL;
|
||||
$expected .= (strpos($currentURL, '?') === FALSE) ? '?' : '&';
|
||||
$expected .= 'foo=bar';
|
||||
$this->assertEquals(
|
||||
$base . '?foo=bar',
|
||||
$expected,
|
||||
HTTP::setGetVar('foo', 'bar'),
|
||||
'Omitting a URL falls back to current URL'
|
||||
);
|
||||
);
|
||||
|
||||
$this->assertEquals(
|
||||
Director::absoluteBaseURL() . 'relative/url?foo=bar',
|
||||
|
Loading…
Reference in New Issue
Block a user