0

verifyText 等方法不报告失败的行号,因此很难找到失败点。

Selenium IDE PHPUnit 导出创建的代码如下所示:

try {
    $this->assertEquals($text, $this->getTitle());
} catch (PHPUnit_Framework_AssertionFailedError $e) {
    array_push($this->verificationErrors, $e->toString());
}

此行的输出类似于下面的第 2 行,完全无法追踪

Failed asserting that '' matches PCRE pattern "/Harlem/".
Failed asserting that two strings are equal.
Failed asserting that '(Pattern A)' matches PCRE pattern "/\(Pattern B\)/".

我已经修改了调用以包含引用的文本,这让我可以搜索文本失败,但在大型测试中这还不够。如何获取代码中每个验证失败的行号/堆栈跟踪?

public function verifyTitle($text) {
    $title = $this->getTitle();
    try {
        $this->assertEquals($text, $title);
    } catch (PHPUnit_Framework_AssertionFailedError $e) {
        array_push($this->verificationErrors,
             "Title is '$title' but should be '$text'");
    }
}

注意:为了让堆栈跟踪返回对我的断言代码的引用,我正在使用堆栈跟踪黑客

4

1 回答 1

1

Created this verification Method to include (too much) stacktrace:

public function appendVerification($message,$e) {
        array_push($this->verificationErrors,$message."\n".$this->dumpStack($e));
}

I also updated the referenced dumpStack method for PHPUnit tests to dumbly strip out framework calls by class name

protected function dumpStack(Exception $e) {
    $stack = '';
    foreach ($e->getTrace() as $trace) {
        if (isset($trace['file']) &&
                isset($trace['line'])) {
            if (!isFramework($trace['file']))
                $stack .= PHP_EOL .
                        $trace['file'] . ':' .
                        $trace['line'] . ' ';
        }
    }
    return $stack;
}

function isFramework($fileName) {
   $test = ((preg_match("/PHPUnit/i",$fileName) +
           preg_match("/php.phpunit/i",$fileName)) > 0);
   return $test;
}

End result, clickable in netbeans, free of any PHPUnit framework line numbers

Failed asserting that 'waitForElementPresent failed for selector: css=input#address.valid' is false.
C:\dev\Automation_Dev\phpTests\library\SeleniumUtilsTestCase.php:228
C:\dev\Automation_Dev\phpTests\library\SeleniumUtilsTestCase.php:115
C:\dev\Automation_Dev\phpTests\library\SeleniumTestCase.php:176
C:\dev\Automation_Dev\phpTests\usecases\CreateListingTest.php:72
C:\dev\Automation_Dev\phpTests\usecases\CreateListingTest.php:39
C:\dev\Automation_Dev\phpTests\usecases\CreateListingTest.php:23
C:\xampp\php\phpunit:46
于 2012-05-17T18:57:46.653 回答