aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/HttpUtilsTest.php
blob: 76092b80edff587c869f8b908d58c0028677b079 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
 * HttpUtils' tests
 */

require_once 'application/HttpUtils.php';

/**
 * Unitary tests for get_http_url()
 */
class GetHttpUrlTest extends PHPUnit_Framework_TestCase
{
    /**
     * Get an invalid local URL
     */
    public function testGetInvalidLocalUrl()
    {
        list($headers, $content) = get_http_url('/non/existent', 1);
        $this->assertEquals('HTTP Error', $headers[0]);
        $this->assertRegexp(
            '/failed to open stream: No such file or directory/',
            $content
        );
    }

    /**
     * Get an invalid remote URL
     */
    public function testGetInvalidRemoteUrl()
    {
        list($headers, $content) = get_http_url('http://non.existent', 1);
        $this->assertEquals('HTTP Error', $headers[0]);
        $this->assertRegexp(
            '/Name or service not known/',
            $content
        );
    }
}