34

我最近遇到了不同的教程,人们在其中同时使用mockmock_model函数。

控制器的 RSpec 教程中,他们使用该mock_model功能,但在RSpec 的文档中,只有mock功能,但没有mock_model

我尝试自己进行一些测试,但没有发现任何真正的区别,因为当我使用这两个功能中的任何一个时一切都很好,那么有什么区别吗?

4

2 回答 2

33

正如 jenger 所说, mock_model 是为活动记录而构建的扩展:

这是 1.2.6 中的来源:

     def mock_model(model_class, options_and_stubs = {})
        id = options_and_stubs[:id] || next_id
        options_and_stubs = options_and_stubs.reverse_merge({
          :id => id,
          :to_param => id.to_s,
          :new_record? => false,
          :errors => stub("errors", :count => 0)
        })
        m = mock("#{model_class.name}_#{id}", options_and_stubs)
        m.__send__(:__mock_proxy).instance_eval <<-CODE
          def @target.as_new_record
            self.stub!(:id).and_return nil
            self.stub!(:to_param).and_return nil
            self.stub!(:new_record?).and_return true
            self
          end
          def @target.is_a?(other)
            #{model_class}.ancestors.include?(other)
          end
          def @target.kind_of?(other)
            #{model_class}.ancestors.include?(other)
          end
          def @target.instance_of?(other)
            other == #{model_class}
          end
          def @target.class
            #{model_class}
          end
        CODE
        yield m if block_given?
        m
      end

所以它很拗口,但它

  • 将 id 与序列中的下一个存根
  • 存根 to_param
  • 存根新记录?与假
  • 存根错误,因此它认为没有错误

它还用一堆东西扩展了模型实例。

于 2009-08-12T09:30:30.560 回答
9

来自:RSpec 模拟的有用助手

首先,mock_model自动定义使用它创建的模型的唯一 ID。其次,它定义了方法to_param(返回 id 的字符串表示形式)和 new_record?(返回 false)。

于 2009-08-12T02:18:30.677 回答