diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2011-03-26 15:09:22 +0100 | 
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2011-03-26 15:09:22 +0100 | 
| commit | 361c18469af5f6782e622420797c4acd5fa70b97 (patch) | |
| tree | c13e40899310cabbb5575459e1901f759c6e6c8f /src/SemanticScuttle | |
| parent | 0935c984991defbc3b7d8549ffa020371d5688f3 (diff) | |
| download | semanticscuttle-361c18469af5f6782e622420797c4acd5fa70b97.tar.gz semanticscuttle-361c18469af5f6782e622420797c4acd5fa70b97.tar.bz2 | |
add new feature: allow unit test mode enabling via HTTP GET parameter
Diffstat (limited to 'src/SemanticScuttle')
| -rw-r--r-- | src/SemanticScuttle/header.php | 16 | 
1 files changed, 15 insertions, 1 deletions
| diff --git a/src/SemanticScuttle/header.php b/src/SemanticScuttle/header.php index 9c5f7da..75e5204 100644 --- a/src/SemanticScuttle/header.php +++ b/src/SemanticScuttle/header.php @@ -39,6 +39,20 @@ set_include_path(  require_once $datadir . '/config.default.php';  require_once $datadir . '/config.php'; +if (isset($_GET['unittestMode']) && $_GET['unittestMode'] == 1 +) { +    if ($allowUnittestMode !== true) { +        header('HTTP/1.0 400 Bad Request'); +        die("Unittestmode is not allowed\n"); +    } + +    $unittestConfigFile = $datadir . '/config.unittest.php'; +    if (file_exists($unittestConfigFile)) { +        require_once $unittestConfigFile; +    } +    define('HTTP_UNIT_TEST_MODE', true); +    define('UNIT_TEST_MODE', true); +}  if (defined('UNIT_TEST_MODE')) {      //make local config vars global - needed for unit tests      //run with phpunit @@ -118,7 +132,7 @@ $tplVars['currentUser'] = $currentUser;  $tplVars['userservice'] = $userservice;  // 6 // Force UTF-8 behaviour for server (cannot be moved into top.inc.php which is not included into every file) -if (!defined('UNIT_TEST_MODE')) { +if (!defined('UNIT_TEST_MODE') || defined('HTTP_UNIT_TEST_MODE')) {      //API files define that, so we need a way to support both of them      if (!isset($httpContentType)) {          if (DEBUG_MODE) { | 
