~tsep-dev/tsep/0.9-beta

« back to all changes in this revision

Viewing changes to branches/symfony/app/webroot/test.php

  • Committer: geoffreyfishing
  • Date: 2011-01-11 23:46:12 UTC
  • Revision ID: svn-v4:ae0de26e-ed09-4cbe-9a20-e40b4c60ac6c::125
Created a symfony branch for future migration to symfony

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Web Access Frontend for TestSuite
 
4
 *
 
5
 * PHP versions 4 and 5
 
6
 *
 
7
 * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
 
8
 * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
 
9
 *
 
10
 *  Licensed under The Open Group Test Suite License
 
11
 *  Redistributions of files must retain the above copyright notice.
 
12
 *
 
13
 * @copyright     Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
 
14
 * @link          http://book.cakephp.org/view/1196/Testing
 
15
 * @package       cake
 
16
 * @subpackage    cake.app.webroot
 
17
 * @since         CakePHP(tm) v 1.2.0.4433
 
18
 * @license       http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
 
19
 */
 
20
set_time_limit(0);
 
21
ini_set('display_errors', 1);
 
22
/**
 
23
 * Use the DS to separate the directories in other defines
 
24
 */
 
25
        if (!defined('DS')) {
 
26
                define('DS', DIRECTORY_SEPARATOR);
 
27
        }
 
28
/**
 
29
 * These defines should only be edited if you have cake installed in
 
30
 * a directory layout other than the way it is distributed.
 
31
 * When using custom settings be sure to use the DS and do not add a trailing DS.
 
32
 */
 
33
 
 
34
/**
 
35
 * The full path to the directory which holds "app", WITHOUT a trailing DS.
 
36
 *
 
37
 */
 
38
        if (!defined('ROOT')) {
 
39
                define('ROOT', dirname(dirname(dirname(__FILE__))));
 
40
        }
 
41
/**
 
42
 * The actual directory name for the "app".
 
43
 *
 
44
 */
 
45
        if (!defined('APP_DIR')) {
 
46
                define('APP_DIR', basename(dirname(dirname(__FILE__))));
 
47
        }
 
48
/**
 
49
 * The absolute path to the "cake" directory, WITHOUT a trailing DS.
 
50
 *
 
51
 */
 
52
        if (!defined('CAKE_CORE_INCLUDE_PATH')) {
 
53
                define('CAKE_CORE_INCLUDE_PATH', ROOT);
 
54
        }
 
55
 
 
56
/**
 
57
 * Editing below this line should not be necessary.
 
58
 * Change at your own risk.
 
59
 *
 
60
 */
 
61
if (!defined('WEBROOT_DIR')) {
 
62
        define('WEBROOT_DIR', basename(dirname(__FILE__)));
 
63
}
 
64
if (!defined('WWW_ROOT')) {
 
65
        define('WWW_ROOT', dirname(__FILE__) . DS);
 
66
}
 
67
if (!defined('CORE_PATH')) {
 
68
        if (function_exists('ini_set') && ini_set('include_path', CAKE_CORE_INCLUDE_PATH . PATH_SEPARATOR . ROOT . DS . APP_DIR . DS . PATH_SEPARATOR . ini_get('include_path'))) {
 
69
                define('APP_PATH', null);
 
70
                define('CORE_PATH', null);
 
71
        } else {
 
72
                define('APP_PATH', ROOT . DS . APP_DIR . DS);
 
73
                define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS);
 
74
        }
 
75
}
 
76
if (!include(CORE_PATH . 'cake' . DS . 'bootstrap.php')) {
 
77
        trigger_error("CakePHP core could not be found.  Check the value of CAKE_CORE_INCLUDE_PATH in APP/webroot/index.php.  It should point to the directory containing your " . DS . "cake core directory and your " . DS . "vendors root directory.", E_USER_ERROR);
 
78
}
 
79
 
 
80
$corePath = App::core('cake');
 
81
if (isset($corePath[0])) {
 
82
        define('TEST_CAKE_CORE_INCLUDE_PATH', rtrim($corePath[0], DS) . DS);
 
83
} else {
 
84
        define('TEST_CAKE_CORE_INCLUDE_PATH', CAKE_CORE_INCLUDE_PATH);
 
85
}
 
86
 
 
87
if (Configure::read('debug') < 1) {
 
88
        die(__('Debug setting does not allow access to this url.', true));
 
89
}
 
90
 
 
91
require_once CAKE_TESTS_LIB . 'cake_test_suite_dispatcher.php';
 
92
 
 
93
$Dispatcher = new CakeTestSuiteDispatcher();
 
94
$Dispatcher->dispatch();