测试递归方法

时间:2014-06-28 14:19:19

标签: php unit-testing testing phpunit

我想测试方法

public function get($key)
{
    if (!($time = $this->driver->get($key))) {
        if ($key == self::LAST_UPDATE_KEY) {
            $time = new \DateTime();
            $this->driver->set($key, $time);
        } else {
            $time = $this->get(self::LAST_UPDATE_KEY); // need test this condition
        }
    }

    return $time;
}

来自驱动程序的第一个请求数据应返回null,而第二个含义对我来说是必要的。

我写了一个测试

public function testGetEmpty()
{
    $time = new \DateTime();
    $driver_mock = $this
        ->getMockBuilder('MyDriver')
        ->getMock();
    $driver_mock
        ->expects($this->once())
        ->method('get')
        ->with('foo')
        ->will($this->returnValue(null));
    $driver_mock
        ->expects($this->once())
        ->method('get')
        ->with(Keeper::LAST_UPDATE_KEY)
        ->will($this->returnValue($time));

    $obj = new Keeper($driver_mock);
    $this->assertEquals($time, $obj->get('foo'));
}

on execute返回错误

Expectation failed for method name is equal to <string:get> when invoked 1 time(s)
Parameter 0 for invocation MyDriver::get('foo') does not match expected value.
Failed asserting that two strings are equal.
--- Expected
+++ Actual
@@ @@
-'last-update'
+'foo'

很长一段时间我没有写单元测试,很多人都忘记了。帮帮我理解。

2 个答案:

答案 0 :(得分:0)

需要使用$this->at(0)$this->at(1)

答案 1 :(得分:0)

如果您仍在寻找有关该指南的指南,并且不确定在哪里使用at(),则需要使用答案中的示例将其设置为expects的一部分。应该看起来像这样。

public function testGetEmpty()
{
    $time = new \DateTime();
    $driver_mock = $this
        ->getMockBuilder('MyDriver')
        ->getMock();
    $driver_mock
        ->expects($this->at(0))
        ->method('get')
        ->with('foo')
        ->will($this->returnValue(null));
    $driver_mock
        ->expects($this->at(1))
        ->method('get')
        ->with(Keeper::LAST_UPDATE_KEY)
        ->will($this->returnValue($time));

    $obj = new Keeper($driver_mock);
    $this->assertEquals($time, $obj->get('foo'));
}

在这种情况下,at将定义何时应使用每个调用。