1

我有一些在 PHPUnit 中运行的 PHPT 测试。这些测试包括--CLEAN--处理删除测试期间创建的文件的部分。在命令行使用 PHPT 测试运行pear run-tests正常,但是当它们通过 PHPUnit 运行时,我收到以下错误:

无聊——干净——部分!输出:
X-Powered-By:PHP/5.3.10-1ubuntu3.2
内容类型:text/html

这显然看起来像一个 HTTP 标头,但没有进一步的文本,并且干净部分中的操作仍然按计划工作。删除 CLEAN 部分可以解决问题,但我宁愿不在 PHPT 文件之外进行测试清理。关于这些是由什么引起的以及如何摆脱它们的任何想法?他们没有破坏测试,但他们在输出中看起来不整洁。

PHPT 测试(POST 文件数据被截断以保护我的工作):

--TEST--
Test file upload
--POST_RAW-- 
Content-Type: multipart/form-data; boundary=---------------------------168481652011378167832091260413
Content-Length: 3510

-----------------------------168481652011378167832091260413
Content-Disposition: form-data; name="code"

te
-----------------------------168481652011378167832091260413
Content-Disposition: form-data; name="name"

test
-----------------------------168481652011378167832091260413
Content-Disposition: form-data; name="file"; filename="test.xml"
Content-Type: text/xml

<?xml  version="1.0" encoding="utf-8"?>
<testElement>
    <innerElement />
</testElement>

-----------------------------168481652011378167832091260413--
--FILE--
<?php
// Zend/PHPUnit bootstrap
require_once __DIR__ . '/../../../bootstrap.php';

$upload = new My_File_Upload();
var_dump($upload->handleFile(
    'file', 
    APPLICATION_PATH . '/../datafiles/request/',
    'application/xml',
    'testname'
));
var_dump(file_exists(APPLICATION_PATH . '/../datafiles/request/testname.xml'))
?>
--CLEAN--
<?php
    $file = dirname(__FILE__) . '/../../../../datafiles/request/testname.xml';
    if(file_exists($file)) unlink($file);
?>
--EXPECT--
string(12) "testname.xml"
bool(true)

Zend/PHPUnit 测试包装器:

<?php
require_once 'PHPUnit/Extensions/PhptTestCase.php';
/**
 * UploadFileHandleTest
 * 
 * PHPUnit wrapper for the phpt test file UploadFileHandleTest.phpt
 *
 */
class My_File_UploadFileHandle extends PHPUnit_Extensions_PhptTestCase
{
    /**
     * Test file uploads
     * 
     * Test the file uploads using associated .phpt test files. These test have to 
     * be abstracted to the php-cgi environment to permit accurate manipulation of 
     * the $_FILES superglobal. 
     * 
     * @see http://qafoo.com/blog/013_testing_file_uploads_with_php.html
     * 
     * @covers My_File_Upload::handleFile
     * 
     * @return void
     */
    public function __construct() 
    { 
        parent::__construct(__DIR__ . '/UploadFileHandleTest.phpt'); 
    }

    /**
     * Implement missing hasOutput method for PHPUnit
     * 
     * @return boolean 
     */
    public function hasOutput()
    {
        return false;
    }
}

触发包装器的测试套件:

<?php

require_once 'UploadFileExists.php';
require_once 'UploadFileHandle.php';
require_once 'UploadFileHandleNoName.php';
require_once 'UploadFileHandleExceptions.php';

class My_File_UploadTestSuite extends PHPUnit_Framework_TestSuite
{
    public static function suite()
    {
        $suite = new My_File_UploadTestSuite('My_File_UploadFileTests');

        $suite->addTest(new My_File_UploadFileExists());
        $suite->addTest(new My_File_UploadFileHandle());
        $suite->addTest(new My_File_UploadFileHandleNoName());
        $suite->addTest(new My_File_UploadFileHandleExceptions());

        return $suite;
    }
}
4

1 回答 1

3

这是由于使用 PHP CGI 可执行文件而不是 CLI 版本来运行测试造成的。CGI 二进制文件将在响应前面附加两个标头,如果在 --CLEAN-- 部分中运行的代码提供了输出,则用于测试的 PEAR 模块将尖叫 bork bork 和血腥谋杀。将测试指向正确的 PHP 二进制文件,问题应该会消失。

:~$ echo "" | php5-cgi
X-Powered-By: PHP/5.3.10-1ubuntu3.2
Content-type: text/html

更新:这是由 PEAR_RunTest 中的错误引起的,在运行 --CLEAN-- 部分时,它不会重置要使用的解释器。我已经修补了 PEAR_RunTest 来解决这个问题并提交了一个 PR 来解决这个问题。

于 2012-07-19T08:42:21.510 回答