diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-10-13 12:07:13 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-10-13 12:07:13 +0200 |
commit | d9f6275ebca035fec8331652c677981056793ccc (patch) | |
tree | 37a64baf4f0eba6b781040605965383d8aded2cc /tests/http/HttpUtils/IndexUrlTest.php | |
parent | 38672ba0d1c722e5d6d33a58255ceb55e9410e46 (diff) | |
parent | d63ff87a009313141ae684ec447b902562ff6ee7 (diff) | |
download | Shaarli-d9f6275ebca035fec8331652c677981056793ccc.tar.gz Shaarli-d9f6275ebca035fec8331652c677981056793ccc.tar.zst Shaarli-d9f6275ebca035fec8331652c677981056793ccc.zip |
Merge branch 'v0.11' into stablestable
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 | } | ||