Class: Spec::Mocks::Proxy

Inherits:
Object show all
Defined in:
lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb

Constant Summary collapse

DEFAULT_OPTIONS =
{
  :null_object => false,
}
@@warn_about_expectations_on_nil =
true

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(target, name = nil, options = {}) ⇒ Proxy

Returns a new instance of Proxy.



18
19
20
21
22
23
24
25
26
27
28
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 18

def initialize(target, name=nil, options={})
  @target = target
  @name = name
  @error_generator = ErrorGenerator.new target, name
  @expectation_ordering = OrderGroup.new @error_generator
  @expectations = []
  @messages_received = []
  @stubs = []
  @proxied_methods = []
  @options = options ? DEFAULT_OPTIONS.dup.merge(options) : DEFAULT_OPTIONS
end

Class Method Details

.allow_message_expectations_on_nilObject



10
11
12
13
14
15
16
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 10

def self.allow_message_expectations_on_nil
  @@warn_about_expectations_on_nil = false
  
  # ensure nil.rspec_verify is called even if an expectation is not set in the example
  # otherwise the allowance would effect subsequent examples
  $rspec_mocks.add(nil) unless $rspec_mocks.nil?
end

Instance Method Details

#add_message_expectation(expected_from, sym, opts = {}, &block) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 39

def add_message_expectation(expected_from, sym, opts={}, &block)        
  __add sym
  warn_if_nil_class sym
  if existing_stub = @stubs.detect {|s| s.sym == sym }
    expectation = existing_stub.build_child(expected_from, block_given?? block : nil, 1, opts)
  else
    expectation = MessageExpectation.new(@error_generator, @expectation_ordering, expected_from, sym, block_given? ? block : nil, 1, opts)
  end
  @expectations << expectation
  @expectations.last
end

#add_negative_message_expectation(expected_from, sym, &block) ⇒ Object



51
52
53
54
55
56
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 51

def add_negative_message_expectation(expected_from, sym, &block)
  __add sym
  warn_if_nil_class sym
  @expectations << NegativeMessageExpectation.new(@error_generator, @expectation_ordering, expected_from, sym, block_given? ? block : nil)
  @expectations.last
end

#add_stub(expected_from, sym, opts = {}) ⇒ Object



58
59
60
61
62
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 58

def add_stub(expected_from, sym, opts={})
  __add sym
  @stubs.unshift MessageExpectation.new(@error_generator, @expectation_ordering, expected_from, sym, nil, :any, opts)
  @stubs.first
end

#as_null_objectObject



34
35
36
37
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 34

def as_null_object
  @options[:null_object] = true
  @target
end

#has_negative_expectation?(sym) ⇒ Boolean

Returns:

  • (Boolean)


82
83
84
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 82

def has_negative_expectation?(sym)
  @expectations.detect {|expectation| expectation.negative_expectation_for?(sym)}
end

#message_received(sym, *args, &block) ⇒ Object



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 86

def message_received(sym, *args, &block)
  expectation = find_matching_expectation(sym, *args)
  stub = find_matching_method_stub(sym, *args)

  if (stub && expectation && expectation.called_max_times?) || (stub && !expectation)
    if expectation = find_almost_matching_expectation(sym, *args)
      expectation.advise(args, block) unless expectation.expected_messages_received?
    end
    stub.invoke(args, block)
  elsif expectation
    expectation.invoke(args, block)
  elsif expectation = find_almost_matching_expectation(sym, *args)
    expectation.advise(args, block) if null_object? unless expectation.expected_messages_received?
    raise_unexpected_message_args_error(expectation, *args) unless (has_negative_expectation?(sym) or null_object?)
  else
    @target.__send__ :method_missing, sym, *args, &block
  end
end

#null_object?Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 30

def null_object?
  @options[:null_object]
end

#raise_unexpected_message_args_error(expectation, *args) ⇒ Object



105
106
107
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 105

def raise_unexpected_message_args_error(expectation, *args)
  @error_generator.raise_unexpected_message_args_error expectation, *args
end

#raise_unexpected_message_error(sym, *args) ⇒ Object



109
110
111
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 109

def raise_unexpected_message_error(sym, *args)
  @error_generator.raise_unexpected_message_error sym, *args
end

#received_message?(sym, *args, &block) ⇒ Boolean

Returns:

  • (Boolean)


78
79
80
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 78

def received_message?(sym, *args, &block)
  @messages_received.any? {|array| array == [sym, args, block]}
end

#resetObject



70
71
72
73
74
75
76
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 70

def reset
  clear_expectations
  clear_stubs
  reset_proxied_methods
  clear_proxied_methods
  reset_nil_expectations_warning
end

#verifyObject

:nodoc:



64
65
66
67
68
# File 'lib/gems/rspec-1.1.12/lib/spec/mocks/proxy.rb', line 64

def verify #:nodoc:
  verify_expectations
ensure
  reset
end