class FlexMock::PartialMockProxy

PartialMockProxy is used to mate the mock framework to an existing object. The object is “enhanced” with a reference to a mock object (stored in @flexmock_proxy). When the should_receive method is sent to the proxy, it overrides the existing object's method by creating singleton method that forwards to the mock. When testing is complete, PartialMockProxy will erase the mocking infrastructure from the object being mocked (e.g. remove instance variables and mock singleton methods).

Constants

MOCK_METHODS

The following methods are added to partial mocks so that they can act like a mock.

ProxyBox

Attributes

mock[R]

Public Class Methods

make_proxy_for(obj, container, name, safe_mode) click to toggle source

Make a partial mock proxy and install it on the target obj.

# File lib/flexmock/partial_mock.rb, line 34
def self.make_proxy_for(obj, container, name, safe_mode)
  name ||= "flexmock(#{obj.class.to_s})"
  if ! proxy_defined_on?(obj)
    mock = FlexMock.new(name, container)
    proxy = PartialMockProxy.new(obj, mock, safe_mode)
    if obj.instance_variable_defined?("@flexmock_proxy")
      obj.instance_variable_get("@flexmock_proxy").proxy = proxy
    else
      obj.instance_variable_set("@flexmock_proxy", ProxyBox.new(proxy))
    end
  end
  obj.instance_variable_get("@flexmock_proxy").proxy
end
new(obj, mock, safe_mode) click to toggle source

Initialize a PartialMockProxy object.

# File lib/flexmock/partial_mock.rb, line 65
def initialize(obj, mock, safe_mode)
  @obj = obj
  @mock = mock
  @method_definitions = {}
  @methods_proxied = []
  @proxy_definition_module = nil
  unless safe_mode
    add_mock_method(:should_receive)
    MOCK_METHODS.each do |sym|
      unless @obj.respond_to?(sym)
        add_mock_method(sym)
      end
    end
  end
end
proxy_defined_on?(obj) click to toggle source

Is there a mock proxy defined on the domain object?

# File lib/flexmock/partial_mock.rb, line 49
def self.proxy_defined_on?(obj)
  obj.instance_variable_defined?("@flexmock_proxy") &&
    obj.instance_variable_get("@flexmock_proxy").proxy
end

Public Instance Methods

add_mock_method(method_name) click to toggle source
# File lib/flexmock/partial_mock.rb, line 125
def add_mock_method(method_name)
  stow_existing_definition(method_name)
  proxy_module_eval do
    define_method(method_name) { |*args, &block|
      proxy = __flexmock_proxy or
        fail "Missing FlexMock proxy " +
             "(for method_name=#{method_name.inspect}, self=\#{self})"
      proxy.send(method_name, *args, &block)
    }
  end
end
any_instance(&block) click to toggle source

#any_instance is present for backwards compatibility with version 0.5.0. @deprecated

# File lib/flexmock/deprecated_methods.rb, line 54
def any_instance(&block)
  $stderr.puts "any_instance is deprecated, use new_instances instead."
  new_instances(&block)
end
flexmock_based_on(*args) click to toggle source

Forward the based on request.

# File lib/flexmock/partial_mock.rb, line 249
def flexmock_based_on(*args)
  @mock.flexmock_based_on(*args)
end
flexmock_calls() click to toggle source

Forward to the mock

# File lib/flexmock/partial_mock.rb, line 234
def flexmock_calls
  @mock.flexmock_calls
end
flexmock_container() click to toggle source

Forward to the mock's container.

# File lib/flexmock/partial_mock.rb, line 224
def flexmock_container
  @mock.flexmock_container
end
flexmock_container=(container) click to toggle source

Set the proxy's mock container. This set value is ignored because the proxy always uses the container of its mock.

# File lib/flexmock/partial_mock.rb, line 240
def flexmock_container=(container)
end
flexmock_define_expectation(location, *args) click to toggle source
# File lib/flexmock/partial_mock.rb, line 110
def flexmock_define_expectation(location, *args)
  EXP_BUILDER.parse_should_args(self, args) do |method_name|
    unless @methods_proxied.include?(method_name)
      hide_existing_method(method_name)
    end
    ex = @mock.flexmock_define_expectation(location, method_name)
    ex.mock = self
    ex
  end
end
flexmock_expectations_for(method_name) click to toggle source

Forward the request for the expectation director to the mock.

# File lib/flexmock/partial_mock.rb, line 244
def flexmock_expectations_for(method_name)
  @mock.flexmock_expectations_for(method_name)
end
flexmock_find_expectation(*args) click to toggle source
# File lib/flexmock/partial_mock.rb, line 121
def flexmock_find_expectation(*args)
  @mock.flexmock_find_expectation(*args)
end
flexmock_get() click to toggle source

Get the mock object for the partial mock.

# File lib/flexmock/partial_mock.rb, line 82
def flexmock_get
  @mock
end
flexmock_invoke_original(method, args) click to toggle source

Invoke the original definition of method on the object supported by the stub.

# File lib/flexmock/partial_mock.rb, line 188
def flexmock_invoke_original(method, args)
  if original_method = @method_definitions[method]
    if Proc === args.last
      block = args.last
      args = args[0..-2]
    end
    original_method.bind(@obj).call(*args, &block)
  else
    @obj.__send__(:method_missing, method, *args, &block)
  end
end
flexmock_received?(*args) click to toggle source

Forward to the mock

# File lib/flexmock/partial_mock.rb, line 229
def flexmock_received?(*args)
  @mock.flexmock_received?(*args)
end
flexmock_teardown() click to toggle source

Remove all traces of the mocking framework from the existing object.

# File lib/flexmock/partial_mock.rb, line 207
def flexmock_teardown
  if ! detached?
    proxy_module_eval do
      methods = instance_methods(false).to_a
      methods.each do |m|
        remove_method m
      end
    end
    if @obj.instance_variable_defined?(:@flexmock_proxy) &&
        (box = @obj.instance_variable_get(:@flexmock_proxy))
      box.proxy = nil
    end
    @obj = nil
  end
end
flexmock_verify() click to toggle source

Verify that the mock has been properly called. After verification, detach the mocking infrastructure from the existing object.

# File lib/flexmock/partial_mock.rb, line 202
def flexmock_verify
  @mock.flexmock_verify
end
should_receive(...) click to toggle source
new_instances { |instance| instance.should_receive(...) }

#new_instances is a short cut method for overriding the behavior of any new instances created via a mocked class object.

By default, #new_instances will mock the behaviour of the :new method. If you wish to mock a different set of class methods, just pass a list of symbols to as arguments. (previous versions also mocked :allocate by default. If you need :allocate to be mocked, just request it explicitly).

For example, to stub only objects created by :make (and not :new), use:

flexmock(ClassName).new_instances(:make).should_receive(...)
# File lib/flexmock/partial_mock.rb, line 155
def new_instances(*allocators, &block)
  fail ArgumentError, "new_instances requires a Class to stub" unless
    Class === @obj
  location = caller
  allocators = [:new] if allocators.empty?
  expectation_recorder = ExpectationRecorder.new
  allocators.each do |allocate_method|
    flexmock_define_expectation(location, allocate_method).and_return { |*args|
      create_new_mocked_object(
        allocate_method, args, expectation_recorder, block)
    }
  end
  expectation_recorder
end
should_receive(:method_name) click to toggle source
should_receive(:method1, method2, ...)
should_receive(:meth1 => result1, :meth2 → result2, ...)

Declare that the partial mock should receive a message with the given name.

If more than one method name is given, then the mock object should expect to receive all the listed melthods. If a hash of method name/value pairs is given, then the each method will return the associated result. Any expectations applied to the result of should_receive will be applied to all the methods defined in the argument list.

An expectation object for the method name is returned as the result of this method. Further expectation constraints can be added by chaining to the result.

See Expectation for a list of declarators that can be used.

# File lib/flexmock/partial_mock.rb, line 106
def should_receive(*args)
  flexmock_define_expectation(caller, *args)
end

Private Instance Methods

create_new_mocked_object(allocate_method, args, recorder, block) click to toggle source

Create a new mocked object.

The mocked object is created using the following steps: (1) Allocate with the original allocation method (and args) (2) Pass to the block for custom configuration. (3) Apply any recorded expecations

# File lib/flexmock/partial_mock.rb, line 177
def create_new_mocked_object(allocate_method, args, recorder, block)
  new_obj = flexmock_invoke_original(allocate_method, args)
  mock = flexmock_container.flexmock(new_obj)
  block.call(mock) unless block.nil?
  recorder.apply(mock)
  new_obj
end
define_proxy_method(method_name) click to toggle source

Define a proxy method that forwards to our mock object. The proxy method is defined as a singleton method on the object being mocked.

# File lib/flexmock/partial_mock.rb, line 306
def define_proxy_method(method_name)
  if method_name =~ /=$/
    proxy_module_eval do
      define_method(method_name) do |*args, &block|
        __flexmock_proxy.mock.__send__(method_name, *args, &block)
      end
    end
  else
    proxy_module_eval <<-EOD
      def #{method_name}(*args, &block)
        FlexMock.verify_mocking_allowed!
        __flexmock_proxy.mock.#{method_name}(*args, &block)
      end
    EOD
  end
end
detached?() click to toggle source

Have we been detached from the existing object?

# File lib/flexmock/partial_mock.rb, line 324
def detached?
  @obj.nil?
end
hide_existing_method(method_name) click to toggle source

Hide the existing method definition with a singleton defintion that proxies to our mock object. If the current definition is a singleton, we need to record the definition and remove it before creating our own singleton method. If the current definition is not a singleton, all we need to do is override it with our own singleton.

# File lib/flexmock/partial_mock.rb, line 288
def hide_existing_method(method_name)
  stow_existing_definition(method_name)
  define_proxy_method(method_name)
end
proxy_module_eval(*args, &block) click to toggle source

Evaluate a block into the module we use to define the proxy methods

# File lib/flexmock/partial_mock.rb, line 267
def proxy_module_eval(*args, &block)
  if !@proxy_definition_module
    obj = @obj
    @proxy_definition_module = m = Module.new do
      define_method(:__flexmock_proxy) do
        if box = obj.instance_variable_get(:@flexmock_proxy)
          box.proxy
        end
      end
    end
    target_class_eval { prepend m }
  end
  @proxy_definition_module.class_eval(*args, &block)
end
stow_existing_definition(method_name) click to toggle source

Stow the existing method definition so that it can be recovered later.

# File lib/flexmock/partial_mock.rb, line 295
def stow_existing_definition(method_name)
  if !@methods_proxied.include?(method_name)
    @method_definitions[method_name] = target_class_eval { instance_method(method_name) }
    @methods_proxied << method_name
  end
rescue NameError
end
target_class_eval(*args, &block) click to toggle source

Evaluate a block (or string) in the context of the singleton class of the target partial object.

# File lib/flexmock/partial_mock.rb, line 262
def target_class_eval(*args, &block)
  target_singleton_class.class_eval(*args, &block)
end
target_singleton_class() click to toggle source

The singleton class of the object.

# File lib/flexmock/partial_mock.rb, line 256
def target_singleton_class
  @obj.singleton_class
end