rr 1.1.1.rc1 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CREDITS.md +61 -0
- data/VERSION +1 -1
- data/doc/01_test_double.md +16 -0
- data/doc/02_syntax_comparison.md +96 -0
- data/doc/03_api_overview.md +616 -0
- data/rr.gemspec +6 -6
- metadata +12 -230
- data/spec/global_helper.rb +0 -53
- data/spec/spec.opts +0 -2
- data/spec/suite.rb +0 -107
- data/spec/suites/common/adapter_integration_tests.rb +0 -160
- data/spec/suites/common/adapter_tests.rb +0 -43
- data/spec/suites/common/rails_integration_tests.rb +0 -106
- data/spec/suites/common/test_unit_tests.rb +0 -21
- data/spec/suites/minitest/integration/minitest_test.rb +0 -13
- data/spec/suites/minitest/test_helper.rb +0 -7
- data/spec/suites/minitest_4/integration/minitest_test.rb +0 -13
- data/spec/suites/minitest_4/test_helper.rb +0 -7
- data/spec/suites/rspec_1/helper.rb +0 -24
- data/spec/suites/rspec_1/integration/rspec_1_spec.rb +0 -77
- data/spec/suites/rspec_1/integration/test_unit_1_spec.rb +0 -41
- data/spec/suites/rspec_1/integration/test_unit_2_spec.rb +0 -57
- data/spec/suites/rspec_1/spec_helper.rb +0 -3
- data/spec/suites/rspec_1_rails_2/integration/test_unit_1_rails_2_spec.rb +0 -53
- data/spec/suites/rspec_1_rails_2/integration/test_unit_2_rails_2_spec.rb +0 -57
- data/spec/suites/rspec_1_rails_2/spec_helper.rb +0 -3
- data/spec/suites/rspec_2/functional/any_instance_of_spec.rb +0 -47
- data/spec/suites/rspec_2/functional/dont_allow_spec.rb +0 -12
- data/spec/suites/rspec_2/functional/dsl_spec.rb +0 -13
- data/spec/suites/rspec_2/functional/instance_of_spec.rb +0 -14
- data/spec/suites/rspec_2/functional/mock_spec.rb +0 -241
- data/spec/suites/rspec_2/functional/proxy_spec.rb +0 -136
- data/spec/suites/rspec_2/functional/spy_spec.rb +0 -41
- data/spec/suites/rspec_2/functional/strong_spec.rb +0 -79
- data/spec/suites/rspec_2/functional/stub_spec.rb +0 -190
- data/spec/suites/rspec_2/functional/wildcard_matchers_spec.rb +0 -128
- data/spec/suites/rspec_2/helper.rb +0 -27
- data/spec/suites/rspec_2/integration/minitest_4_spec.rb +0 -57
- data/spec/suites/rspec_2/integration/minitest_spec.rb +0 -57
- data/spec/suites/rspec_2/integration/rspec_2_spec.rb +0 -126
- data/spec/suites/rspec_2/integration/test_unit_200_spec.rb +0 -57
- data/spec/suites/rspec_2/integration/test_unit_2_spec.rb +0 -57
- data/spec/suites/rspec_2/spec_helper.rb +0 -3
- data/spec/suites/rspec_2/support/matchers/wildcard_matcher_matchers.rb +0 -32
- data/spec/suites/rspec_2/support/shared_examples/space.rb +0 -13
- data/spec/suites/rspec_2/support/shared_examples/times_called_expectation.rb +0 -9
- data/spec/suites/rspec_2/unit/adapters/rr_methods/double_creators_spec.rb +0 -135
- data/spec/suites/rspec_2/unit/adapters/rr_methods/space_spec.rb +0 -101
- data/spec/suites/rspec_2/unit/adapters/rr_methods/wildcard_matchers_spec.rb +0 -69
- data/spec/suites/rspec_2/unit/core_ext/array_spec.rb +0 -39
- data/spec/suites/rspec_2/unit/core_ext/enumerable_spec.rb +0 -81
- data/spec/suites/rspec_2/unit/core_ext/hash_spec.rb +0 -55
- data/spec/suites/rspec_2/unit/core_ext/range_spec.rb +0 -41
- data/spec/suites/rspec_2/unit/core_ext/regexp_spec.rb +0 -41
- data/spec/suites/rspec_2/unit/double_definitions/child_double_definition_create_spec.rb +0 -114
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_blank_slate_spec.rb +0 -93
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_spec.rb +0 -446
- data/spec/suites/rspec_2/unit/errors/rr_error_spec.rb +0 -67
- data/spec/suites/rspec_2/unit/expectations/any_argument_expectation_spec.rb +0 -48
- data/spec/suites/rspec_2/unit/expectations/anything_argument_equality_expectation_spec.rb +0 -14
- data/spec/suites/rspec_2/unit/expectations/argument_equality_expectation_spec.rb +0 -135
- data/spec/suites/rspec_2/unit/expectations/boolean_argument_equality_expectation_spec.rb +0 -30
- data/spec/suites/rspec_2/unit/expectations/hash_including_argument_equality_expectation_spec.rb +0 -82
- data/spec/suites/rspec_2/unit/expectations/satisfy_argument_equality_expectation_spec.rb +0 -61
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/any_times_matcher_spec.rb +0 -22
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_least_matcher_spec.rb +0 -37
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_most_matcher_spec.rb +0 -43
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/integer_matcher_spec.rb +0 -58
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/proc_matcher_spec.rb +0 -35
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/range_matcher_spec.rb +0 -39
- data/spec/suites/rspec_2/unit/hash_with_object_id_key_spec.rb +0 -88
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_spec.rb +0 -545
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_verify_spec.rb +0 -32
- data/spec/suites/rspec_2/unit/integrations/rspec/invocation_matcher_spec.rb +0 -297
- data/spec/suites/rspec_2/unit/integrations/rspec_spec.rb +0 -85
- data/spec/suites/rspec_2/unit/proc_from_block_spec.rb +0 -14
- data/spec/suites/rspec_2/unit/rr_spec.rb +0 -28
- data/spec/suites/rspec_2/unit/space_spec.rb +0 -595
- data/spec/suites/rspec_2/unit/spy_verification_spec.rb +0 -133
- data/spec/suites/rspec_2/unit/times_called_matchers/any_times_matcher_spec.rb +0 -46
- data/spec/suites/rspec_2/unit/times_called_matchers/at_least_matcher_spec.rb +0 -54
- data/spec/suites/rspec_2/unit/times_called_matchers/at_most_matcher_spec.rb +0 -69
- data/spec/suites/rspec_2/unit/times_called_matchers/integer_matcher_spec.rb +0 -69
- data/spec/suites/rspec_2/unit/times_called_matchers/proc_matcher_spec.rb +0 -54
- data/spec/suites/rspec_2/unit/times_called_matchers/range_matcher_spec.rb +0 -75
- data/spec/suites/rspec_2/unit/times_called_matchers/times_called_matcher_spec.rb +0 -117
- data/spec/suites/rspec_2/unit/wildcard_matchers/anything_spec.rb +0 -33
- data/spec/suites/rspec_2/unit/wildcard_matchers/boolean_spec.rb +0 -45
- data/spec/suites/rspec_2/unit/wildcard_matchers/duck_type_spec.rb +0 -64
- data/spec/suites/rspec_2/unit/wildcard_matchers/hash_including_spec.rb +0 -64
- data/spec/suites/rspec_2/unit/wildcard_matchers/is_a_spec.rb +0 -55
- data/spec/suites/rspec_2/unit/wildcard_matchers/numeric_spec.rb +0 -46
- data/spec/suites/rspec_2/unit/wildcard_matchers/satisfy_spec.rb +0 -57
- data/spec/suites/rspec_2_rails_3/integration/minitest_4_rails_3_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_3/integration/test_unit_200_rails_3_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_3/integration/test_unit_2_rails_3_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_3/spec_helper.rb +0 -3
- data/spec/suites/rspec_2_rails_4/integration/minitest_4_rails_4_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_4/integration/rspec_2_rails_4_spec.rb +0 -156
- data/spec/suites/rspec_2_rails_4/integration/test_unit_200_rails_4_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_4/integration/test_unit_2_rails_4_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_4/spec_helper.rb +0 -3
- data/spec/suites/test_unit_1/integration/test_unit_1_test.rb +0 -10
- data/spec/suites/test_unit_1/test_helper.rb +0 -10
- data/spec/suites/test_unit_2/integration/test_unit_2_test.rb +0 -10
- data/spec/suites/test_unit_2/test_helper.rb +0 -6
- data/spec/suites/test_unit_200/integration/test_unit_200_test.rb +0 -10
- data/spec/suites/test_unit_200/test_helper.rb +0 -6
- data/spec/suites/test_unit_200_rails_3/integration/test_unit_200_rails_3_test.rb +0 -10
- data/spec/suites/test_unit_200_rails_3/test_helper.rb +0 -7
- data/spec/suites/test_unit_200_rails_4/integration/test_unit_200_rails_4_test.rb +0 -10
- data/spec/suites/test_unit_200_rails_4/test_helper.rb +0 -7
- data/spec/suites/test_unit_2_rails_2/integration/test_unit_2_rails_2_test.rb +0 -10
- data/spec/suites/test_unit_2_rails_2/test_helper.rb +0 -7
- data/spec/suites/test_unit_2_rails_3/integration/test_unit_2_rails_3_test.rb +0 -10
- data/spec/suites/test_unit_2_rails_3/test_helper.rb +0 -7
- data/spec/suites/test_unit_2_rails_4/integration/test_unit_2_rails_4_test.rb +0 -10
- data/spec/suites/test_unit_2_rails_4/test_helper.rb +0 -7
@@ -1,41 +0,0 @@
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
-
require File.expand_path('../../../common/adapter_integration_tests', __FILE__)
|
3
|
-
|
4
|
-
describe 'Integration with Test::Unit 1' do
|
5
|
-
def adapter_name
|
6
|
-
'test_unit_1'
|
7
|
-
end
|
8
|
-
|
9
|
-
def test_framework_path
|
10
|
-
'test/unit'
|
11
|
-
end
|
12
|
-
|
13
|
-
def error_test
|
14
|
-
with_bootstrap <<-EOT
|
15
|
-
class FooTest < Test::Unit::TestCase
|
16
|
-
def test_foo
|
17
|
-
object = Object.new
|
18
|
-
mock(object).foo
|
19
|
-
end
|
20
|
-
end
|
21
|
-
EOT
|
22
|
-
end
|
23
|
-
|
24
|
-
def include_adapter_test
|
25
|
-
with_bootstrap <<-EOT
|
26
|
-
class Test::Unit::TestCase
|
27
|
-
include RR::Adapters::TestUnit
|
28
|
-
end
|
29
|
-
|
30
|
-
class FooTest < Test::Unit::TestCase
|
31
|
-
def test_foo
|
32
|
-
object = Object.new
|
33
|
-
mock(object).foo
|
34
|
-
object.foo
|
35
|
-
end
|
36
|
-
end
|
37
|
-
EOT
|
38
|
-
end
|
39
|
-
|
40
|
-
include AdapterIntegrationTests
|
41
|
-
end
|
@@ -1,57 +0,0 @@
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
-
require File.expand_path('../../../common/adapter_integration_tests', __FILE__)
|
3
|
-
|
4
|
-
describe 'Integration with Test::Unit 2.4.x' do
|
5
|
-
def adapter_name
|
6
|
-
'test_unit_2'
|
7
|
-
end
|
8
|
-
|
9
|
-
def test_framework_path
|
10
|
-
'test/unit'
|
11
|
-
end
|
12
|
-
|
13
|
-
def error_test
|
14
|
-
with_bootstrap <<-EOT
|
15
|
-
class FooTest < Test::Unit::TestCase
|
16
|
-
def test_foo
|
17
|
-
object = Object.new
|
18
|
-
mock(object).foo
|
19
|
-
end
|
20
|
-
end
|
21
|
-
EOT
|
22
|
-
end
|
23
|
-
|
24
|
-
def include_adapter_test
|
25
|
-
with_bootstrap <<-EOT
|
26
|
-
class Test::Unit::TestCase
|
27
|
-
include RR::Adapters::TestUnit
|
28
|
-
end
|
29
|
-
|
30
|
-
class FooTest < Test::Unit::TestCase
|
31
|
-
def test_foo
|
32
|
-
object = Object.new
|
33
|
-
mock(object).foo
|
34
|
-
object.foo
|
35
|
-
end
|
36
|
-
end
|
37
|
-
EOT
|
38
|
-
end
|
39
|
-
|
40
|
-
def include_adapter_where_rr_included_before_test_framework_test
|
41
|
-
with_bootstrap <<-EOT, :include_rr_before => true
|
42
|
-
class Test::Unit::TestCase
|
43
|
-
include RR::Adapters::TestUnit
|
44
|
-
end
|
45
|
-
|
46
|
-
class FooTest < Test::Unit::TestCase
|
47
|
-
def test_foo
|
48
|
-
object = Object.new
|
49
|
-
mock(object).foo
|
50
|
-
object.foo
|
51
|
-
end
|
52
|
-
end
|
53
|
-
EOT
|
54
|
-
end
|
55
|
-
|
56
|
-
include AdapterIntegrationTests
|
57
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
-
require File.expand_path('../../../common/adapter_integration_tests', __FILE__)
|
3
|
-
require File.expand_path('../../../common/rails_integration_tests', __FILE__)
|
4
|
-
|
5
|
-
describe 'Integration with Test::Unit 1 and Rails 2' do
|
6
|
-
def adapter_name
|
7
|
-
'test_unit_1_rails_2'
|
8
|
-
end
|
9
|
-
|
10
|
-
def test_framework_path
|
11
|
-
'test/unit'
|
12
|
-
end
|
13
|
-
|
14
|
-
def before_require_test_framework
|
15
|
-
<<-EOT
|
16
|
-
RAILS_ROOT = File.expand_path(__FILE__)
|
17
|
-
require 'rack'
|
18
|
-
require 'active_support/all'
|
19
|
-
require 'action_controller'
|
20
|
-
require 'active_support/test_case'
|
21
|
-
EOT
|
22
|
-
end
|
23
|
-
|
24
|
-
def error_test
|
25
|
-
with_bootstrap <<-EOT
|
26
|
-
class FooTest < ActiveSupport::TestCase
|
27
|
-
def test_foo
|
28
|
-
object = Object.new
|
29
|
-
mock(object).foo
|
30
|
-
end
|
31
|
-
end
|
32
|
-
EOT
|
33
|
-
end
|
34
|
-
|
35
|
-
def include_adapter_test
|
36
|
-
with_bootstrap <<-EOT
|
37
|
-
class ActiveSupport::TestCase
|
38
|
-
include RR::Adapters::TestUnit
|
39
|
-
end
|
40
|
-
|
41
|
-
class FooTest < ActiveSupport::TestCase
|
42
|
-
def test_foo
|
43
|
-
object = Object.new
|
44
|
-
mock(object).foo
|
45
|
-
object.foo
|
46
|
-
end
|
47
|
-
end
|
48
|
-
EOT
|
49
|
-
end
|
50
|
-
|
51
|
-
include AdapterIntegrationTests
|
52
|
-
include RailsIntegrationTests
|
53
|
-
end
|
@@ -1,57 +0,0 @@
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
-
require File.expand_path('../../../common/adapter_integration_tests', __FILE__)
|
3
|
-
require File.expand_path('../../../common/rails_integration_tests', __FILE__)
|
4
|
-
|
5
|
-
describe 'Integration with Test::Unit 2.4.x and Rails 2' do
|
6
|
-
def adapter_name
|
7
|
-
'test_unit_2_rails_2'
|
8
|
-
end
|
9
|
-
|
10
|
-
def test_framework_path
|
11
|
-
'test/unit'
|
12
|
-
end
|
13
|
-
|
14
|
-
def before_require_test_framework
|
15
|
-
<<-EOT
|
16
|
-
RAILS_ROOT = File.expand_path(__FILE__)
|
17
|
-
require 'rack'
|
18
|
-
require 'active_support/all'
|
19
|
-
require 'action_controller'
|
20
|
-
require 'active_support/test_case'
|
21
|
-
EOT
|
22
|
-
end
|
23
|
-
|
24
|
-
def error_test
|
25
|
-
with_bootstrap <<-EOT
|
26
|
-
class ActiveSupport::TestCase
|
27
|
-
include RR::Adapters::TestUnit
|
28
|
-
end
|
29
|
-
|
30
|
-
class FooTest < ActiveSupport::TestCase
|
31
|
-
def test_foo
|
32
|
-
object = Object.new
|
33
|
-
mock(object).foo
|
34
|
-
end
|
35
|
-
end
|
36
|
-
EOT
|
37
|
-
end
|
38
|
-
|
39
|
-
def include_adapter_where_rr_included_before_test_framework_test
|
40
|
-
with_bootstrap <<-EOT, :include_rr_before_test_framework => true
|
41
|
-
class ActiveSupport::TestCase
|
42
|
-
include RR::Adapters::TestUnit
|
43
|
-
end
|
44
|
-
|
45
|
-
class FooTest < ActiveSupport::TestCase
|
46
|
-
def test_foo
|
47
|
-
object = Object.new
|
48
|
-
mock(object).foo
|
49
|
-
object.foo
|
50
|
-
end
|
51
|
-
end
|
52
|
-
EOT
|
53
|
-
end
|
54
|
-
|
55
|
-
include AdapterIntegrationTests
|
56
|
-
include RailsIntegrationTests
|
57
|
-
end
|
@@ -1,47 +0,0 @@
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
-
|
3
|
-
describe '#any_instance_of' do
|
4
|
-
context "when passed a block" do
|
5
|
-
it "applies to instances instantiated before the Double expectation was created" do
|
6
|
-
subject_class = Class.new
|
7
|
-
subject = subject_class.new
|
8
|
-
class_called = false
|
9
|
-
any_instance_of(subject_class) do |o|
|
10
|
-
stub(o).to_s {"Subject is stubbed"}
|
11
|
-
stub.proxy(o).class {|klass| class_called = true; klass}
|
12
|
-
stub(o).foobar {:baz}
|
13
|
-
end
|
14
|
-
|
15
|
-
expect(subject.to_s).to eq "Subject is stubbed"
|
16
|
-
expect(subject.class).to eq subject_class
|
17
|
-
expect(class_called).to eq true
|
18
|
-
expect(subject.foobar).to eq :baz
|
19
|
-
|
20
|
-
RR.reset
|
21
|
-
|
22
|
-
expect(subject.to_s).to_not eq "Subject is stubbed"
|
23
|
-
class_called = false
|
24
|
-
expect(subject.class).to eq subject_class
|
25
|
-
expect(class_called).to eq false
|
26
|
-
expect(subject).to_not respond_to(:baz)
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
context "when passed a Hash" do
|
31
|
-
it "stubs methods (key) with the value on instances instantiated before the Double expectation was created" do
|
32
|
-
subject_class = Class.new
|
33
|
-
subject = subject_class.new
|
34
|
-
expect(subject).to_not respond_to(:baz)
|
35
|
-
|
36
|
-
any_instance_of(subject_class, :to_s => "Subject is stubbed", :foobar => lambda {:baz})
|
37
|
-
|
38
|
-
expect(subject.to_s).to eq "Subject is stubbed"
|
39
|
-
expect(subject.foobar).to eq :baz
|
40
|
-
|
41
|
-
RR.reset
|
42
|
-
|
43
|
-
expect(subject.to_s).to_not eq "Subject is stubbed"
|
44
|
-
expect(subject).to_not respond_to(:baz)
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
-
|
3
|
-
describe '#dont_allow' do
|
4
|
-
subject { Object.new }
|
5
|
-
|
6
|
-
it "raises a TimesCalledError if the method is actually called" do
|
7
|
-
dont_allow(subject).foobar
|
8
|
-
expect {
|
9
|
-
subject.foobar
|
10
|
-
}.to raise_error(RR::Errors::TimesCalledError)
|
11
|
-
end
|
12
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
-
|
3
|
-
describe 'spies' do
|
4
|
-
it "validates that a Double was called after it was called" do
|
5
|
-
stub(subject).foobar
|
6
|
-
subject.foobar(1, 2)
|
7
|
-
|
8
|
-
expect(subject).to have_received.foobar(1, 2)
|
9
|
-
expect {
|
10
|
-
expect(subject).to have_received.foobar(1, 2, 3)
|
11
|
-
}.to raise_error(RSpec::Expectations::ExpectationNotMetError)
|
12
|
-
end
|
13
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
-
|
3
|
-
%w(instance_of all_instances_of).each do |method|
|
4
|
-
describe "##{method}" do
|
5
|
-
it "applies to instances instantiated before the Double expection was created" do
|
6
|
-
subject_class = Class.new
|
7
|
-
subject = subject_class.new
|
8
|
-
__send__(method, subject_class) do |o|
|
9
|
-
o.to_s {"Subject is stubbed"}
|
10
|
-
end
|
11
|
-
expect(subject.to_s).to eq "Subject is stubbed"
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
@@ -1,241 +0,0 @@
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
-
|
3
|
-
describe '#mock' do
|
4
|
-
subject { Object.new }
|
5
|
-
|
6
|
-
it "creates a mock DoubleInjection Double" do
|
7
|
-
mock(subject).foobar(1, 2) {:baz}
|
8
|
-
expect(subject.foobar(1, 2)).to eq :baz
|
9
|
-
end
|
10
|
-
|
11
|
-
it "mocks via inline call" do
|
12
|
-
mock(subject).to_s {"a value"}
|
13
|
-
expect(subject.to_s).to eq "a value"
|
14
|
-
expect { subject.to_s }.to raise_error(RR::Errors::TimesCalledError)
|
15
|
-
RR.reset
|
16
|
-
end
|
17
|
-
|
18
|
-
describe ".once.ordered" do
|
19
|
-
it "returns the values in the ordered called" do
|
20
|
-
mock(subject).to_s {"value 1"}.ordered
|
21
|
-
mock(subject).to_s {"value 2"}.twice
|
22
|
-
expect(subject.to_s).to eq "value 1"
|
23
|
-
expect(subject.to_s).to eq "value 2"
|
24
|
-
expect(subject.to_s).to eq "value 2"
|
25
|
-
expect { subject.to_s }.to raise_error(RR::Errors::TimesCalledError)
|
26
|
-
RR.reset
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
context "when the subject is a proxy for the object with the defined method" do
|
31
|
-
it "stubs the method on the proxy object" do
|
32
|
-
proxy_target = Class.new {def foobar; :original_foobar; end}.new
|
33
|
-
proxy = Class.new do
|
34
|
-
def initialize(target)
|
35
|
-
@target = target
|
36
|
-
end
|
37
|
-
|
38
|
-
instance_methods.each do |m|
|
39
|
-
unless m =~ /^_/ || m.to_s == 'object_id' || m.to_s == 'method_missing'
|
40
|
-
alias_method "__blank_slated_#{m}", m
|
41
|
-
undef_method m
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
def method_missing(method_name, *args, &block)
|
46
|
-
@target.send(method_name, *args, &block)
|
47
|
-
end
|
48
|
-
end.new(proxy_target)
|
49
|
-
expect(proxy.methods).to match_array(proxy_target.methods)
|
50
|
-
|
51
|
-
mock(proxy).foobar {:new_foobar}
|
52
|
-
expect(proxy.foobar).to eq :new_foobar
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
it 'allows terse chaining' do
|
57
|
-
mock(subject).first(1) {mock(Object.new).second(2) {mock(Object.new).third(3) {4}}}
|
58
|
-
expect(subject.first(1).second(2).third(3)).to eq 4
|
59
|
-
|
60
|
-
mock(subject).first(1) {mock!.second(2) {mock!.third(3) {4}}}
|
61
|
-
expect(subject.first(1).second(2).third(3)).to eq 4
|
62
|
-
|
63
|
-
mock(subject).first(1) {mock!.second(2).mock!.third(3) {4}}
|
64
|
-
expect(subject.first(1).second(2).third(3)).to eq 4
|
65
|
-
|
66
|
-
mock(subject).first(1) {mock!.second(2).mock! {third(3) {4}}}
|
67
|
-
expect(subject.first(1).second(2).third(3)).to eq 4
|
68
|
-
|
69
|
-
mock(subject).first(1).mock!.second(2).mock!.third(3) {4}
|
70
|
-
expect(subject.first(1).second(2).third(3)).to eq 4
|
71
|
-
end
|
72
|
-
|
73
|
-
it 'allows chaining with proxy' do
|
74
|
-
pending "this is failing with a TimesCalledError"
|
75
|
-
|
76
|
-
find_return_value = Object.new
|
77
|
-
def find_return_value.child
|
78
|
-
:the_child
|
79
|
-
end
|
80
|
-
(class << subject; self; end).class_eval do
|
81
|
-
define_method(:find) do |id|
|
82
|
-
id == '1' ? find_return_value : raise(ArgumentError)
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
86
|
-
mock.proxy(subject).find('1').mock.proxy!.child
|
87
|
-
expect(subject.find('1').child).to eq :the_child
|
88
|
-
end
|
89
|
-
|
90
|
-
it 'allows branched chaining' do
|
91
|
-
mock(subject).first do
|
92
|
-
mock! do |expect|
|
93
|
-
expect.branch1 {mock!.branch11 {11}}
|
94
|
-
expect.branch2 {mock!.branch22 {22}}
|
95
|
-
end
|
96
|
-
end
|
97
|
-
o = subject.first
|
98
|
-
expect(o.branch1.branch11).to eq 11
|
99
|
-
expect(o.branch2.branch22).to eq 22
|
100
|
-
end
|
101
|
-
|
102
|
-
it 'allows chained ordering' do
|
103
|
-
mock(subject).to_s {"value 1"}.then.to_s {"value 2"}.twice.then.to_s {"value 3"}.once
|
104
|
-
expect(subject.to_s).to eq "value 1"
|
105
|
-
expect(subject.to_s).to eq "value 2"
|
106
|
-
expect(subject.to_s).to eq "value 2"
|
107
|
-
expect(subject.to_s).to eq "value 3"
|
108
|
-
expect { subject.to_s }.to raise_error(RR::Errors::TimesCalledError)
|
109
|
-
RR.reset
|
110
|
-
end
|
111
|
-
|
112
|
-
it "mocks via block with argument" do
|
113
|
-
mock subject do |c|
|
114
|
-
c.to_s {"a value"}
|
115
|
-
c.to_sym {:crazy}
|
116
|
-
end
|
117
|
-
expect(subject.to_s).to eq "a value"
|
118
|
-
expect(subject.to_sym).to eq :crazy
|
119
|
-
end
|
120
|
-
|
121
|
-
it "mocks via block without argument" do
|
122
|
-
mock subject do
|
123
|
-
to_s {"a value"}
|
124
|
-
to_sym {:crazy}
|
125
|
-
end
|
126
|
-
expect(subject.to_s).to eq "a value"
|
127
|
-
expect(subject.to_sym).to eq :crazy
|
128
|
-
end
|
129
|
-
|
130
|
-
it "has wildcard matchers" do
|
131
|
-
mock(subject).foobar(
|
132
|
-
is_a(String),
|
133
|
-
anything,
|
134
|
-
numeric,
|
135
|
-
boolean,
|
136
|
-
duck_type(:to_s),
|
137
|
-
/abc/
|
138
|
-
) {"value 1"}.twice
|
139
|
-
expect(subject.foobar(
|
140
|
-
'hello',
|
141
|
-
Object.new,
|
142
|
-
99,
|
143
|
-
false,
|
144
|
-
"My String",
|
145
|
-
"Tabcola"
|
146
|
-
)).to eq("value 1")
|
147
|
-
expect {
|
148
|
-
subject.foobar(:failure)
|
149
|
-
}.to raise_error(RR::Errors::DoubleNotFoundError)
|
150
|
-
|
151
|
-
RR.reset
|
152
|
-
end
|
153
|
-
|
154
|
-
it "mocks methods without letters" do
|
155
|
-
mock(subject, :==).with(55)
|
156
|
-
|
157
|
-
subject == 55
|
158
|
-
expect {
|
159
|
-
subject == 99
|
160
|
-
}.to raise_error(RR::Errors::DoubleNotFoundError)
|
161
|
-
|
162
|
-
RR.reset
|
163
|
-
end
|
164
|
-
|
165
|
-
it "expects a method call to a mock via another mock's block yield only once" do
|
166
|
-
cage = Object.new
|
167
|
-
cat = Object.new
|
168
|
-
mock(cat).miau # should be expected to be called only once
|
169
|
-
mock(cage).find_cat.yields(cat)
|
170
|
-
mock(cage).cats
|
171
|
-
cage.find_cat { |c| c.miau }
|
172
|
-
cage.cats
|
173
|
-
end
|
174
|
-
|
175
|
-
describe "on class method" do
|
176
|
-
class SampleClass1
|
177
|
-
def self.hello; "hello!"; end
|
178
|
-
end
|
179
|
-
|
180
|
-
class SampleClass2 < SampleClass1; end
|
181
|
-
|
182
|
-
it "can mock" do
|
183
|
-
mock(SampleClass1).hello { "hola!" }
|
184
|
-
|
185
|
-
expect(SampleClass1.hello).to eq "hola!"
|
186
|
-
end
|
187
|
-
|
188
|
-
it "does not override subclasses" do
|
189
|
-
mock(SampleClass1).hello { "hi!" }
|
190
|
-
SampleClass1.hello
|
191
|
-
expect(SampleClass2.hello).to eq "hello!"
|
192
|
-
end
|
193
|
-
|
194
|
-
it "should not get affected from a previous example" do
|
195
|
-
expect(SampleClass2.hello).to eq "hello!"
|
196
|
-
end
|
197
|
-
end
|
198
|
-
|
199
|
-
# bug #44
|
200
|
-
describe 'when wrapped in an array that is then flattened' do
|
201
|
-
context 'when the method being mocked is not defined' do
|
202
|
-
it "does not raise an error" do
|
203
|
-
mock(subject).foo
|
204
|
-
subject.foo
|
205
|
-
expect([subject].flatten).to eq [subject]
|
206
|
-
end
|
207
|
-
|
208
|
-
it "honors a #to_ary that already exists" do
|
209
|
-
subject.instance_eval do
|
210
|
-
def to_ary; []; end
|
211
|
-
end
|
212
|
-
mock(subject).foo
|
213
|
-
subject.foo
|
214
|
-
expect([subject].flatten).to eq []
|
215
|
-
end
|
216
|
-
end
|
217
|
-
|
218
|
-
context 'when the method being mocked is defined' do
|
219
|
-
before do
|
220
|
-
subject.instance_eval do
|
221
|
-
def foo; end
|
222
|
-
end
|
223
|
-
end
|
224
|
-
|
225
|
-
it "does not raise an error" do
|
226
|
-
mock(subject).foo
|
227
|
-
subject.foo
|
228
|
-
expect([subject].flatten).to eq [subject]
|
229
|
-
end
|
230
|
-
|
231
|
-
it "honors a #to_ary that already exists" do
|
232
|
-
eigen(subject).class_eval do
|
233
|
-
def to_ary; []; end
|
234
|
-
end
|
235
|
-
mock(subject).foo
|
236
|
-
subject.foo
|
237
|
-
expect([subject].flatten).to eq []
|
238
|
-
end
|
239
|
-
end
|
240
|
-
end
|
241
|
-
end
|