设置HTTP标头以便能够运行测试用例

时间:2013-07-20 12:17:46

标签: php unit-testing phpunit output-buffering

我正在使用phpunit。我想测试我的代码,它基本上从HTTP头获取参数并使用它来执行后续操作。

但是测试标题时为空。

有没有办法设置标题(可能在bootstrap文件中),这样当我的代码访问参数时它会获得该值?

更新:我按照question中的建议尝试了以下代码:

class Action_UserTest extends PHPUnit_Framework_TestCase {

    /**
     * @runInSeparateProcess
     */
    public function testBar()
    {
        header('Location : foo');
    }

    /**
     * @covers Action_User::executePut
     * @todo   Implement testExecutePut().
     */
    public function testExecutePut() {

        ob_start();
        $this->testBar();
        $headers_list = headers_list();
        $this->assertNotEmpty($headers_list);
        $this->assertContains('Location: foo', $headers_list);
        header_remove();
        ob_clean();
    } 
}

但是给出错误:

Action_UserTest::testExecutePut()
Cannot modify header information - headers already sent by (output started at /usr/lib/php/PHPUnit/Util/Printer.php:172)

1 个答案:

答案 0 :(得分:0)

如果您使用的是testdox或类似的东西,则无法使用PHPUnit 3捕获标头。我忘了哪一个,但是当我上次查看时,其中一个格式化程序被窃听了。

此外,您需要创建一个bootstrap.php,其中真正需要的只是ob_start();

然后phpunit -b bootstrap.php UnitTest.php。看看是否有效。

如果没有,如果你给这个问题一个赏金,我会更深入地研究它。