为什么PHPUnit仍然在SQL错误上失败,即使我已经捕获了异常

时间:2015-05-15 15:55:32

标签: php database phpunit

我正在尝试构建一个包装器类,它简化了我的应用程序中的SQL访问(除其他外)。使用PHPUnit测试我的类时,SQL错误会导致测试并将错误消息吐出到控制台,尽管我已经捕获并处理了异常。

我尝试过使用@expectedexception。这是有效的,除了我现在不能做更多的断言;我想测试该方法将错误作为数组返回。

任何帮助都非常感激。

$db->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);

// Prepare query and respond to errors. If there is errors, stop processing any more queries
try {
    $PDOQuery = $db->prepare($query['query']);
}
catch ( PDOException $error )
{
    $error = $error->errorInfo;
    $this->parent->errors[] = array( 'type' => 'Database error (Prepare)',
        'details' => 'The MySQL server returned an error. Check your DB logs for more details' );

    error_log( "SQL Prepare Error code (SQLSTATE): $error[0]");
    error_log( "SQL Prepare Error code (Vendor): $error[1]");
    error_log( "SQL Prepare Error message: $error[2]");
    break;
}


try {
    // Execute query and respond to errors. If there is errors, stop processing any more queries
    $result = $PDOQuery->execute(isset ($query['params']) ? $query['params'] : array());
}

catch ( PDOException $error ) {
    $error = $error->errorInfo();

    $logsMessage = "Check your server logs for more information.";

    switch($error[1])
    {
        case 1452: $message = "MySQL failed to add a row. Possibly you missed out some mandatory fields? $logsMessage"; break;
        default: $message = "MySQL Returned an error (Execute). $logsMessage"; break;
    }

    $this->parent->errors[] = array( 'type' => 'Database error',
        'details' => $message );

    error_log( "SQL Execute Error code (SQLSTATE): $error[0]");
    error_log( "SQL Execute Error code (Vendor): $error[1]");
    error_log( "SQL Execute Error message: $error[2]");
    break;
}

1 个答案:

答案 0 :(得分:0)

好的,所以我找出了问题所在。

我的代码在命名空间中,我忘了在catch语句中引用全局命名空间。

所以我把它改成了

catch ( \PDOException $error )

我的问题解决了。