blob: d8df8f42d89e5f5533c767c45791d655ba8a2177 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
<?php
namespace phorkie;
class ToolsTest extends \PHPUnit_Framework_TestCase
{
public function setUp()
{
$_GET[] = array();
}
public function testDetectBaseUrlPhar()
{
$_SERVER['REQUEST_URI'] = '/phar/phorkie-0.4.0.phar/list.php';
$_SERVER['SCRIPT_NAME'] = '/phar/phorkie-0.4.0.phar';
$this->assertEquals(
'/phar/phorkie-0.4.0.phar/',
Tools::detectBaseUrl()
);
}
public function testDetectBaseUrlRoot()
{
$_SERVER['REQUEST_URI'] = '/new';
$_SERVER['SCRIPT_NAME'] = '/new.php';
$this->assertEquals('/', Tools::detectBaseUrl());
}
public function testDetectBaseUrlRootWithPhp()
{
$_SERVER['REQUEST_URI'] = '/new.php';
$_SERVER['SCRIPT_NAME'] = '/new.php';
$this->assertEquals('/', Tools::detectBaseUrl());
}
public function testDetectBaseUrlSubdir()
{
$_SERVER['REQUEST_URI'] = '/foo/new';
$_SERVER['SCRIPT_NAME'] = '/new.php';
$this->assertEquals('/foo/', Tools::detectBaseUrl());
}
public function testDetectBaseUrlEdit()
{
$_GET['id'] = 82;
$_SERVER['REQUEST_URI'] = '/82/edit';
$_SERVER['SCRIPT_NAME'] = '/edit.php';
$this->assertEquals('/', Tools::detectBaseUrl());
}
public function testDetectBaseUrlEditSubdir()
{
$_GET['id'] = 82;
$_SERVER['REQUEST_URI'] = '/foo/82/edit';
$_SERVER['SCRIPT_NAME'] = '/edit.php';
$this->assertEquals('/foo/', Tools::detectBaseUrl());
}
public function testFoldPathParentSingle()
{
$this->assertEquals(
'/path/to/foo',
Tools::foldPath('/path/to/bar/../foo')
);
}
public function testFoldPathParentDouble()
{
$this->assertEquals(
'/path/to/foo',
Tools::foldPath('/path/to/foo/bar/../../foo')
);
}
public function testFoldPathCurrentSingle()
{
$this->assertEquals(
'/path/to/foo/',
Tools::foldPath('/path/to/foo/./')
);
}
public function testFoldPathCurrentThrice()
{
$this->assertEquals(
'/path/to/foo/',
Tools::foldPath('/path/././to/foo/./')
);
}
}
?>
|