Route relative is now relative to the base of the website instead of the current directory

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@5626 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2019-10-31 08:16:41 +00:00
parent 3d45646dd9
commit 7d80c36a51
2 changed files with 14 additions and 10 deletions

View File

@@ -23,7 +23,7 @@ class test_route extends PHPUnit_Framework_TestCase
$_SERVER["SCRIPT_NAME"] = "/index.php";
$route = new route ();
echo $route->baseURL ();
$this->expectOutputString("./");
$this->expectOutputString("/");
}
/** Port 443 and HTTPS without module */
@@ -36,7 +36,7 @@ class test_route extends PHPUnit_Framework_TestCase
$_SERVER["SCRIPT_NAME"] = "/index.php";
$route = new route ();
echo $route->baseURL ();
$this->expectOutputString("./");
$this->expectOutputString("/");
}
/** Port 888 and HTTP without module */
@@ -48,7 +48,7 @@ class test_route extends PHPUnit_Framework_TestCase
$_SERVER["SCRIPT_NAME"] = "/index.php";
$route = new route ();
echo $route->baseURL ();
$this->expectOutputString("./");
$this->expectOutputString("/");
}
/** Port 888 and HTTPS without module */
@@ -60,7 +60,7 @@ class test_route extends PHPUnit_Framework_TestCase
$_SERVER["SCRIPT_NAME"] = "/index.php";
$route = new route ();
echo $route->baseURL ();
$this->expectOutputString("./");
$this->expectOutputString("/");
}
/** Port 80 and HTTP with module */
@@ -72,7 +72,7 @@ class test_route extends PHPUnit_Framework_TestCase
$_SERVER["SCRIPT_NAME"] = "/module/index.php";
$route = new route ();
echo $route->baseURL ("module");
$this->expectOutputString("./");
$this->expectOutputString("/");
}
/** Port 443 and HTTPS with module */
@@ -84,7 +84,7 @@ class test_route extends PHPUnit_Framework_TestCase
$_SERVER["SCRIPT_NAME"] = "/module/index.php";
$route = new route ();
echo $route->baseURL ("module");
$this->expectOutputString("./");
$this->expectOutputString("/");
}
/** Port 888 and HTTP with module */
@@ -96,7 +96,7 @@ class test_route extends PHPUnit_Framework_TestCase
$_SERVER["SCRIPT_NAME"] = "/module/index.php";
$route = new route ();
echo $route->baseURL ("module");
$this->expectOutputString("./");
$this->expectOutputString("/");
}
/** Port 888 and HTTPS with module */
@@ -108,7 +108,7 @@ class test_route extends PHPUnit_Framework_TestCase
$_SERVER["SCRIPT_NAME"] = "/module/index.php";
$route = new route ();
echo $route->baseURL ("module");
$this->expectOutputString("./");
$this->expectOutputString("/");
}
/// ABSOLUTE ///