欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

codeception 单元测试 Undefined index: HTTP_HOST

程序员文章站 2022-04-07 19:19:13
...

如题codeception 单元测试 Undefined index: HTTP_HOST 报错

codeception  单元测试  Undefined index: HTTP_HOST

测试驱动代码:

codeception  单元测试  Undefined index: HTTP_HOST

commonconfigmain.php 跨域登陆代码 :

codeception  单元测试  Undefined index: HTTP_HOST

测试驱动运行到common\config\main.php时 报 Undefined index: HTTP_HOST 错误 请问如何解决。

回复内容:

如题codeception 单元测试 Undefined index: HTTP_HOST 报错

codeception  单元测试  Undefined index: HTTP_HOST

测试驱动代码:

codeception  单元测试  Undefined index: HTTP_HOST

commonconfigmain.php 跨域登陆代码 :

codeception  单元测试  Undefined index: HTTP_HOST

测试驱动运行到common\config\main.php时 报 Undefined index: HTTP_HOST 错误 请问如何解决。

在 bootstrap 文件里面定义如下变量,比如
$_SERVER['HTTP_HOST'] = 'foo.com';
因为 codeception 的单元,PHP 在 cli 模式下运行,$_SERVER 下面 HTTP 开头的一些变量并没有定义,所以你得手动定义,模拟 web 的一些数据,那样运行到那个地方就不会报错了。

我建议你使用验收测试,或者你将你的代码封装到功能类中,然后使用功能测试,这样直接把代码写到测试驱动中是没有意义的

相关标签: php