我正在实现一个模块,该模块将提供一个 API 来处理和管理 PHP 会话。我正在测试Session\Manager
允许用户启动会话、设置 ID、获取 ID、销毁会话等的实现。我正在使用 PHPUnit 的@runInSeparateProcess
注释在单独的进程中测试此类中的方法。当我使用这个注释时,由于反序列化错误,我得到了 PHPUnit 抛出的异常。当我不使用注释时,测试按预期运行,并且在 null 不等于 false 时失败。
这是导致错误的测试。到目前为止还没有实现细节,接口的所有方法都存在但不执行任何操作。
class ManagerTest extends PHPUnitTestCase {
/**
* Ensures that if the session has not been started yet the sessionExists
* method returns false.
*
* @runInSeparateProcess
*/
public function testSessionExistsWhenSessionHasNotBeenStarted() {
$Manager = new \Session\Manager();
$this->assertFalse($Manager->sessionExists());
}
}
我能够将问题追溯到以下PHPUnit_Util_PHP::runJob()
方法。我正在运行 PHPUnit 3.7.5,runJob
被调用的方法是:
/**
* Runs a single job (PHP code) using a separate PHP process.
*
* @param string $job
* @param PHPUnit_Framework_TestCase $test
* @param PHPUnit_Framework_TestResult $result
* @return array|null
* @throws PHPUnit_Framework_Exception
*/
public function runJob($job, PHPUnit_Framework_Test $test = NULL, PHPUnit_Framework_TestResult $result = NULL)
{
$process = proc_open(
$this->getPhpBinary(),
array(
0 => array('pipe', 'r'),
1 => array('pipe', 'w'),
2 => array('pipe', 'w')
),
$pipes
);
if (!is_resource($process)) {
throw new PHPUnit_Framework_Exception(
'Unable to create process for process isolation.'
);
}
if ($result !== NULL) {
$result->startTest($test);
}
$this->process($pipes[0], $job);
fclose($pipes[0]);
$stdout = stream_get_contents($pipes[1]);
fclose($pipes[1]);
$stderr = stream_get_contents($pipes[2]);
fclose($pipes[2]);
proc_close($process);
$this->cleanup();
if ($result !== NULL) {
$this->processChildResult($test, $result, $stdout, $stderr);
} else {
return array('stdout' => $stdout, 'stderr' => $stderr);
}
}
该行$stdout = stream_get_contents($pipes[1]);
导致$stdout
等于一长串?
. in$this->processChildResult
中的值$stdout
未序列化并且传递给此函数的无效值会触发警告,从而引发异常。我还能够确定 is 的返回$this->getPhpBinary()
值/usr/bin/php
。
抛出异常消息:
PHPUnit_Framework_Exception: ???...???"*???...??
Caused by
ErrorException: unserialize(): Error at offset 0 of 10081 bytes
多亏了 hek2mgl,$job
可以在这个 gist 中查看 PHP 代码,其中包含 $job 上的 var_dump 的输出。我创建了一个链接,因为它是相当多的代码,而且这个问题已经很长了。
我对这个特定领域的知识已经到了尽头,不知道如何进一步调试这个问题。我不确定为什么@runInSeparateProcess
会失败以及为什么$stdout
运行单独的进程会导致一长串 ? 分数。什么可能导致此问题,我该如何解决?我对这个模块处于停顿状态,因为未来的测试需要在单独的进程中运行,以确保会话的启动和销毁不会影响测试。
- PHP: 5.3.15
- PHPUnit:3.7.5
- IDE 和命令行测试运行程序中导致的错误