rr 1.1.1 → 1.1.2.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Appraisals +46 -0
- data/CHANGES.md +21 -1
- data/Gemfile +19 -0
- data/README.md +91 -106
- data/Rakefile +55 -0
- data/gemfiles/ruby_18_rspec_1.gemfile +14 -0
- data/gemfiles/ruby_18_rspec_1.gemfile.lock +38 -0
- data/gemfiles/ruby_18_rspec_1_rails_2.gemfile +18 -0
- data/gemfiles/ruby_18_rspec_1_rails_2.gemfile.lock +64 -0
- data/gemfiles/ruby_19_rspec_2.gemfile +14 -0
- data/gemfiles/ruby_19_rspec_2.gemfile.lock +49 -0
- data/gemfiles/ruby_19_rspec_2_rails_3.gemfile +15 -0
- data/gemfiles/ruby_19_rspec_2_rails_3.gemfile.lock +123 -0
- data/gemfiles/ruby_19_rspec_2_rails_4.gemfile +15 -0
- data/gemfiles/ruby_19_rspec_2_rails_4.gemfile.lock +119 -0
- data/lib/rr/adapters.rb +4 -14
- data/lib/rr/integrations.rb +13 -12
- data/lib/rr/integrations/decorator.rb +4 -1
- data/lib/rr/integrations/rspec_2.rb +6 -1
- data/lib/rr/integrations/test_unit_1.rb +2 -2
- data/lib/rr/integrations/test_unit_2.rb +3 -1
- data/lib/rr/version.rb +1 -2
- data/lib/rr/without_autohook.rb +1 -1
- data/rr.gemspec +6 -2
- data/spec/custom_formatter_for_rspec.rb +18 -0
- data/spec/custom_formatter_for_rspec_2.rb +40 -0
- data/spec/defines_spec_suite_tasks.rb +45 -0
- data/spec/fixtures/rubygems_patch_for_187.rb +598 -0
- data/spec/global_helper.rb +33 -0
- data/spec/spec.opts +3 -0
- data/spec/spec_suite_configuration.rb +132 -0
- data/spec/spec_suite_runner.rb +47 -0
- data/spec/suites.yml +24 -0
- data/spec/suites/rspec_1/helper.rb +24 -0
- data/spec/suites/rspec_1/integration/rspec_1_spec.rb +93 -0
- data/spec/suites/rspec_1/integration/test_unit_1_spec.rb +102 -0
- data/spec/suites/rspec_1/integration/test_unit_2_spec.rb +109 -0
- data/spec/suites/rspec_1/spec_helper.rb +3 -0
- data/spec/suites/rspec_1_rails_2/integration/astc_rails_2_spec.rb +141 -0
- data/spec/suites/rspec_1_rails_2/integration/rspec_1_rails_2_spec.rb +132 -0
- data/spec/suites/rspec_1_rails_2/integration/test_unit_1_rails_2_spec.rb +141 -0
- data/spec/suites/rspec_1_rails_2/integration/test_unit_2_rails_2_spec.rb +148 -0
- data/spec/suites/rspec_1_rails_2/spec_helper.rb +3 -0
- data/spec/suites/rspec_2/functional/any_instance_of_spec.rb +47 -0
- data/spec/suites/rspec_2/functional/dont_allow_spec.rb +12 -0
- data/spec/suites/rspec_2/functional/dsl_spec.rb +13 -0
- data/spec/suites/rspec_2/functional/instance_of_spec.rb +14 -0
- data/spec/suites/rspec_2/functional/mock_spec.rb +241 -0
- data/spec/suites/rspec_2/functional/proxy_spec.rb +136 -0
- data/spec/suites/rspec_2/functional/spy_spec.rb +41 -0
- data/spec/suites/rspec_2/functional/strong_spec.rb +79 -0
- data/spec/suites/rspec_2/functional/stub_spec.rb +190 -0
- data/spec/suites/rspec_2/functional/wildcard_matchers_spec.rb +128 -0
- data/spec/suites/rspec_2/helper.rb +28 -0
- data/spec/suites/rspec_2/integration/minitest_4_spec.rb +109 -0
- data/spec/suites/rspec_2/integration/minitest_spec.rb +109 -0
- data/spec/suites/rspec_2/integration/rspec_2_spec.rb +133 -0
- data/spec/suites/rspec_2/integration/test_unit_200_spec.rb +102 -0
- data/spec/suites/rspec_2/integration/test_unit_2_spec.rb +109 -0
- data/spec/suites/rspec_2/spec_helper.rb +3 -0
- data/spec/suites/rspec_2/support/matchers/wildcard_matcher_matchers.rb +32 -0
- data/spec/suites/rspec_2/support/shared_examples/space.rb +13 -0
- data/spec/suites/rspec_2/support/shared_examples/times_called_expectation.rb +9 -0
- data/spec/suites/rspec_2/unit/adapters/rr_methods/double_creators_spec.rb +135 -0
- data/spec/suites/rspec_2/unit/adapters/rr_methods/space_spec.rb +101 -0
- data/spec/suites/rspec_2/unit/adapters/rr_methods/wildcard_matchers_spec.rb +69 -0
- data/spec/suites/rspec_2/unit/core_ext/array_spec.rb +39 -0
- data/spec/suites/rspec_2/unit/core_ext/enumerable_spec.rb +81 -0
- data/spec/suites/rspec_2/unit/core_ext/hash_spec.rb +55 -0
- data/spec/suites/rspec_2/unit/core_ext/range_spec.rb +41 -0
- data/spec/suites/rspec_2/unit/core_ext/regexp_spec.rb +41 -0
- data/spec/suites/rspec_2/unit/double_definitions/child_double_definition_create_spec.rb +114 -0
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_blank_slate_spec.rb +93 -0
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_spec.rb +446 -0
- data/spec/suites/rspec_2/unit/errors/rr_error_spec.rb +67 -0
- data/spec/suites/rspec_2/unit/expectations/any_argument_expectation_spec.rb +48 -0
- data/spec/suites/rspec_2/unit/expectations/anything_argument_equality_expectation_spec.rb +14 -0
- data/spec/suites/rspec_2/unit/expectations/argument_equality_expectation_spec.rb +135 -0
- data/spec/suites/rspec_2/unit/expectations/boolean_argument_equality_expectation_spec.rb +30 -0
- data/spec/suites/rspec_2/unit/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
- data/spec/suites/rspec_2/unit/expectations/satisfy_argument_equality_expectation_spec.rb +61 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/any_times_matcher_spec.rb +22 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_least_matcher_spec.rb +37 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_most_matcher_spec.rb +43 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/integer_matcher_spec.rb +58 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/proc_matcher_spec.rb +35 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/range_matcher_spec.rb +39 -0
- data/spec/suites/rspec_2/unit/hash_with_object_id_key_spec.rb +88 -0
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_spec.rb +545 -0
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_verify_spec.rb +32 -0
- data/spec/suites/rspec_2/unit/integrations/rspec/invocation_matcher_spec.rb +297 -0
- data/spec/suites/rspec_2/unit/integrations/rspec_spec.rb +85 -0
- data/spec/suites/rspec_2/unit/proc_from_block_spec.rb +14 -0
- data/spec/suites/rspec_2/unit/rr_spec.rb +28 -0
- data/spec/suites/rspec_2/unit/space_spec.rb +595 -0
- data/spec/suites/rspec_2/unit/spy_verification_spec.rb +133 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/any_times_matcher_spec.rb +46 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/at_least_matcher_spec.rb +54 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/at_most_matcher_spec.rb +69 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/integer_matcher_spec.rb +69 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/proc_matcher_spec.rb +54 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/range_matcher_spec.rb +75 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/times_called_matcher_spec.rb +117 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/anything_spec.rb +33 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/boolean_spec.rb +45 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/duck_type_spec.rb +64 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/hash_including_spec.rb +64 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/is_a_spec.rb +55 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/numeric_spec.rb +46 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/satisfy_spec.rb +57 -0
- data/spec/suites/rspec_2_rails_3/integration/astc_rails_3_spec.rb +141 -0
- data/spec/suites/rspec_2_rails_3/integration/minitest_4_rails_3_spec.rb +148 -0
- data/spec/suites/rspec_2_rails_3/integration/rspec_2_rails_3_spec.rb +172 -0
- data/spec/suites/rspec_2_rails_3/integration/test_unit_200_rails_3_spec.rb +141 -0
- data/spec/suites/rspec_2_rails_3/integration/test_unit_2_rails_3_spec.rb +148 -0
- data/spec/suites/rspec_2_rails_3/spec_helper.rb +3 -0
- data/spec/suites/rspec_2_rails_4/integration/astc_rails_4_spec.rb +142 -0
- data/spec/suites/rspec_2_rails_4/integration/minitest_4_rails_4_spec.rb +149 -0
- data/spec/suites/rspec_2_rails_4/integration/rspec_2_rails_4_spec.rb +173 -0
- data/spec/suites/rspec_2_rails_4/integration/test_unit_200_rails_4_spec.rb +142 -0
- data/spec/suites/rspec_2_rails_4/integration/test_unit_2_rails_4_spec.rb +149 -0
- data/spec/suites/rspec_2_rails_4/spec_helper.rb +3 -0
- data/spec/support/adapter.rb +22 -0
- data/spec/support/adapter_tests/base.rb +45 -0
- data/spec/support/adapter_tests/minitest.rb +7 -0
- data/spec/support/adapter_tests/rspec.rb +66 -0
- data/spec/support/adapter_tests/test_unit.rb +47 -0
- data/spec/support/command_runner.rb +105 -0
- data/spec/support/generator.rb +56 -0
- data/spec/support/integration_tests/base.rb +64 -0
- data/spec/support/integration_tests/rails.rb +60 -0
- data/spec/support/integration_tests/rails_minitest.rb +13 -0
- data/spec/support/integration_tests/rails_rspec.rb +13 -0
- data/spec/support/integration_tests/rails_test_unit.rb +13 -0
- data/spec/support/integration_tests/rails_test_unit_like.rb +13 -0
- data/spec/support/integration_tests/ruby.rb +7 -0
- data/spec/support/integration_tests/ruby_minitest.rb +13 -0
- data/spec/support/integration_tests/ruby_rspec.rb +13 -0
- data/spec/support/integration_tests/ruby_test_unit.rb +13 -0
- data/spec/support/matchers/be_a_subset_of_matcher.rb +24 -0
- data/spec/support/project/cucumber.rb +50 -0
- data/spec/support/project/generator.rb +352 -0
- data/spec/support/project/minitest.rb +39 -0
- data/spec/support/project/rails.rb +199 -0
- data/spec/support/project/rails_minitest.rb +17 -0
- data/spec/support/project/rails_rspec.rb +50 -0
- data/spec/support/project/rails_test_unit.rb +17 -0
- data/spec/support/project/rails_test_unit_like.rb +17 -0
- data/spec/support/project/rspec.rb +69 -0
- data/spec/support/project/ruby.rb +34 -0
- data/spec/support/project/ruby_minitest.rb +11 -0
- data/spec/support/project/ruby_rspec.rb +29 -0
- data/spec/support/project/ruby_test_unit.rb +11 -0
- data/spec/support/project/ruby_test_unit_like.rb +21 -0
- data/spec/support/project/test_unit.rb +29 -0
- data/spec/support/project/test_unit_like.rb +7 -0
- data/spec/support/project/tests_runner.rb +22 -0
- data/spec/support/test.sqlite3 +0 -0
- data/spec/support/test_case/generator.rb +53 -0
- data/spec/support/test_case/minitest.rb +13 -0
- data/spec/support/test_case/rspec.rb +19 -0
- data/spec/support/test_case/test_unit.rb +21 -0
- data/spec/support/test_file/generator.rb +120 -0
- data/spec/support/test_file/minitest.rb +19 -0
- data/spec/support/test_file/rails_minitest.rb +7 -0
- data/spec/support/test_file/rails_rspec.rb +12 -0
- data/spec/support/test_file/rails_test_unit.rb +25 -0
- data/spec/support/test_file/rspec.rb +33 -0
- data/spec/support/test_file/test_unit.rb +36 -0
- data/spec/support/test_helper/generator.rb +27 -0
- data/spec/support/test_helper/minitest.rb +7 -0
- data/spec/support/test_helper/rails.rb +31 -0
- data/spec/support/test_helper/rails_minitest.rb +7 -0
- data/spec/support/test_helper/rails_rspec.rb +25 -0
- data/spec/support/test_helper/rails_test_unit.rb +23 -0
- data/spec/support/test_helper/rspec.rb +7 -0
- data/spec/support/test_helper/ruby.rb +31 -0
- data/spec/support/test_helper/test_unit.rb +7 -0
- metadata +172 -6
- data/VERSION +0 -1
@@ -0,0 +1,148 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
describe 'Integration with Test::Unit ~> 2.4 and Rails 2' do
|
4
|
+
include IntegrationTests::RailsTestUnit
|
5
|
+
|
6
|
+
def configure_rails_project_generator(project_generator)
|
7
|
+
super
|
8
|
+
project_generator.configure do |project|
|
9
|
+
project.rails_version = 2
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def configure_project_generator(project_generator)
|
14
|
+
super
|
15
|
+
project_generator.configure do |project|
|
16
|
+
project.test_unit_gem_version = '~> 2.4'
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.including_the_adapter_manually_works
|
21
|
+
specify "including the adapter manually works" do
|
22
|
+
project = generate_project do |project|
|
23
|
+
project.add_to_prelude <<-EOT
|
24
|
+
class ActiveSupport::TestCase
|
25
|
+
include RR::Adapters::TestUnit
|
26
|
+
end
|
27
|
+
EOT
|
28
|
+
end
|
29
|
+
project.add_test_file do |file|
|
30
|
+
file.add_working_test_case_with_adapter_tests do |test_case|
|
31
|
+
test_case.add_to_body <<-EOT
|
32
|
+
def test_the_correct_adapters_are_loaded
|
33
|
+
assert_adapters_loaded #{adapters_that_should_be_loaded.inspect}
|
34
|
+
end
|
35
|
+
EOT
|
36
|
+
end
|
37
|
+
end
|
38
|
+
result = project.run_tests
|
39
|
+
result.should be_success
|
40
|
+
result.should_not have_errors_or_failures
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.rr_hooks_into_the_test_framework_automatically
|
45
|
+
specify "RR hooks into the test framework automatically" do
|
46
|
+
project = generate_project
|
47
|
+
project.add_test_file do |file|
|
48
|
+
file.add_working_test_case
|
49
|
+
end
|
50
|
+
result = project.run_tests
|
51
|
+
result.should be_success
|
52
|
+
result.should_not have_errors_or_failures
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def self.using_rr_with_cucumber_works
|
57
|
+
specify "using RR with Cucumber works" do
|
58
|
+
project_generator = build_rails_project_generator do |project_generator|
|
59
|
+
project_generator.mixin Project::Cucumber
|
60
|
+
end
|
61
|
+
project = project_generator.call
|
62
|
+
result = project.run_command_within("cucumber")
|
63
|
+
result.should be_success
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
context 'when RR is listed in config/environment.rb' do
|
68
|
+
def configure_project_generator(project_generator)
|
69
|
+
super
|
70
|
+
project_generator.configure do |project|
|
71
|
+
project.autorequire_gems = true
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def adapters_that_should_be_loaded
|
76
|
+
[:TestUnit2]
|
77
|
+
end
|
78
|
+
|
79
|
+
including_the_adapter_manually_works
|
80
|
+
using_rr_with_cucumber_works
|
81
|
+
end
|
82
|
+
|
83
|
+
context 'when RR is being required manually' do
|
84
|
+
def configure_project_generator(project_generator)
|
85
|
+
super
|
86
|
+
project_generator.configure do |project|
|
87
|
+
project.autorequire_gems = false
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
def adapters_that_should_be_loaded
|
92
|
+
[:TestUnit2, :TestUnit2ActiveSupport]
|
93
|
+
end
|
94
|
+
|
95
|
+
rr_hooks_into_the_test_framework_automatically
|
96
|
+
including_the_adapter_manually_works
|
97
|
+
using_rr_with_cucumber_works
|
98
|
+
|
99
|
+
specify "when RR raises an error it raises a failure not an exception" do
|
100
|
+
project = generate_project
|
101
|
+
project.add_test_file do |file|
|
102
|
+
file.add_test_case do |test_case|
|
103
|
+
test_case.add_test <<-EOT
|
104
|
+
object = Object.new
|
105
|
+
mock(object).foo
|
106
|
+
EOT
|
107
|
+
end
|
108
|
+
end
|
109
|
+
result = project.run_tests
|
110
|
+
result.should fail_with_output(/1 failure/)
|
111
|
+
end
|
112
|
+
|
113
|
+
specify "the database is properly rolled back after an RR error" do
|
114
|
+
project = generate_project do |project|
|
115
|
+
project.add_model_and_migration(:person, :people, :name => :string)
|
116
|
+
end
|
117
|
+
project.add_test_file do |file|
|
118
|
+
file.add_test_case do |test_case|
|
119
|
+
test_case.add_test <<-EOT
|
120
|
+
Person.create!(:name => 'Joe Blow')
|
121
|
+
object = Object.new
|
122
|
+
mock(object).foo
|
123
|
+
EOT
|
124
|
+
end
|
125
|
+
end
|
126
|
+
expect {
|
127
|
+
result = project.run_tests
|
128
|
+
result.should have_errors_or_failures
|
129
|
+
}.to leave_database_table_clear(project, :people)
|
130
|
+
end
|
131
|
+
|
132
|
+
specify "throwing an error in teardown doesn't mess things up" do
|
133
|
+
project = generate_project
|
134
|
+
project.add_test_file do |file|
|
135
|
+
file.add_test_case do |test_case|
|
136
|
+
test_case.add_to_body <<-EOT
|
137
|
+
def teardown
|
138
|
+
raise 'hell'
|
139
|
+
end
|
140
|
+
EOT
|
141
|
+
test_case.add_test("") # doesn't matter
|
142
|
+
end
|
143
|
+
end
|
144
|
+
result = project.run_tests
|
145
|
+
result.should fail_with_output(/1 error/)
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
@@ -0,0 +1,47 @@
|
|
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
|
@@ -0,0 +1,12 @@
|
|
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
|
@@ -0,0 +1,13 @@
|
|
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
|
@@ -0,0 +1,14 @@
|
|
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
|
@@ -0,0 +1,241 @@
|
|
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
|