get rid of headers-already-sent-errors when running unit tests on cli

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@390 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2009-10-03 23:25:07 +00:00
parent de031f043f
commit dfeeae38a9
4 changed files with 15 additions and 6 deletions

View file

@ -11,10 +11,7 @@ if(isset($GLOBALS['debugMode'])) {
} }
// Determine the base URL as ROOT // Determine the base URL as ROOT
if (!isset($_SERVER['HTTP_HOST'])) { if (!isset($GLOBALS['root'])) {
//not set in unit tests
define('ROOT', 'http://localhost/');
} else if (!isset($GLOBALS['root'])) {
$pieces = explode('/', $_SERVER['SCRIPT_NAME']); $pieces = explode('/', $_SERVER['SCRIPT_NAME']);
$rootTmp = '/'; $rootTmp = '/';

View file

@ -45,7 +45,9 @@ T_bind_textdomain_codeset($domain, 'UTF-8');
T_textdomain($domain); T_textdomain($domain);
// 4 // Session // 4 // Session
if (!defined('UNIT_TEST_MODE')) {
session_start(); session_start();
}
// 5 // Create mandatory services and objects // 5 // Create mandatory services and objects
$userservice =SemanticScuttle_Service_Factory::getServiceInstance('User'); $userservice =SemanticScuttle_Service_Factory::getServiceInstance('User');
@ -57,5 +59,7 @@ $tplVars['currentUser'] = $currentUser;
$tplVars['userservice'] = $userservice; $tplVars['userservice'] = $userservice;
// 6 // Force UTF-8 behaviour for server (cannot be move into top.inc.php which is not included into every file) // 6 // Force UTF-8 behaviour for server (cannot be move into top.inc.php which is not included into every file)
if (!defined('UNIT_TEST_MODE')) {
header('Content-Type: text/html; charset=utf-8'); header('Content-Type: text/html; charset=utf-8');
}
?> ?>

View file

@ -15,6 +15,7 @@ if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'AllTests::main'); define('PHPUnit_MAIN_METHOD', 'AllTests::main');
} }
require_once 'prepare.php';
require_once 'PHPUnit/Framework/TestSuite.php'; require_once 'PHPUnit/Framework/TestSuite.php';
class AllTests extends PHPUnit_Framework_TestSuite class AllTests extends PHPUnit_Framework_TestSuite

7
tests/prepare.php Normal file
View file

@ -0,0 +1,7 @@
<?php
/**
* Prepare the application for unit testing
*/
$_SERVER['HTTP_HOST'] = 'http://localhost/';
define('UNIT_TEST_MODE', true);
?>