aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/HttpUtils/IsHttpsTest.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-10-08 15:05:50 +0200
committerArthurHoaro <arthur@hoa.ro>2017-10-08 15:05:50 +0200
commitb14dfc23dd8c4ab1c2cf5788c205a19bff0c1f84 (patch)
treeb6bd2d066410bc8e6a09bbd057df728b5de1493e /tests/HttpUtils/IsHttpsTest.php
parent2c049b673acdd10125db9c3c271eef5bd3f5fc17 (diff)
parentecccb14e2ab4e5f372ea9946b29995c3c7122a5c (diff)
downloadShaarli-b14dfc23dd8c4ab1c2cf5788c205a19bff0c1f84.tar.gz
Shaarli-b14dfc23dd8c4ab1c2cf5788c205a19bff0c1f84.tar.zst
Shaarli-b14dfc23dd8c4ab1c2cf5788c205a19bff0c1f84.zip
Merge tag 'v0.9.2' into latest
Release v0.9.2
Diffstat (limited to 'tests/HttpUtils/IsHttpsTest.php')
-rw-r--r--tests/HttpUtils/IsHttpsTest.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/HttpUtils/IsHttpsTest.php b/tests/HttpUtils/IsHttpsTest.php
new file mode 100644
index 00000000..097f2bcf
--- /dev/null
+++ b/tests/HttpUtils/IsHttpsTest.php
@@ -0,0 +1,36 @@
1<?php
2
3
4/**
5 * Class IsHttpsTest
6 *
7 * Test class for is_https() function.
8 */
9class IsHttpsTest extends PHPUnit_Framework_TestCase
10{
11
12 /**
13 * Test is_https with HTTPS values.
14 */
15 public function testIsHttpsTrue()
16 {
17 $this->assertTrue(is_https(['HTTPS' => true]));
18 $this->assertTrue(is_https(['HTTPS' => '1']));
19 $this->assertTrue(is_https(['HTTPS' => false, 'HTTP_X_FORWARDED_PORT' => 443]));
20 $this->assertTrue(is_https(['HTTPS' => false, 'HTTP_X_FORWARDED_PORT' => '443']));
21 $this->assertTrue(is_https(['HTTPS' => false, 'HTTP_X_FORWARDED_PORT' => '443,123,456,']));
22 }
23
24 /**
25 * Test is_https with HTTP values.
26 */
27 public function testIsHttpsFalse()
28 {
29 $this->assertFalse(is_https([]));
30 $this->assertFalse(is_https(['HTTPS' => false]));
31 $this->assertFalse(is_https(['HTTPS' => '0']));
32 $this->assertFalse(is_https(['HTTPS' => false, 'HTTP_X_FORWARDED_PORT' => 123]));
33 $this->assertFalse(is_https(['HTTPS' => false, 'HTTP_X_FORWARDED_PORT' => '123']));
34 $this->assertFalse(is_https(['HTTPS' => false, 'HTTP_X_FORWARDED_PORT' => ',123,456,']));
35 }
36}