-
Notifications
You must be signed in to change notification settings - Fork 32
/
PhpunitHelper.php
622 lines (549 loc) · 21.8 KB
/
PhpunitHelper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
<?php
/**
* ThinkPHP 3.2.3 单元测试启动文件
* zhuyajie
* Date: 2015/7/2
* Time: 16:56
*/
namespace Think;
class PhpunitHelper {
protected static $_map=[];
/**
* @var \Think\Model
*/
protected $model;
protected $testConfig=[];
protected $action_name;
/**
* @param string $app_path
* @param string $think_path
* @param string $runtime_path 不要与正式的runtime目录相同
*/
public function __construct($app_path=null, $think_path=null, $runtime_path=null)
{
$const = $this->guessPath();
if ($app_path===null) {
$app_path = $const['APP_PATH'];
}
if ($think_path===null) {
$think_path = $const['THINK_PATH'];
}
if ($runtime_path === null) {
$runtime_path = $const['ROOT_PATH'].'/Runtime-test';
}
if (!file_exists($app_path)) {
throw new \RuntimeException($app_path.'不存在');
}
if (!file_exists($think_path)) {
throw new \RuntimeException($think_path.'不存在');
}
if (!file_exists( $runtime_path )) {
$bool = mkdir($runtime_path);
if (!$bool) {
throw new \RuntimeException($runtime_path.'创建失败');
}
} else if (!is_writable($runtime_path)) {
throw new \RuntimeException($runtime_path.'不可写');
}
/**
* 单元测试,会出现变量重复定义错误,使用defined来判断
*/
defined('APP_DEBUG') or define('APP_DEBUG', true);
defined('APP_PATH') or define('APP_PATH', rtrim($app_path, '\\/') . '/');
defined('RUNTIME_PATH') or define('RUNTIME_PATH', rtrim($runtime_path, '\\/') . '/');
defined('THINK_PATH') or define('THINK_PATH', rtrim($think_path, '\\/') . '/');
$_SERVER['REQUEST_METHOD'] = 'GET';
$_SERVER['REMOTE_ADDR']='127.0.0.1';
$_SERVER['REMOTE_PORT']='32800';
$_SERVER['SERVER_ADDR']='127.0.0.1';
$_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.1';
$_SERVER['HTTP_REFERER']='/';
$this->_defineConsts();
}
public function guessPath()
{
defined('DS') || define('DS', DIRECTORY_SEPARATOR);
$vendorPath = dirname(dirname(__DIR__));
$vendorParent = realpath(dirname($vendorPath));
$rootPath = $this->getProjectRoot($vendorParent);
$const = array();
if ($rootPath) {
$dir = dir($rootPath);
$index = $basepath = false;
while ($d = $dir->read()) {
if($d=='index.php'){
$basepath = $rootPath;
$index = $rootPath.DS.'index.php';
break;
}
if (file_exists($rootPath . DS . $d . DS . 'index.php')) {
$basepath = $rootPath . DS . $d;
$index = $rootPath.DS.$d.DS.'index.php';
break;
}
}
if ($index && $basepath) {
$content = file_get_contents($index);
if (preg_match_all('/define.*[\'"](\w+)[\'"].*((?<=[\'"]).+(?=[\'"])|true|false)/im',$content,$matches,PREG_SET_ORDER)) {
foreach ($matches as $value) {
$const[$value[1]]=$value[2];
}
if (preg_match('{.*[\'"](.*ThinkPHP.php)[\'"]}', $content, $matches)) {
$think_path = dirname(realpath($basepath.DS.$matches[1]));
$const['THINK_PATH'] = $think_path;
}
if (!file_exists($const['APP_PATH'])) {
$const['APP_PATH'] = realpath($rootPath.DIRECTORY_SEPARATOR.$const['APP_PATH']) ;
}
}
}
$const['ROOT_PATH'] = $rootPath;
}
return $const;
}
/**
* 模拟常规的mvc应用
* @param $http_host
* @param $module_name
* @param $controller_name
* @param string $request_scheme
* @param string $server_port
*/
public function setMVC($http_host, $module_name, $controller_name, $request_scheme = 'http', $server_port = '80')
{
$this->setServerEnv('SERVER_NAME', $http_host);
$this->setServerEnv('HTTP_HOST', $http_host);
$this->setServerEnv('REQUEST_SCHEME', $request_scheme);
$this->setServerEnv('SERVER_PORT', $server_port);
defined('MODULE_NAME') or define('MODULE_NAME', $module_name);
defined('CONTROLLER_NAME') or define('CONTROLLER_NAME', $controller_name);
}
/**
* 定义单个常量
* @param $name
* @param $value
*/
public function defineConst($name, $value)
{
defined($name) or define($name, $value);
}
/**
* 批量定义常量
* @param array $map
*
* @return $this
*/
public function defineConsts(array $map)
{
foreach ($map as $name => $value) {
defined($name) or define($name, $value);
}
return $this;
}
/**
* 设置单个 $_SERVER 环境变量
* @param $name
* @param $value
*/
public function setServerEnv($name, $value)
{
$_SERVER[$name] = $value;
}
/**
* 批量设置 $_SERVER 环境变量
* @param array $map
*
* @return $this
*/
public function setServerEnvs(array $map)
{
foreach ($map as $name => $value) {
$_SERVER[$name] = $value;
}
return $this;
}
/**
* 设置 $_GET 变量
* @param $get
*/
public function setGET($get)
{
$_GET = array_merge($_GET, $get);
$_REQUEST = array_merge($_REQUEST, $_GET);
}
/**
* 设置 $_POST变量
* @param $post
*/
public function setPOST($post)
{
$_POST = array_merge($_POST, $post);
$_REQUEST = array_merge($_REQUEST, $_POST);
}
/**
* 设置 $_POST变量
*
* @param $request
* @param $merge_post
*/
public function setRequest($request, $merge_post = true)
{
$this->setGET($request);
if ($merge_post) {
$this->setPOST($request);
}
}
/**
* 定义核心常量
*/
private function _defineConsts()
{
$GLOBALS['_beginTime'] = microtime(TRUE);
// 记录内存初始使用
defined('MEMORY_LIMIT_ON') or define('MEMORY_LIMIT_ON', function_exists('memory_get_usage'));
if (MEMORY_LIMIT_ON) $GLOBALS['_startUseMems'] = memory_get_usage();
defined('THINK_VERSION') or define('THINK_VERSION', '3.2.3');
if(function_exists('saeAutoLoader')){// 自动识别SAE环境
defined('APP_MODE') or define('APP_MODE', 'sae');
defined('STORAGE_TYPE') or define('STORAGE_TYPE', 'Sae');
}else{
defined('APP_MODE') or define('APP_MODE', 'common'); // 应用模式 默认为普通模式
defined('STORAGE_TYPE') or define('STORAGE_TYPE', 'File'); // 存储类型 默认为File
}
// URL 模式定义
defined('URL_COMMON') or define('URL_COMMON', 0); //普通模式
defined('URL_PATHINFO') or define('URL_PATHINFO', 1); //PATHINFO模式
defined('URL_REWRITE') or define('URL_REWRITE', 2); //REWRITE模式
defined('URL_COMPAT') or define('URL_COMPAT', 3); // 兼容模式
defined('EXT') or define('EXT', '.class.php');
// 系统常量定义
defined('APP_PATH') or define('APP_PATH', dirname($_SERVER['SCRIPT_FILENAME']) . '/');
defined('APP_STATUS') or define('APP_STATUS', ''); // 应用状态 加载对应的配置文件
defined('APP_DEBUG') or define('APP_DEBUG', true); // 是否调试模式
defined('RUNTIME_PATH') or define('RUNTIME_PATH', APP_PATH . 'Runtime/'); // 系统运行时目录
defined('LIB_PATH') or define('LIB_PATH', realpath(THINK_PATH.'Library').'/'); // 系统核心类库目录
defined('CORE_PATH') or define('CORE_PATH', LIB_PATH.'Think/'); // Think类库目录
defined('BEHAVIOR_PATH') or define('BEHAVIOR_PATH', LIB_PATH.'Behavior/'); // 行为类库目录
defined('MODE_PATH') or define('MODE_PATH', THINK_PATH.'Mode/'); // 系统应用模式目录
defined('VENDOR_PATH') or define('VENDOR_PATH', LIB_PATH.'Vendor/'); // 第三方类库目录
defined('COMMON_PATH') or define('COMMON_PATH', APP_PATH.'Common/'); // 应用公共目录
defined('CONF_PATH') or define('CONF_PATH', COMMON_PATH.'Conf/'); // 应用配置目录
defined('LANG_PATH') or define('LANG_PATH', COMMON_PATH . 'Lang/'); // 应用语言目录
defined('HTML_PATH') or define('HTML_PATH', APP_PATH.'Html/'); // 应用静态目录
defined('LOG_PATH') or define('LOG_PATH', RUNTIME_PATH.'Logs/'); // 应用日志目录
defined('TEMP_PATH') or define('TEMP_PATH', RUNTIME_PATH.'Temp/'); // 应用缓存目录
defined('DATA_PATH') or define('DATA_PATH', RUNTIME_PATH.'Data/'); // 应用数据目录
defined('CACHE_PATH') or define('CACHE_PATH', RUNTIME_PATH.'Cache/'); // 应用模板缓存目录
defined('CONF_EXT') or define('CONF_EXT', '.php'); // 配置文件后缀
defined('CONF_PARSE') or define('CONF_PARSE', ''); // 配置文件解析方法
defined('ADDON_PATH') or define('ADDON_PATH', APP_PATH.'Addon');
// 系统信息
if(version_compare(PHP_VERSION,'5.4.0','<')) {
ini_set('magic_quotes_runtime',0);
defined('MAGIC_QUOTES_GPC') or define('MAGIC_QUOTES_GPC', get_magic_quotes_gpc() ? True : False);
}else{
defined('MAGIC_QUOTES_GPC') or define('MAGIC_QUOTES_GPC', false);
}
defined('IS_CGI') or define('IS_CGI',0);
defined('IS_WIN') or define('IS_WIN',strstr(PHP_OS, 'WIN') ? 1 : 0 );
defined('IS_CLI') or define('IS_CLI',0);
if(!IS_CLI) {
// 当前文件名
if(!defined('_PHP_FILE_')) {
if(IS_CGI) {
//CGI/FASTCGI模式下
$_temp = explode('.php',$_SERVER['PHP_SELF']);
define('_PHP_FILE_', rtrim(str_replace($_SERVER['HTTP_HOST'],'',$_temp[0].'.php'),'/'));
}else {
define('_PHP_FILE_', rtrim($_SERVER['SCRIPT_NAME'], '/'));
}
}
if(!defined('__ROOT__')) {
$_root = rtrim(dirname(_PHP_FILE_), '/');
define('__ROOT__', (($_root=='/' || $_root=='\\')?'':$_root));
}
}
}
/**
* 启动模拟应用
*/
public function start()
{
spl_autoload_register('\\Think\\PhpunitHelper::autoload');
register_shutdown_function('\\Think\\PhpunitHelper::fatalError');
Storage::connect(STORAGE_TYPE);
$mode = include is_file(CONF_PATH . 'core.php') ? CONF_PATH . 'core.php' : MODE_PATH . APP_MODE . '.php';
// 加载核心文件
foreach ($mode['core'] as $file) {
if(is_file($file)) {
if (strpos($file, 'Think/Controller.class.php') !== false
||strpos( $file, 'Think\\Controller.class.php' )!==false
|| strpos($file, 'Think/View.class.php') !== false
|| strpos($file, 'Think\\View.class.php') !== false
) {
// not include
} else {
include_once $file;
}
}
}
// 加载应用模式配置文件
foreach ($mode['config'] as $key => $file) {
is_numeric($key) ? C(load_config($file)) : C($key, load_config($file));
}
// 读取当前应用模式对应的配置文件
if ('common' != APP_MODE && is_file(CONF_PATH . 'config_' . APP_MODE . CONF_EXT)) {
C(load_config(CONF_PATH . 'config_' . APP_MODE . CONF_EXT));
}
// 加载模式别名定义
if(isset($mode['alias'])){
self::addMap(is_array($mode['alias'])?$mode['alias']:include $mode['alias']);
}
// 加载应用别名定义文件
if(is_file(CONF_PATH.'alias.php')){
self::addMap(include CONF_PATH.'alias.php');
}
// 加载模式行为定义
if(isset($mode['tags'])) {
\Think\Hook::import(is_array($mode['tags']) ? $mode['tags'] : include $mode['tags']);
}
// 加载应用行为定义
if (is_file(CONF_PATH . 'tags.php')) {
// 允许应用增加开发模式配置定义
\Think\Hook::import(include CONF_PATH.'tags.php');
}
// 加载框架底层语言包
L(include THINK_PATH.'Lang/'.strtolower(C('DEFAULT_LANG')).'.php');
// 调试模式加载系统默认的配置文件
C(include THINK_PATH.'Conf/debug.php');
// 读取应用调试配置文件
if (is_file(CONF_PATH . 'debug' . CONF_EXT)) {
C(include CONF_PATH . 'debug' . CONF_EXT);
}
C('HTML_CACHE_ON',false);
C('LIMIT_ROBOT_VISIT',false) ;
C('LIMIT_PROXY_VISIT', false);
$this->run();
}
protected function run()
{
\Think\Hook::listen('app_init');
$this->init();
// 应用开始标签
\Think\Hook::listen('app_begin');
$db_name = C('DB_NAME'); // 应用使用的数据库名
$db_host = C('DB_HOST'); // 应用使用的数据库名
C('SHOW_PAGE_TRACE',false);
// 加载项目中定义的单元测试配置文件
if (is_file(CONF_PATH.'test'.CONF_EXT)) {
C(load_config(CONF_PATH.'test'.CONF_EXT));
}
// 加载.test.env文件定义的单元测试配置
if (class_exists('\\Snowair\\Dotenv\\Loader')) {
$this->loadEnvConfig();
}
// 加载测试执行前setTestConfig方法临时设置的配置
C($this->testConfig);
$test_db_name = C('DB_NAME'); // 测试数据库的数据库名
$test_db_host = C('DB_HOST'); // 应用使用的数据库名
if (
($db_name && $db_name == $test_db_name)
&& ($db_host && $db_host==$test_db_host)
) {
throw new \Exception('请单独为测试环境设置数据库连接配置');
}
if ($test_db_name && $test_db_name && C('DB_TYPE') && C('DB_USER')) {
$this->model = new \Think\Model();
}
// 记录应用初始化时间
G('initTime');
}
protected function init()
{
load_ext_file(COMMON_PATH);
// 日志目录转换为绝对路径 默认情况下存储到公共模块下面
C('LOG_PATH', realpath(LOG_PATH).'/Common/');
// 定义当前请求的系统常量
defined('NOW_TIME') or define('NOW_TIME', $_SERVER['REQUEST_TIME']);
defined('REQUEST_METHOD') or define('REQUEST_METHOD', $_SERVER['REQUEST_METHOD']);
defined('IS_GET') || define('IS_GET', REQUEST_METHOD == 'GET' ? true : false);
defined('IS_POST') || define('IS_POST', REQUEST_METHOD == 'POST' ? true : false);
defined('IS_PUT') || define('IS_PUT', REQUEST_METHOD == 'PUT' ? true : false);
defined('IS_DELETE') || define('IS_DELETE', REQUEST_METHOD == 'DELETE' ? true : false);
// URL调度
$this->dispatch();
if (C('REQUEST_VARS_FILTER')) {
// 全局安全过滤
array_walk_recursive($_GET, 'think_filter');
array_walk_recursive($_POST, 'think_filter');
array_walk_recursive($_REQUEST, 'think_filter');
}
// URL调度结束标签
\Think\Hook::listen('url_dispatch');
// TMPL_EXCEPTION_FILE 改为绝对地址
C('TMPL_EXCEPTION_FILE', realpath(C('TMPL_EXCEPTION_FILE')));
defined('IS_AJAX') or define(
'IS_AJAX',
((isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')
|| !empty($_POST[C('VAR_AJAX_SUBMIT')])
|| !empty($_GET[C('VAR_AJAX_SUBMIT')])
) ? true : false
);
C('phpunit',true);
return ;
}
/**
* 设定控制器名称
* @param $action
*/
public function setActionName($action)
{
View::$action_name = $action;
$this->action_name = $action;
}
protected function dispatch()
{
$urlCase = C('URL_CASE_INSENSITIVE');
// 定义当前模块路径
defined('MODULE_PATH') or define('MODULE_PATH', APP_PATH . MODULE_NAME . '/');
// 定义当前模块的模版缓存路径
C('CACHE_PATH', CACHE_PATH . MODULE_NAME . '/');
if (!file_exists(LOG_PATH)) {
mkdir(LOG_PATH, 0755);
}
C('LOG_PATH', realpath(LOG_PATH) . '/' . MODULE_NAME . '/');
// 模块检测
Hook::listen('module_check');
// 加载模块配置文件
if (is_file(MODULE_PATH . 'Conf/config.php')) {
C(include MODULE_PATH . 'Conf/config.php');
}
// 加载模块别名定义
if(is_file(MODULE_PATH.'Conf/alias.php')){
$map = include MODULE_PATH . 'Conf/alias.php';
foreach ($map as $class => $file) {
include $file;
}
}
// 加载模块函数文件
if (is_file(MODULE_PATH . 'Common/function.php')) {
include MODULE_PATH . 'Common/function.php';
}
// 加载模块的扩展配置文件
load_ext_file(MODULE_PATH);
$depr = C('URL_PATHINFO_DEPR');
defined('MODULE_PATHINFO_DEPR') or define('MODULE_PATHINFO_DEPR', $depr);
if(!defined('__APP__')){
$urlMode = C('URL_MODEL');
if ($urlMode == URL_COMPAT) {// 兼容模式判断
$varPath = C('VAR_PATHINFO');
defined('PHP_FILE') || define('PHP_FILE', _PHP_FILE_ . '?' . $varPath . '=');
} elseif ($urlMode == URL_REWRITE) {
$url = dirname(_PHP_FILE_);
if ($url == '/' || $url == '\\')
$url = '';
defined('PHP_FILE') || define('PHP_FILE', $url);
} else {
defined('PHP_FILE') || define('PHP_FILE', _PHP_FILE_);
}
// 当前应用地址
defined('__APP__') || define('__APP__', strip_tags(PHP_FILE));
}
$moduleName = MODULE_NAME;
$controllerName = CONTROLLER_NAME;
defined('__MODULE__') or define('__MODULE__', (defined('BIND_MODULE') || !C('MULTI_MODULE')) ? __APP__ : __APP__ . '/' . ($urlCase ? strtolower($moduleName) : $moduleName));
defined('__CONTROLLER__') or define('__CONTROLLER__', __MODULE__ . $depr . (defined('BIND_CONTROLLER') ? '' : ($urlCase ? parse_name($controllerName) : $controllerName)));
defined('__ACTION__') || define('__ACTION__', __CONTROLLER__ . $depr . $this->action_name);
defined('__SELF__') || define('__SELF__', strip_tags(isset($_SERVER[C('URL_REQUEST_URI')]) ? $_SERVER[C('URL_REQUEST_URI')] : ''));
}
/**
* 无需手动调用
* @param $class
* @param string $map
*/
static public function addMap($class, $map = '')
{
if (is_array($class)) {
self::$_map = array_merge(self::$_map, $class);
} else {
self::$_map[$class] = $map;
}
}
/**
* 启动加载器,已注册,无需手动调用
* @param $class
*/
public static function autoload($class)
{
if (isset(self::$_map[$class])) {
include self::$_map[$class];
}
}
static public function fatalError()
{
if ($e = error_get_last()) {
print_r($e);
}
}
/**
* 返回默认模型
* @return \Think\Model
*/
public function getModel()
{
return $this->model;
}
/**
* 你可以直接在测试代码里设置用于覆盖默认配置的配置项
* 但必须在start方法之前调用才有效
* @param array $config
*/
public function setTestConfig(array $config)
{
$this->testConfig = $config;
}
/**
* 如果composer安装了DotEnv,你可以使用.test.env文件配置
*/
protected function loadEnvConfig()
{
$path = dirname(APP_PATH);
$env_file = $path . '/.test.env';
if (file_exists($env_file)) {
$Loader = new \Snowair\Dotenv\Loader($env_file);
$Loader->setFilters(['Snowair\Dotenv\DotArrayFilter'])
->parse()
->filter();
if ($expect = C('DOTENV.expect')) {
call_user_func_array(array($Loader, 'expect'), explode(',', $expect));
}
if (C('DOTENV.toConst')) {
$Loader->define();
}
if(C('DOTENV.toServer')){
$Loader->toServer(true);
}
if (C('DOTENV.toEnv')) {
$Loader->toEnv(true);
}
$env = $Loader->toArray();
C($env);
};
}
function getProjectRoot($vendorParent){
$dir = dirname($vendorParent);
if (file_exists($vendorParent . DS . 'composer.json')
|| file_exists( $vendorParent.DS.'.git')
|| file_exists($vendorParent . DS . '.svn')
|| file_exists( $vendorParent.DS.'.hg')
|| file_exists($vendorParent . DS . 'index.php')
)
{
return $vendorParent;
} elseif ($dir != $vendorParent && $dir != '.') {
return $this->getProjectRoot($dir);
} else {
return false;
}
}
}