diff options
author | VirtualTam <virtualtam@flibidi.net> | 2018-12-03 00:34:53 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2019-01-12 22:47:48 +0100 |
commit | 51753e403fa69c0ce124ede27d300477e3e799ca (patch) | |
tree | 0afe2a84598648b49cc53bb3e8640569ac370240 /tests/http/HttpUtils/IndexUrlTest.php | |
parent | fb1b182fbf0ee5afed586f77eec84d7a906831ef (diff) | |
download | Shaarli-51753e403fa69c0ce124ede27d300477e3e799ca.tar.gz Shaarli-51753e403fa69c0ce124ede27d300477e3e799ca.tar.zst Shaarli-51753e403fa69c0ce124ede27d300477e3e799ca.zip |
namespacing: move HTTP utilities along \Shaarli\Http\ classes
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'tests/http/HttpUtils/IndexUrlTest.php')
-rw-r--r-- | tests/http/HttpUtils/IndexUrlTest.php | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/tests/http/HttpUtils/IndexUrlTest.php b/tests/http/HttpUtils/IndexUrlTest.php new file mode 100644 index 00000000..bcbe59cb --- /dev/null +++ b/tests/http/HttpUtils/IndexUrlTest.php | |||
@@ -0,0 +1,74 @@ | |||
1 | <?php | ||
2 | /** | ||
3 | * HttpUtils' tests | ||
4 | */ | ||
5 | |||
6 | namespace Shaarli\Http; | ||
7 | |||
8 | require_once 'application/http/HttpUtils.php'; | ||
9 | |||
10 | /** | ||
11 | * Unitary tests for index_url() | ||
12 | */ | ||
13 | class IndexUrlTest extends \PHPUnit\Framework\TestCase | ||
14 | { | ||
15 | /** | ||
16 | * If on the main page, remove "index.php" from the URL resource | ||
17 | */ | ||
18 | public function testRemoveIndex() | ||
19 | { | ||
20 | $this->assertEquals( | ||
21 | 'http://host.tld/', | ||
22 | index_url( | ||
23 | array( | ||
24 | 'HTTPS' => 'Off', | ||
25 | 'SERVER_NAME' => 'host.tld', | ||
26 | 'SERVER_PORT' => '80', | ||
27 | 'SCRIPT_NAME' => '/index.php' | ||
28 | ) | ||
29 | ) | ||
30 | ); | ||
31 | |||
32 | $this->assertEquals( | ||
33 | 'http://host.tld/admin/', | ||
34 | index_url( | ||
35 | array( | ||
36 | 'HTTPS' => 'Off', | ||
37 | 'SERVER_NAME' => 'host.tld', | ||
38 | 'SERVER_PORT' => '80', | ||
39 | 'SCRIPT_NAME' => '/admin/index.php' | ||
40 | ) | ||
41 | ) | ||
42 | ); | ||
43 | } | ||
44 | |||
45 | /** | ||
46 | * The resource is != "index.php" | ||
47 | */ | ||
48 | public function testOtherResource() | ||
49 | { | ||
50 | $this->assertEquals( | ||
51 | 'http://host.tld/page.php', | ||
52 | page_url( | ||
53 | array( | ||
54 | 'HTTPS' => 'Off', | ||
55 | 'SERVER_NAME' => 'host.tld', | ||
56 | 'SERVER_PORT' => '80', | ||
57 | 'SCRIPT_NAME' => '/page.php' | ||
58 | ) | ||
59 | ) | ||
60 | ); | ||
61 | |||
62 | $this->assertEquals( | ||
63 | 'http://host.tld/admin/page.php', | ||
64 | page_url( | ||
65 | array( | ||
66 | 'HTTPS' => 'Off', | ||
67 | 'SERVER_NAME' => 'host.tld', | ||
68 | 'SERVER_PORT' => '80', | ||
69 | 'SCRIPT_NAME' => '/admin/page.php' | ||
70 | ) | ||
71 | ) | ||
72 | ); | ||
73 | } | ||
74 | } | ||