在PHPSpec(或任何单元测试框架)中对有状态对象进行存根

时间:2015-03-30 13:38:08

标签: php unit-testing testing phpspec

你如何去存储一个也包含一些逻辑的DTO(哪种方式比DTO还要多?)?你会把它存根吗?考虑这个简单的例子:

class Context
{
    /**
     * @var string
     */
    private $value;

    function __construct($value)
    {
        $this->value = $value;
    }

    public function getValue()
    {
        return $this->value;
    }

    public function setValue($value)
    {
        $this->value = $value;
    }


    /*
     * Some logic that we assume belong here
     */

}


class Interpreter
{
    public function interpret(Context $context)
    {
        $current_context = $context->getValue();

        if(preg_match('/foo/', $current_context ))            
        {
            $context->setValue(str_replace('foo', 'bar', $current_context));

            $this->interpret();
        }

        return $context->getValue();
    }
}

现在,以PHPSpec方式单元测试Interpreter

class InterpreterSpec 
{
    function it_does_something_cool_to_a_context_stub(Context $context)
    {
        $context->getValue()->shouldReturn('foo foo');

        $this->intepret($context)->shouldReturn("bar bar");
    }
}

显然这会创造一个无限循环。您如何进行口译员的单元测试?我的意思是,如果你只是将Context的“真实”实例传递给它,你就会依赖于那个对象的行为,而它实际上并不是一个单元测试。

1 个答案:

答案 0 :(得分:1)

根据我在代码中看到的内容,我不会伪造上下文,而是使用真实的上下文。据我所知,它是一个只访问getter和setter的值对象。

class InterpreterSpec 
{
    function it_does_something_cool_to_a_context_stub()
    {
        $context = new Context("foo foo");

        $this->intepret($context)->shouldReturn("bar bar");
    }
}