1

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

但是在测试标头时为空。

有什么方法可以设置标头(可能在引导文件中),以便当我的代码访问参数时,它会获得该值?

更新:我按照这个问题 的建议尝试了下面的代码:

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)
4

1 回答 1

0

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

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

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

如果没有,如果您为这个问题分配了赏金,我会更深入地研究它。

于 2013-08-09T18:59:31.247 回答