class RSpec::Mocks::AnyInstance::Recorder

@see Chain
@see AnyInstance
Further constraints are stored in instances of [Chain](Chain).
instances of ‘TheClass`.
which records stubs and message expectations for later playback on
Given a class `TheClass`, `TheClass.any_instance` returns a `Recorder`,

def allow_no_prepended_module_definition_of(method_name)

def allow_no_prepended_module_definition_of(method_name)
  prepended_modules = @klass.ancestors.take_while { |mod| !(Class === mod) }
  problem_mod = prepended_modules.find { |mod| mod.method_defined?(method_name) }
  return unless problem_mod
  raise RSpec::Mocks::MockExpectationError,
    "Using `any_instance` to stub a method (#{method_name}) that has been " +
    "defined on a prepended module (#{problem_mod}) is not supported."
end

def allow_no_prepended_module_definition_of(method_name)

def allow_no_prepended_module_definition_of(method_name)
  # nothing to do; prepends aren't supported on this version of ruby
end

def already_observing?(method_name)

Other tags:
    Private: -
def already_observing?(method_name)
  @observed_methods.include?(method_name) || super_class_observing?(method_name)
end

def ancestor_is_an_observer?(method_name)

def ancestor_is_an_observer?(method_name)
  lambda do |ancestor|
    unless ancestor == @klass
      ::RSpec::Mocks.space.
        any_instance_recorder_for(ancestor).already_observing?(method_name)
    end
  end
end

def backup_method!(method_name)

def backup_method!(method_name)
  alias_method_name = build_alias_method_name(method_name)
  @klass.class_exec do
    alias_method alias_method_name, method_name
  end if public_protected_or_private_method_defined?(method_name)
end

def build_alias_method_name(method_name)

Other tags:
    Private: -
def build_alias_method_name(method_name)
  "__#{method_name}_without_any_instance__"
end

def expect_chain(*method_names_and_optional_return_values, &block)

Other tags:
    Private: -
def expect_chain(*method_names_and_optional_return_values, &block)
  @expectation_set = true
  normalize_chain(*method_names_and_optional_return_values) do |method_name, args|
    observe!(method_name)
    message_chains.add(method_name, ExpectChainChain.new(self, *args, &block))
  end
end

def initialize(klass)

def initialize(klass)
  @message_chains = MessageChains.new
  @stubs = Hash.new { |hash,key| hash[key] = [] }
  @observed_methods = []
  @played_methods = {}
  @klass = klass
  @expectation_set = false
end

def instance_that_received(method_name)

Other tags:
    Private: -
def instance_that_received(method_name)
  @played_methods[method_name]
end

def mark_invoked!(method_name)

def mark_invoked!(method_name)
  backup_method!(method_name)
  recorder = self
  @klass.__send__(:define_method, method_name) do |*args, &blk|
    invoked_instance = recorder.instance_that_received(method_name)
    inspect = "#<#{self.class}:#{object_id} #{instance_variables.map { |name| "#{name}=#{instance_variable_get name}" }.join(', ')}>"
    raise RSpec::Mocks::MockExpectationError, "The message '#{method_name}' was received by #{inspect} but has already been received by #{invoked_instance}"
  end
end

def normalize_chain(*args)

def normalize_chain(*args)
  args.shift.to_s.split('.').map {|s| s.to_sym}.reverse.each {|a| args.unshift a}
  yield args.first, args
end

def notify_received_message(object, message, args, blk)

Other tags:
    Private: -
def notify_received_message(object, message, args, blk)
  has_expectation = false
  message_chains.each_unfulfilled_expectation_matching(message, *args) do |expectation|
    has_expectation = true
    expectation.expectation_fulfilled!
  end
  if has_expectation
    restore_method!(message)
    mark_invoked!(message)
  end
end

def observe!(method_name)

def observe!(method_name)
  allow_no_prepended_module_definition_of(method_name)
  if RSpec::Mocks.configuration.verify_partial_doubles?
    unless public_protected_or_private_method_defined?(method_name)
      raise MockExpectationError,
        "#{@klass} does not implement ##{method_name}"
    end
  end
  stop_observing!(method_name) if already_observing?(method_name)
  @observed_methods << method_name
  backup_method!(method_name)
  recorder = self
  @klass.__send__(:define_method, method_name) do |*args, &blk|
    recorder.playback!(self, method_name)
    self.__send__(method_name, *args, &blk)
  end
end

def playback!(instance, method_name)

Other tags:
    Private: -
def playback!(instance, method_name)
  RSpec::Mocks.space.ensure_registered(instance)
  message_chains.playback!(instance, method_name)
  @played_methods[method_name] = instance
  received_expected_message!(method_name) if message_chains.has_expectation?(method_name)
end

def public_protected_or_private_method_defined?(method_name)

def public_protected_or_private_method_defined?(method_name)
  MethodReference.method_defined_at_any_visibility?(@klass, method_name)
end

def received_expected_message!(method_name)

def received_expected_message!(method_name)
  message_chains.received_expected_message!(method_name)
  restore_method!(method_name)
  mark_invoked!(method_name)
end

def remove_dummy_method!(method_name)

def remove_dummy_method!(method_name)
  @klass.class_exec do
    remove_method method_name
  end
end

def restore_method!(method_name)

def restore_method!(method_name)
  if public_protected_or_private_method_defined?(build_alias_method_name(method_name))
    restore_original_method!(method_name)
  else
    remove_dummy_method!(method_name)
  end
end

def restore_original_method!(method_name)

def restore_original_method!(method_name)
  if @klass.instance_method(method_name).owner == @klass
    alias_method_name = build_alias_method_name(method_name)
    @klass.class_exec do
      remove_method method_name
      alias_method  method_name, alias_method_name
      remove_method alias_method_name
    end
  end
end

def should_not_receive(method_name, &block)

Other tags:
    See: Methods#should_not_receive -
def should_not_receive(method_name, &block)
  should_receive(method_name, &block).never
end

def should_receive(method_name, &block)

Other tags:
    See: Methods#should_receive -
def should_receive(method_name, &block)
  @expectation_set = true
  observe!(method_name)
  message_chains.add(method_name, PositiveExpectationChain.new(self, method_name, &block))
end

def stop_all_observation!

Other tags:
    Private: -
def stop_all_observation!
  @observed_methods.each {|method_name| restore_method!(method_name)}
end

def stop_observing!(method_name)

def stop_observing!(method_name)
  restore_method!(method_name)
  @observed_methods.delete(method_name)
  super_class_observers_for(method_name).each do |ancestor|
    ::RSpec::Mocks.space.
      any_instance_recorder_for(ancestor).stop_observing!(method_name)
  end
end

def stub(method_name, &block)

Other tags:
    See: Methods#stub -
def stub(method_name, &block)
  observe!(method_name)
  message_chains.add(method_name, StubChain.new(self, method_name, &block))
end

def stub_chain(*method_names_and_optional_return_values, &block)

Other tags:
    See: Methods#stub_chain -
def stub_chain(*method_names_and_optional_return_values, &block)
  normalize_chain(*method_names_and_optional_return_values) do |method_name, args|
    observe!(method_name)
    message_chains.add(method_name, StubChainChain.new(self, *args, &block))
  end
end

def super_class_observers_for(method_name)

def super_class_observers_for(method_name)
  @klass.ancestors.select(&ancestor_is_an_observer?(method_name))
end

def super_class_observing?(method_name)

def super_class_observing?(method_name)
  @klass.ancestors.any?(&ancestor_is_an_observer?(method_name))
end

def unstub(method_name)

Other tags:
    See: Methods#unstub -
def unstub(method_name)
  unless @observed_methods.include?(method_name.to_sym)
    raise RSpec::Mocks::MockExpectationError, "The method `#{method_name}` was not stubbed or was already unstubbed"
  end
  message_chains.remove_stub_chains_for!(method_name)
  stubs[method_name].clear
  stop_observing!(method_name) unless message_chains.has_expectation?(method_name)
end

def verify

Other tags:
    Api: - private
def verify
  if @expectation_set && !message_chains.all_expectations_fulfilled?
    raise RSpec::Mocks::MockExpectationError, "Exactly one instance should have received the following message(s) but didn't: #{message_chains.unfulfilled_expectations.sort.join(', ')}"
  end
end