]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - tests/HttpUtils/GetHttpUrlTest.php
namespacing: move HTTP utilities along \Shaarli\Http\ classes
[github/shaarli/Shaarli.git] / tests / HttpUtils / GetHttpUrlTest.php
diff --git a/tests/HttpUtils/GetHttpUrlTest.php b/tests/HttpUtils/GetHttpUrlTest.php
deleted file mode 100644 (file)
index ea53de5..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-<?php
-/**
- * HttpUtils' tests
- */
-
-require_once 'application/HttpUtils.php';
-
-/**
- * Unitary tests for get_http_response()
- */
-class GetHttpUrlTest extends PHPUnit_Framework_TestCase
-{
-    /**
-     * Get an invalid local URL
-     */
-    public function testGetInvalidLocalUrl()
-    {
-        // Local
-        list($headers, $content) = get_http_response('/non/existent', 1);
-        $this->assertEquals('Invalid HTTP Url', $headers[0]);
-        $this->assertFalse($content);
-
-        // Non HTTP
-        list($headers, $content) = get_http_response('ftp://save.tld/mysave', 1);
-        $this->assertEquals('Invalid HTTP Url', $headers[0]);
-        $this->assertFalse($content);
-    }
-
-    /**
-     * Get an invalid remote URL
-     */
-    public function testGetInvalidRemoteUrl()
-    {
-        list($headers, $content) = @get_http_response('http://non.existent', 1);
-        $this->assertFalse($headers);
-        $this->assertFalse($content);
-    }
-
-    /**
-     * Test getAbsoluteUrl with relative target URL.
-     */
-    public function testGetAbsoluteUrlWithRelative()
-    {
-        $origin = 'http://non.existent/blabla/?test';
-        $target = '/stuff.php';
-
-        $expected = 'http://non.existent/stuff.php';
-        $this->assertEquals($expected, getAbsoluteUrl($origin, $target));
-
-        $target = 'stuff.php';
-        $expected = 'http://non.existent/blabla/stuff.php';
-        $this->assertEquals($expected, getAbsoluteUrl($origin, $target));
-    }
-
-    /**
-     * Test getAbsoluteUrl with absolute target URL.
-     */
-    public function testGetAbsoluteUrlWithAbsolute()
-    {
-        $origin = 'http://non.existent/blabla/?test';
-        $target = 'http://other.url/stuff.php';
-
-        $this->assertEquals($target, getAbsoluteUrl($origin, $target));
-    }
-}