PHPSpec:发布PDO :: execute的问题

时间:2014-08-20 17:41:45

标签: php pdo bdd phpspec

我有使用PHPSpec和预言来解决PDO :: execute的问题,但我一直收到错误:

29  ! it should perform PDO queries
  method `Double\PDO\P3::execute()` is not defined.

   0 vendor/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php:48
     throw new Prophecy\Exception\Doubler\MethodNotFoundException("Method `Double\PDO\P3::ex"...)
   1 vendor/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php:242
     Prophecy\Prophecy\MethodProphecy->__construct([obj:Prophecy\Prophecy\ObjectProphecy], "execute", [obj:Prophecy\Argument\ArgumentsWildcard])
   2 [internal]
     Prophecy\Prophecy\ObjectProphecy->__call("execute", [array:1])
   3 [internal]
     spec\Devtools\MysqlModelSpec->it_should_perform_PDO_queries([obj:PhpSpec\Wrapper\Collaborator])

这是我的规范:

class MysqlModelSpec extends ObjectBehavior
{
    function let(\PDO $connection)
    {
        $this->beConstructedWith($connection);
    }

    function it_should_perform_PDO_queries(\PDO $connection)
    {
        $connection->prepare(
            "SELECT :key FROM :collection WHERE :where"
        )->willReturn(true);

        $connection->execute(
            array(
                'key' => 'user_name',
                'collection' => 'users',
                'where' => 'userid=1'
            )
        )->willReturn(true);

        $this->get('user_name', 'users', 'userid=1')
            ->shouldReturn(
                array('user_name' => 'seagoj')
            );
    }
}

我知道Prophecy并不存在任何不存在的方法,但PDO已经融入PHP并且PDO :: prepare存根工作正常。感谢您提供任何帮助。

1 个答案:

答案 0 :(得分:2)

如果这些只是简单地调用PDO,那么它就没有正确使用PDO。

核心PDO对象没有execute()方法。这纯粹是为了准备好的陈述,这是->prepare()返回的内容。有 IS ->exec()可以立即执行查询,但这并不支持预备语句。

基本顺序是

$stmt = $pdo->prepare('...');
$stmt->execute(...);