6 require_once 'application/Utils.php';
9 * Unitary tests for Shaarli utilities
11 class UtilsTest
extends PHPUnit_Framework_TestCase
14 * Represent a link by its hash
16 public function testSmallHash()
18 $this->assertEquals('CyAAJw', smallHash('http://test.io'));
19 $this->assertEquals(6, strlen(smallHash('https://github.com')));
23 * Look for a substring at the beginning of a string
25 public function testStartsWithCaseInsensitive()
27 $this->assertTrue(startsWith('Lorem ipsum', 'lorem', false));
28 $this->assertTrue(startsWith('Lorem ipsum', 'LoReM i', false));
32 * Look for a substring at the beginning of a string (case-sensitive)
34 public function testStartsWithCaseSensitive()
36 $this->assertTrue(startsWith('Lorem ipsum', 'Lorem', true));
37 $this->assertFalse(startsWith('Lorem ipsum', 'lorem', true));
38 $this->assertFalse(startsWith('Lorem ipsum', 'LoReM i', true));
42 * Look for a substring at the beginning of a string (Unicode)
44 public function testStartsWithSpecialChars()
46 $this->assertTrue(startsWith('å!ùµ', 'å!', false));
47 $this->assertTrue(startsWith('µ$åù', 'µ$', true));
51 * Look for a substring at the end of a string
53 public function testEndsWithCaseInsensitive()
55 $this->assertTrue(endsWith('Lorem ipsum
', 'ipsum
', false));
56 $this->assertTrue(endsWith('Lorem ipsum
', 'm IpsUM
', false));
60 * Look for a substring at the end of a string (case-sensitive)
62 public function testEndsWithCaseSensitive()
64 $this->assertTrue(endsWith('lorem Ipsum
', 'Ipsum
', true));
65 $this->assertFalse(endsWith('lorem Ipsum
', 'ipsum
', true));
66 $this->assertFalse(endsWith('lorem Ipsum
', 'M IPsuM
', true));
70 * Look for a substring at the end of a string (Unicode)
72 public function testEndsWithSpecialChars()
74 $this->assertTrue(endsWith('å
!ùµ
', 'ùµ
', false));
75 $this->assertTrue(endsWith('µ$åù
', 'åù
', true));
79 * Check valid date strings, according to a DateTime format
81 public function testCheckValidDateFormat()
83 $this->assertTrue(checkDateFormat('Ymd
', '20150627'));
84 $this->assertTrue(checkDateFormat('Y
-m
-d
', '2015-06-27'));
88 * Check erroneous date strings, according to a DateTime format
90 public function testCheckInvalidDateFormat()
92 $this->assertFalse(checkDateFormat('Ymd
', '2015'));
93 $this->assertFalse(checkDateFormat('Y
-m
-d
', '2015-06'));
94 $this->assertFalse(checkDateFormat('Ymd
', 'DeLorean
'));
98 * Test generate location with valid data.
100 public function testGenerateLocation() {
101 $ref = 'http
://localhost/?test';
102 $this->assertEquals($ref, generateLocation($ref, 'localhost'));
103 $ref = 'http://localhost:8080/?test';
104 $this->assertEquals($ref, generateLocation($ref, 'localhost:8080'));
108 * Test generate location - anti loop.
110 public function testGenerateLocationLoop() {
111 $ref = 'http://localhost/?test';
112 $this->assertEquals('?', generateLocation($ref, 'localhost', array('test')));
116 * Test generate location - from other domain.
118 public function testGenerateLocationOut() {
119 $ref = 'http://somewebsite.com/?test';
120 $this->assertEquals('?', generateLocation($ref, 'localhost'));
124 * Check supported PHP versions
126 public function testCheckSupportedPHPVersion()
129 checkPHPVersion($minVersion, '5.4.32');
130 checkPHPVersion($minVersion, '5.5');
131 checkPHPVersion($minVersion, '5.6.10');
135 * Check a unsupported PHP version
136 * @expectedException Exception
137 * @expectedExceptionMessageRegExp /Your PHP version is obsolete/
139 public function testCheckSupportedPHPVersion51()
141 checkPHPVersion('5.3', '5.1.0');
145 * Check another unsupported PHP version
146 * @expectedException Exception
147 * @expectedExceptionMessageRegExp /Your PHP version is obsolete/
149 public function testCheckSupportedPHPVersion52()
151 checkPHPVersion('5.3', '5.2');