dqq9695 2016-03-25 22:55
浏览 50
已采纳

无法使用PHPUnit对vagrant box执行任何测试

I am working for a company. I know how to ran PHPUnit tests on vagrant box. But I don't know why i can't run any test on their vagrant box configured using chef. Whenever i am running PHPUnit command, i am getting below error:

There was 1 failure:

1) ExampleTest::testBasicExample
A request to [en/contact] failed. Received status code [404].

/..../vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithPages.php:178
/..../vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithPages.php:72
/..../vendor/laravel/framework/src/Illuminate/Foundation/Testing/Concerns/InteractsWithPages.php:53
/..../tests/ExampleTest.php:16

Caused by
ErrorException: Cannot modify header information - headers already sent by (output started at /..../vendor/phpunit/phpunit/src/Util/Printer.php:133) in /..../app/Http/Middleware/SetCookieData.php:17

Any help will be very much appreciable.

  • 写回答

1条回答 默认 最新

  • dongzhonggua4229 2016-03-26 06:45
    关注

    Your test is running just fine. In your example test, you made a call to visit('en/contact'). It attempted to visit that url, but instead of a 200, it got a 404. The display you are seeing is the result of your test attempting to visit that url.

    The problem is that your code in app/Http/Middleware/SetCookieData.php is attempting to modify the headers (using the header() function), but PHPUnit has already written output to STDOUT. So, PHP is throwing an error that you're attempting to modify headers after writing output.

    There are a couple answers[1][2][3] for this issue already, but to summarize here:

    1. Run PHPUnit with the --stderr option (or add stderr="true" to your phpunit.xml). This way, PHPUnit will write to STDERR, so PHP won't complain about having already written to STDOUT. This is probably the easiest option.

    2. Trying using the @runInSeparateProcess annotation for your test. Though, you may run into issues because of the complexity of the framework. Additionally, you will probably have many tests that need this annotation, and that will be resource intensive.

      /**
       * @runInSeparateProcess
       */
      public function testBasicExample()
      {
          // visit('en/contact');
      }
      
    3. Run PHPUnit with the --process-isolation flag (or add processIsolation="true" to your phpunit.xml). Likely same issues as the @runInSeparateProcess annotation.

    4. Mock the built-in header() function to not actually send headers. Though, this may change how your pages react, so you will probably end up having to write more testing code.

    References:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀