Merge pull request #7256 from esantanche/esantanche-patch-regex
[civicrm-core.git] / tests / phpunit / CiviTest / civicrm.settings.dist.php
1 <?php
2
3 define('CIVICRM_TEST', 1);
4 define('CIVICRM_CONTAINER_CACHE', 'auto');
5
6 // This file is loaded on all systems running tests. To override settings on
7 // your local system, please create "civicrm.settings.local.php" and put
8 // the settings there.
9
10 //--- you shouldn't have to modify anything under this line, but might want to put the compiled templates CIVICRM_TEMPLATE_COMPILEDIR in a different folder than our default location ----------
11
12 if (!defined('CIVICRM_DSN') && !empty($GLOBALS['mysql_user'])) {
13 $dbName = !empty($GLOBALS['mysql_db']) ? $GLOBALS['mysql_db'] : 'civicrm_tests_dev';
14 if (empty($GLOBALS['mysql_pass']) && $GLOBALS['mysql_pass_need_password']) {
15 $GLOBALS['mysql_pass'] = PHPUnit_TextUI_Command::getPassword('Password');
16 }
17 define('CIVICRM_DSN', "mysql://{$GLOBALS['mysql_user']}:{$GLOBALS['mysql_pass']}@{$GLOBALS['mysql_host']}/{$dbName}?new_link=true");
18 }
19
20
21 if (!defined("CIVICRM_DSN")) {
22 $dsn = getenv("CIVICRM_TEST_DSN");
23 if (!empty ($dsn)) {
24 define("CIVICRM_DSN", $dsn);
25 }
26 else {
27 echo "\nFATAL: no DB connection configured (CIVICRM_DSN). \nYou can either create/edit " . __DIR__ . "/civicrm.settings.local.php\n";
28 if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') {
29 echo "OR set it in your shell:\n \$export CIVICRM_TEST_DSN=mysql://db_username:db_password@localhost/civicrm_tests_dev \n";
30 }
31 else {
32 echo "OR set it in your shell:\n SETX CIVICRM_TEST_DSN mysql://db_username:db_password@localhost/civicrm_tests_dev \n
33 (you will need to open a new command shell before it takes effect)";
34 }
35 echo "\n\n
36 If you haven't done so already, you need to create (once) a database dedicated to the unit tests:
37 mysql -uroot -p
38 create database civicrm_tests_dev;
39 grant ALL on civicrm_tests_dev.* to db_username@localhost identified by 'db_password';
40 grant SUPER on *.* to db_username@localhost identified by 'db_password';\n";
41 die ("");
42 }
43 }
44
45
46 require_once "DB.php";
47 $dsninfo = DB::parseDSN(CIVICRM_DSN);
48
49 $GLOBALS['mysql_host'] = $dsninfo['hostspec'];
50 $GLOBALS['mysql_port'] = @$dsninfo['port'];
51 $GLOBALS['mysql_user'] = $dsninfo['username'];
52 $GLOBALS['mysql_pass'] = $dsninfo['password'];
53 $GLOBALS['mysql_db'] = $dsninfo['database'];
54
55 /**
56 * Content Management System (CMS) Host:
57 *
58 * CiviCRM can be hosted in either Drupal, Joomla or WordPress.
59 */
60 define('CIVICRM_UF', 'UnitTests');
61
62
63 global $civicrm_root;
64 if (empty($civicrm_root)) {
65 $civicrm_root = dirname(dirname(dirname(dirname(__FILE__))));
66 }
67 #$civicrm_root = '/var/www/drupal7.dev.civicrm.org/public/sites/devel.drupal7.tests.dev.civicrm.org/modules/civicrm';
68
69 // set this to a temporary directory. it defaults to /tmp/civi on linux
70 //define( 'CIVICRM_TEMPLATE_COMPILEDIR', 'the/absolute/path/' );
71
72 if (!defined("CIVICRM_TEMPLATE_COMPILEDIR")) {
73 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
74 define('CIVICRM_TEMPLATE_COMPILEDIR', getenv('TMP') . DIRECTORY_SEPARATOR . 'civi' . DIRECTORY_SEPARATOR);
75 }
76 else {
77 define('CIVICRM_TEMPLATE_COMPILEDIR', '/tmp/civi/');
78 }
79 }
80
81 define('CIVICRM_SITE_KEY', 'phpunittestfakekey');
82
83 /**
84 * Site URLs:
85 *
86 * This section defines absolute and relative URLs to access the host CMS (Drupal or Joomla) resources.
87 *
88 * IMPORTANT: Trailing slashes should be used on all URL settings.
89 *
90 *
91 * EXAMPLE - Drupal Installations:
92 * If your site's home url is http://www.example.com/drupal/
93 * these variables would be set as below. Modify as needed for your install.
94 *
95 * CIVICRM_UF_BASEURL - home URL for your site:
96 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/drupal/' );
97 *
98 * EXAMPLE - Joomla Installations:
99 * If your site's home url is http://www.example.com/joomla/
100 *
101 * CIVICRM_UF_BASEURL - home URL for your site:
102 * Administration site:
103 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/joomla/administrator/' );
104 * Front-end site:
105 * define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/joomla/' );
106 *
107 */
108 if (!defined('CIVICRM_UF_BASEURL')) {
109 define('CIVICRM_UF_BASEURL', 'http://FIX ME');
110 }
111
112 /**
113 * Configure MySQL to throw more errors when encountering unusual SQL expressions.
114 *
115 * If undefined, the value is determined automatically. For CiviCRM tarballs, it defaults
116 * to FALSE; for SVN checkouts, it defaults to TRUE.
117 */
118 define('CIVICRM_MYSQL_STRICT', TRUE);
119
120 /**
121 *
122 * Do not change anything below this line. Keep as is
123 *
124 */
125
126 $include_path = '.' . PATH_SEPARATOR .
127 $civicrm_root . PATH_SEPARATOR .
128 $civicrm_root . DIRECTORY_SEPARATOR . 'packages' . PATH_SEPARATOR .
129 get_include_path();
130 set_include_path($include_path);
131
132 if (function_exists('variable_get') && variable_get('clean_url', '0') != '0') {
133 define('CIVICRM_CLEANURL', 1);
134 }
135 else {
136 define('CIVICRM_CLEANURL', 0);
137 }
138
139 // force PHP to auto-detect Mac line endings
140 ini_set('auto_detect_line_endings', '1');
141
142 // make sure the memory_limit is at least 64 MB
143 $memLimitString = trim(ini_get('memory_limit'));
144 $memLimitUnit = strtolower(substr($memLimitString, -1));
145 $memLimit = (int) $memLimitString;
146 switch ($memLimitUnit) {
147 case 'g':
148 $memLimit *= 1024;
149 case 'm':
150 $memLimit *= 1024;
151 case 'k':
152 $memLimit *= 1024;
153 }
154 if ($memLimit >= 0 and $memLimit < 67108864) {
155 ini_set('memory_limit', '64M');
156 }
157
158 require_once 'CRM/Core/ClassLoader.php';
159 CRM_Core_ClassLoader::singleton()->register();