aboutsummaryrefslogtreecommitdiffstats
path: root/tests/path_helper
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-06-10 21:06:36 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-06-10 21:06:36 +0200
commite71f65c2bb8a810f669b275856cf7e3654d34810 (patch)
treeffc724a4e111bbadfa844d88e19c2b9c510ac04c /tests/path_helper
parent1a6d8dd94d916a7dddbfc6abca8cd4a2f1adf5b9 (diff)
downloadforums-e71f65c2bb8a810f669b275856cf7e3654d34810.tar
forums-e71f65c2bb8a810f669b275856cf7e3654d34810.tar.gz
forums-e71f65c2bb8a810f669b275856cf7e3654d34810.tar.bz2
forums-e71f65c2bb8a810f669b275856cf7e3654d34810.tar.xz
forums-e71f65c2bb8a810f669b275856cf7e3654d34810.zip
[ticket/12099] Fix correction in path_helper test
PHPBB3-12099
Diffstat (limited to 'tests/path_helper')
-rw-r--r--tests/path_helper/path_helper_test.php18
1 files changed, 11 insertions, 7 deletions
diff --git a/tests/path_helper/path_helper_test.php b/tests/path_helper/path_helper_test.php
index 4eac2f567b..9866cb6efe 100644
--- a/tests/path_helper/path_helper_test.php
+++ b/tests/path_helper/path_helper_test.php
@@ -94,41 +94,45 @@ class phpbb_path_helper_test extends phpbb_test_case
return array(
array(
$this->phpbb_root_path . 'test.php',
- '',
'/',
+ null,
+ null,
+ '',
),
array(
$this->phpbb_root_path . 'test.php',
- '../',
'//',
+ null,
+ null,
+ './../',
),
array(
$this->phpbb_root_path . 'test.php',
- '../',
'//',
'foo/bar.php',
'bar.php',
+ './../',
),
array(
$this->phpbb_root_path . 'test.php',
- '../../',
'/foo/template',
'/phpbb3-fork/phpBB/app.php/foo/template',
'/phpbb3-fork/phpBB/app.php',
+ './../../',
),
array(
$this->phpbb_root_path . 'test.php',
- '../',
'/foo/template',
'/phpbb3-fork/phpBB/foo/template',
'/phpbb3-fork/phpBB/app.php',
+ './../',
),
array(
$this->phpbb_root_path . 'test.php',
- '../',
'/',
'/phpbb3-fork/phpBB/app.php/',
'/phpbb3-fork/phpBB/app.php',
+ './../',
),
);
}
@@ -136,7 +140,7 @@ class phpbb_path_helper_test extends phpbb_test_case
/**
* @dataProvider update_web_root_path_data
*/
- public function test_update_web_root_path($input, $correction, $getPathInfo, $getRequestUri = null, $getScriptName = null)
+ public function test_update_web_root_path($input, $getPathInfo, $getRequestUri, $getScriptName, $correction)
{
$symfony_request = $this->getMock('\phpbb\symfony_request', array(), array(
new phpbb_mock_request(),