2016-10-27 23:53:11 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Fake the script name and base
|
|
|
|
global $_SERVER;
|
2016-12-16 05:34:21 +01:00
|
|
|
if (!$_SERVER) {
|
|
|
|
$_SERVER = array();
|
|
|
|
}
|
2016-10-27 23:53:11 +02:00
|
|
|
|
|
|
|
$frameworkPath = dirname(dirname(__FILE__));
|
|
|
|
$frameworkDir = basename($frameworkPath);
|
|
|
|
|
|
|
|
$_SERVER['SCRIPT_FILENAME'] = $frameworkPath . DIRECTORY_SEPARATOR . 'cli-script.php';
|
|
|
|
$_SERVER['SCRIPT_NAME'] = '.' . DIRECTORY_SEPARATOR . $frameworkDir . DIRECTORY_SEPARATOR . 'cli-script.php';
|
|
|
|
|
|
|
|
// Copied from cli-script.php, to enable same behaviour through phpunit runner.
|
2016-12-16 05:34:21 +01:00
|
|
|
if (isset($_SERVER['argv'][2])) {
|
|
|
|
$args = array_slice($_SERVER['argv'], 2);
|
|
|
|
if (!isset($_GET)) {
|
|
|
|
$_GET = array();
|
|
|
|
}
|
|
|
|
if (!isset($_REQUEST)) {
|
|
|
|
$_REQUEST = array();
|
|
|
|
}
|
|
|
|
foreach ($args as $arg) {
|
|
|
|
if (strpos($arg, '=') == false) {
|
|
|
|
$_GET['args'][] = $arg;
|
|
|
|
} else {
|
|
|
|
$newItems = array();
|
|
|
|
parse_str((substr($arg, 0, 2) == '--') ? substr($arg, 2) : $arg, $newItems);
|
|
|
|
$_GET = array_merge($_GET, $newItems);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$_REQUEST = array_merge($_REQUEST, $_GET);
|
2016-10-27 23:53:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure Director::protocolAndHost() works
|
|
|
|
if (empty($_SERVER['HTTP_HOST'])) {
|
2016-12-16 05:34:21 +01:00
|
|
|
$_SERVER['HTTP_HOST'] = 'localhost';
|
2016-10-27 23:53:11 +02:00
|
|
|
}
|