]>
Commit | Line | Data |
---|---|---|
451314eb V |
1 | <?php |
2 | /** | |
3 | * HttpUtils' tests | |
4 | */ | |
5 | ||
6 | require_once 'application/HttpUtils.php'; | |
7 | ||
8 | /** | |
1557cefb | 9 | * Unitary tests for get_http_response() |
451314eb V |
10 | */ |
11 | class GetHttpUrlTest extends PHPUnit_Framework_TestCase | |
12 | { | |
13 | /** | |
14 | * Get an invalid local URL | |
15 | */ | |
16 | public function testGetInvalidLocalUrl() | |
17 | { | |
1557cefb A |
18 | // Local |
19 | list($headers, $content) = get_http_response('/non/existent', 1); | |
20 | $this->assertEquals('Invalid HTTP Url', $headers[0]); | |
21 | $this->assertFalse($content); | |
22 | ||
23 | // Non HTTP | |
24 | list($headers, $content) = get_http_response('ftp://save.tld/mysave', 1); | |
25 | $this->assertEquals('Invalid HTTP Url', $headers[0]); | |
26 | $this->assertFalse($content); | |
451314eb V |
27 | } |
28 | ||
29 | /** | |
30 | * Get an invalid remote URL | |
31 | */ | |
32 | public function testGetInvalidRemoteUrl() | |
33 | { | |
1557cefb A |
34 | list($headers, $content) = @get_http_response('http://non.existent', 1); |
35 | $this->assertFalse($headers); | |
36 | $this->assertFalse($content); | |
451314eb | 37 | } |
ce7b0b64 A |
38 | |
39 | /** | |
40 | * Test getAbsoluteUrl with relative target URL. | |
41 | */ | |
42 | public function testGetAbsoluteUrlWithRelative() | |
43 | { | |
44 | $origin = 'http://non.existent/blabla/?test'; | |
45 | $target = '/stuff.php'; | |
46 | ||
47 | $expected = 'http://non.existent/stuff.php'; | |
48 | $this->assertEquals($expected, getAbsoluteUrl($origin, $target)); | |
49 | ||
50 | $target = 'stuff.php'; | |
51 | $expected = 'http://non.existent/blabla/stuff.php'; | |
52 | $this->assertEquals($expected, getAbsoluteUrl($origin, $target)); | |
53 | } | |
54 | ||
55 | /** | |
56 | * Test getAbsoluteUrl with absolute target URL. | |
57 | */ | |
58 | public function testGetAbsoluteUrlWithAbsolute() | |
59 | { | |
60 | $origin = 'http://non.existent/blabla/?test'; | |
61 | $target = 'http://other.url/stuff.php'; | |
62 | ||
63 | $this->assertEquals($target, getAbsoluteUrl($origin, $target)); | |
64 | } | |
451314eb | 65 | } |