]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tests/HttpUtils/GetHttpUrlTest.php
Merge pull request #432 from ArthurHoaro/title-retrieve
[github/shaarli/Shaarli.git] / tests / HttpUtils / GetHttpUrlTest.php
1 <?php
2 /**
3 * HttpUtils' tests
4 */
5
6 require_once 'application/HttpUtils.php';
7
8 /**
9 * Unitary tests for get_http_response()
10 */
11 class GetHttpUrlTest extends PHPUnit_Framework_TestCase
12 {
13 /**
14 * Get an invalid local URL
15 */
16 public function testGetInvalidLocalUrl()
17 {
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);
27 }
28
29 /**
30 * Get an invalid remote URL
31 */
32 public function testGetInvalidRemoteUrl()
33 {
34 list($headers, $content) = @get_http_response('http://non.existent', 1);
35 $this->assertFalse($headers);
36 $this->assertFalse($content);
37 }
38 }