mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
60f75c5ca4
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@71172 467b73ca-7a2a-4603-9d3b-597d59a354a9
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Tests the {@link HTTP} class
|
|
*
|
|
* @package sapphire
|
|
* @subpackage tests
|
|
*/
|
|
class HTTPTest extends SapphireTest {
|
|
|
|
/**
|
|
* Tests {@link HTTP::getLinksIn()}
|
|
*/
|
|
public function testGetLinksIn() {
|
|
$content = '
|
|
<h2>My page</h2>
|
|
<p>A boy went <a href="home/">home</a> to see his <span><a href="mother/">mother</a></span>.</p>
|
|
';
|
|
|
|
$links = HTTP::getLinksIn($content);
|
|
|
|
$this->assertTrue(is_array($links));
|
|
$this->assertTrue(count($links) == 2);
|
|
}
|
|
|
|
/**
|
|
* Tests {@link HTTP::setGetVar()}
|
|
*/
|
|
public function testSetGetVar() {
|
|
$expected = array (
|
|
'/?foo=bar' => array('foo', 'bar', '/'),
|
|
'/?baz=buz&foo=bar' => array('foo', 'bar', '/?baz=buz'),
|
|
'/?buz=baz&foo=baz' => array('foo', 'baz', '/?foo=bar&buz=baz'),
|
|
'/?foo=var' => array('foo', 'var', '/?foo=&foo=bar'),
|
|
'/?foo[test]=var' => array('foo[test]', 'var', '/?foo[test]=another')
|
|
);
|
|
|
|
foreach($expected as $result => $args) {
|
|
$this->assertEquals(
|
|
call_user_func_array(array('HTTP', 'setGetVar'), $args), str_replace('&', '&', $result)
|
|
);
|
|
}
|
|
}
|
|
|
|
}
|