rspec-rails 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. data/History.txt +57 -0
  2. data/Manifest.txt +158 -0
  3. data/README.txt +81 -0
  4. data/Rakefile +39 -0
  5. data/UPGRADE +7 -0
  6. data/generators/rspec/CHANGES +1 -0
  7. data/generators/rspec/rspec_generator.rb +40 -0
  8. data/generators/rspec/templates/all_stories.rb +4 -0
  9. data/generators/rspec/templates/previous_failures.txt +0 -0
  10. data/generators/rspec/templates/rcov.opts +2 -0
  11. data/generators/rspec/templates/rspec.rake +132 -0
  12. data/generators/rspec/templates/script/autospec +3 -0
  13. data/generators/rspec/templates/script/spec +4 -0
  14. data/generators/rspec/templates/script/spec_server +116 -0
  15. data/generators/rspec/templates/spec.opts +4 -0
  16. data/generators/rspec/templates/spec_helper.rb +47 -0
  17. data/generators/rspec/templates/stories_helper.rb +3 -0
  18. data/generators/rspec_controller/USAGE +33 -0
  19. data/generators/rspec_controller/rspec_controller_generator.rb +49 -0
  20. data/generators/rspec_controller/templates/controller_spec.rb +25 -0
  21. data/generators/rspec_controller/templates/helper_spec.rb +11 -0
  22. data/generators/rspec_controller/templates/view_spec.rb +12 -0
  23. data/generators/rspec_default_values.rb +19 -0
  24. data/generators/rspec_model/USAGE +18 -0
  25. data/generators/rspec_model/rspec_model_generator.rb +35 -0
  26. data/generators/rspec_model/templates/model_spec.rb +15 -0
  27. data/generators/rspec_scaffold/rspec_scaffold_generator.rb +154 -0
  28. data/generators/rspec_scaffold/templates/controller_spec.rb +173 -0
  29. data/generators/rspec_scaffold/templates/edit_erb_spec.rb +26 -0
  30. data/generators/rspec_scaffold/templates/helper_spec.rb +11 -0
  31. data/generators/rspec_scaffold/templates/index_erb_spec.rb +27 -0
  32. data/generators/rspec_scaffold/templates/new_erb_spec.rb +26 -0
  33. data/generators/rspec_scaffold/templates/routing_spec.rb +59 -0
  34. data/generators/rspec_scaffold/templates/show_erb_spec.rb +23 -0
  35. data/init.rb +9 -0
  36. data/lib/autotest/discover.rb +1 -0
  37. data/lib/autotest/rails_rspec.rb +76 -0
  38. data/lib/spec/rails.rb +15 -0
  39. data/lib/spec/rails/example.rb +47 -0
  40. data/lib/spec/rails/example/assigns_hash_proxy.rb +43 -0
  41. data/lib/spec/rails/example/controller_example_group.rb +256 -0
  42. data/lib/spec/rails/example/cookies_proxy.rb +25 -0
  43. data/lib/spec/rails/example/functional_example_group.rb +87 -0
  44. data/lib/spec/rails/example/helper_example_group.rb +166 -0
  45. data/lib/spec/rails/example/model_example_group.rb +14 -0
  46. data/lib/spec/rails/example/rails_example_group.rb +33 -0
  47. data/lib/spec/rails/example/render_observer.rb +93 -0
  48. data/lib/spec/rails/example/view_example_group.rb +183 -0
  49. data/lib/spec/rails/extensions.rb +12 -0
  50. data/lib/spec/rails/extensions/action_controller/base.rb +14 -0
  51. data/lib/spec/rails/extensions/action_controller/rescue.rb +21 -0
  52. data/lib/spec/rails/extensions/action_controller/test_response.rb +11 -0
  53. data/lib/spec/rails/extensions/action_view/base.rb +31 -0
  54. data/lib/spec/rails/extensions/active_record/base.rb +30 -0
  55. data/lib/spec/rails/extensions/object.rb +5 -0
  56. data/lib/spec/rails/extensions/spec/example/configuration.rb +71 -0
  57. data/lib/spec/rails/extensions/spec/matchers/have.rb +21 -0
  58. data/lib/spec/rails/interop/testcase.rb +14 -0
  59. data/lib/spec/rails/matchers.rb +31 -0
  60. data/lib/spec/rails/matchers/assert_select.rb +131 -0
  61. data/lib/spec/rails/matchers/change.rb +11 -0
  62. data/lib/spec/rails/matchers/have_text.rb +57 -0
  63. data/lib/spec/rails/matchers/include_text.rb +54 -0
  64. data/lib/spec/rails/matchers/redirect_to.rb +113 -0
  65. data/lib/spec/rails/matchers/render_template.rb +90 -0
  66. data/lib/spec/rails/mocks.rb +132 -0
  67. data/lib/spec/rails/story_adapter.rb +79 -0
  68. data/lib/spec/rails/version.rb +15 -0
  69. data/spec/rails/autotest/mappings_spec.rb +36 -0
  70. data/spec/rails/example/assigns_hash_proxy_spec.rb +65 -0
  71. data/spec/rails/example/configuration_spec.rb +83 -0
  72. data/spec/rails/example/controller_isolation_spec.rb +62 -0
  73. data/spec/rails/example/controller_spec_spec.rb +272 -0
  74. data/spec/rails/example/cookies_proxy_spec.rb +74 -0
  75. data/spec/rails/example/example_group_factory_spec.rb +112 -0
  76. data/spec/rails/example/helper_spec_spec.rb +161 -0
  77. data/spec/rails/example/model_spec_spec.rb +18 -0
  78. data/spec/rails/example/shared_behaviour_spec.rb +16 -0
  79. data/spec/rails/example/test_unit_assertion_accessibility_spec.rb +33 -0
  80. data/spec/rails/example/view_spec_spec.rb +280 -0
  81. data/spec/rails/extensions/action_controller_rescue_action_spec.rb +54 -0
  82. data/spec/rails/extensions/action_view_base_spec.rb +48 -0
  83. data/spec/rails/extensions/active_record_spec.rb +14 -0
  84. data/spec/rails/interop/testcase_spec.rb +66 -0
  85. data/spec/rails/matchers/assert_select_spec.rb +814 -0
  86. data/spec/rails/matchers/description_generation_spec.rb +37 -0
  87. data/spec/rails/matchers/errors_on_spec.rb +13 -0
  88. data/spec/rails/matchers/have_text_spec.rb +62 -0
  89. data/spec/rails/matchers/include_text_spec.rb +64 -0
  90. data/spec/rails/matchers/redirect_to_spec.rb +209 -0
  91. data/spec/rails/matchers/render_template_spec.rb +176 -0
  92. data/spec/rails/matchers/should_change_spec.rb +15 -0
  93. data/spec/rails/mocks/ar_classes.rb +10 -0
  94. data/spec/rails/mocks/mock_model_spec.rb +106 -0
  95. data/spec/rails/mocks/stub_model_spec.rb +80 -0
  96. data/spec/rails/sample_modified_fixture.rb +8 -0
  97. data/spec/rails/sample_spec.rb +8 -0
  98. data/spec/rails/spec_server_spec.rb +96 -0
  99. data/spec/rails/spec_spec.rb +11 -0
  100. data/spec/rails_suite.rb +7 -0
  101. data/spec/spec_helper.rb +57 -0
  102. data/spec_resources/controllers/action_view_base_spec_controller.rb +2 -0
  103. data/spec_resources/controllers/controller_spec_controller.rb +94 -0
  104. data/spec_resources/controllers/redirect_spec_controller.rb +59 -0
  105. data/spec_resources/controllers/render_spec_controller.rb +30 -0
  106. data/spec_resources/controllers/rjs_spec_controller.rb +58 -0
  107. data/spec_resources/helpers/explicit_helper.rb +38 -0
  108. data/spec_resources/helpers/more_explicit_helper.rb +5 -0
  109. data/spec_resources/helpers/plugin_application_helper.rb +6 -0
  110. data/spec_resources/helpers/view_spec_helper.rb +13 -0
  111. data/spec_resources/views/controller_spec/_partial.rhtml +0 -0
  112. data/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml +1 -0
  113. data/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml +1 -0
  114. data/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml +0 -0
  115. data/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml +1 -0
  116. data/spec_resources/views/controller_spec/action_with_template.rhtml +1 -0
  117. data/spec_resources/views/layouts/application.rhtml +0 -0
  118. data/spec_resources/views/layouts/simple.rhtml +0 -0
  119. data/spec_resources/views/objects/_object.html.erb +1 -0
  120. data/spec_resources/views/render_spec/_a_partial.rhtml +0 -0
  121. data/spec_resources/views/render_spec/action_with_alternate_layout.rhtml +0 -0
  122. data/spec_resources/views/render_spec/some_action.js.rjs +1 -0
  123. data/spec_resources/views/render_spec/some_action.rhtml +0 -0
  124. data/spec_resources/views/render_spec/some_action.rjs +1 -0
  125. data/spec_resources/views/rjs_spec/_replacement_partial.rhtml +1 -0
  126. data/spec_resources/views/rjs_spec/hide_div.rjs +1 -0
  127. data/spec_resources/views/rjs_spec/hide_page_element.rjs +1 -0
  128. data/spec_resources/views/rjs_spec/insert_html.rjs +1 -0
  129. data/spec_resources/views/rjs_spec/replace.rjs +1 -0
  130. data/spec_resources/views/rjs_spec/replace_html.rjs +1 -0
  131. data/spec_resources/views/rjs_spec/replace_html_with_partial.rjs +1 -0
  132. data/spec_resources/views/rjs_spec/visual_effect.rjs +1 -0
  133. data/spec_resources/views/rjs_spec/visual_toggle_effect.rjs +1 -0
  134. data/spec_resources/views/tag_spec/no_tags.rhtml +1 -0
  135. data/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml +1 -0
  136. data/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml +1 -0
  137. data/spec_resources/views/view_spec/_partial.rhtml +2 -0
  138. data/spec_resources/views/view_spec/_partial_used_twice.rhtml +0 -0
  139. data/spec_resources/views/view_spec/_partial_with_local_variable.rhtml +1 -0
  140. data/spec_resources/views/view_spec/_partial_with_sub_partial.rhtml +1 -0
  141. data/spec_resources/views/view_spec/_spacer.rhtml +1 -0
  142. data/spec_resources/views/view_spec/accessor.rhtml +5 -0
  143. data/spec_resources/views/view_spec/block_helper.rhtml +3 -0
  144. data/spec_resources/views/view_spec/entry_form.rhtml +2 -0
  145. data/spec_resources/views/view_spec/explicit_helper.rhtml +2 -0
  146. data/spec_resources/views/view_spec/foo/show.rhtml +1 -0
  147. data/spec_resources/views/view_spec/implicit_helper.rhtml +2 -0
  148. data/spec_resources/views/view_spec/multiple_helpers.rhtml +3 -0
  149. data/spec_resources/views/view_spec/should_not_receive.rhtml +3 -0
  150. data/spec_resources/views/view_spec/template_with_partial.rhtml +5 -0
  151. data/spec_resources/views/view_spec/template_with_partial_using_collection.rhtml +3 -0
  152. data/spec_resources/views/view_spec/template_with_partial_with_array.rhtml +1 -0
  153. data/stories/all.rb +10 -0
  154. data/stories/configuration/stories.rb +5 -0
  155. data/stories/helper.rb +6 -0
  156. data/stories/steps/people.rb +8 -0
  157. data/stories/transactions_should_rollback +15 -0
  158. data/stories/transactions_should_rollback.rb +25 -0
  159. metadata +234 -0
@@ -0,0 +1,54 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ module ActionController
4
+ describe "Rescue", "#rescue_action in default mode" do
5
+ before(:each) do
6
+ @fixture = Object.new
7
+ @fixture.extend ActionController::Rescue
8
+ class << @fixture
9
+ public :rescue_action
10
+ end
11
+ end
12
+
13
+ it "should raise the passed in exception so examples fail fast" do
14
+ proc {@fixture.rescue_action(RuntimeError.new("Foobar"))}.should raise_error(RuntimeError, "Foobar")
15
+ end
16
+ end
17
+
18
+ class RescueOverriddenController < ActionController::Base
19
+ def rescue_action(error)
20
+ "successfully overridden"
21
+ end
22
+ end
23
+
24
+ describe "Rescue", "#rescue_action, when overridden" do
25
+ before(:each) do
26
+ @fixture = RescueOverriddenController.new
27
+ end
28
+
29
+ it "should do whatever the overridden method does" do
30
+ @fixture.rescue_action(RuntimeError.new("Foobar")).should == "successfully overridden"
31
+ end
32
+ end
33
+
34
+ class SearchController < ActionController::Base
35
+ end
36
+
37
+ describe "Rescue", "#rescue_action when told to use rails error handling" do
38
+ before(:each) do
39
+ @controller = SearchController.new
40
+ @controller.use_rails_error_handling!
41
+ class << @controller
42
+ public :rescue_action
43
+ end
44
+ end
45
+
46
+ it "should use Rails exception handling" do
47
+ exception = RuntimeError.new("The Error")
48
+ exception.stub!(:backtrace).and_return(caller)
49
+ @controller.should_receive(:rescue_action_locally).with(exception)
50
+
51
+ @controller.rescue_action(exception)
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,48 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+ require 'spec/mocks/errors'
3
+
4
+ describe ActionView::Base, "with RSpec extensions:", :type => :view do
5
+
6
+ describe "should_receive(:render)" do
7
+ it "should not raise when render has been received" do
8
+ template.should_receive(:render).with(:partial => "name")
9
+ template.render :partial => "name"
10
+ end
11
+
12
+ it "should raise when render has NOT been received" do
13
+ template.should_receive(:render).with(:partial => "name")
14
+ lambda {
15
+ template.verify_rendered
16
+ }.should raise_error
17
+ end
18
+
19
+ it "should return something (like a normal mock)" do
20
+ template.should_receive(:render).with(:partial => "name").and_return("Little Johnny")
21
+ result = template.render :partial => "name"
22
+ result.should == "Little Johnny"
23
+ end
24
+ end
25
+
26
+ describe "stub!(:render)" do
27
+ it "should not raise when stubbing and render has been received" do
28
+ template.stub!(:render).with(:partial => "name")
29
+ template.render :partial => "name"
30
+ end
31
+
32
+ it "should not raise when stubbing and render has NOT been received" do
33
+ template.stub!(:render).with(:partial => "name")
34
+ end
35
+
36
+ it "should not raise when stubbing and render has been received with different options" do
37
+ template.stub!(:render).with(:partial => "name")
38
+ template.render :partial => "view_spec/spacer"
39
+ end
40
+
41
+ it "should not raise when stubbing and expecting and render has been received" do
42
+ template.stub!(:render).with(:partial => "name")
43
+ template.should_receive(:render).with(:partial => "name")
44
+ template.render(:partial => "name")
45
+ end
46
+ end
47
+
48
+ end
@@ -0,0 +1,14 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ describe "A model" do
4
+ fixtures :things
5
+ it "should tell you its required fields" do
6
+ Thing.new.should have(1).error_on(:name)
7
+ end
8
+
9
+ it "should tell you how many records it has" do
10
+ Thing.should have(:no).records
11
+ Thing.create(:name => "THE THING")
12
+ Thing.should have(1).record
13
+ end
14
+ end
@@ -0,0 +1,66 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+
4
+ if ActiveSupport.const_defined?(:Callbacks) && Test::Unit::TestCase.include?(ActiveSupport::Callbacks)
5
+
6
+ class TestUnitTesting < Test::Unit::TestCase
7
+ @@setup_callback_count = 0
8
+ @@setup_method_count = 0
9
+ @@teardown_callback_count = 0
10
+ @@teardown_method_count = 0
11
+ cattr_accessor :setup_callback_count, :setup_method_count, :teardown_callback_count, :teardown_method_count
12
+
13
+ setup :do_some_setup
14
+ teardown :do_some_teardown
15
+
16
+ @@has_been_run = false
17
+ def self.run?
18
+ @@has_been_run
19
+ end
20
+
21
+ def do_some_setup
22
+ @@setup_callback_count += 1
23
+ end
24
+
25
+ def setup
26
+ @@setup_method_count += 1
27
+ end
28
+
29
+ def test_something
30
+ assert_equal true, true
31
+ @@has_been_run = true
32
+ end
33
+
34
+ def teardown
35
+ @@teardown_method_count += 1
36
+ end
37
+
38
+ def do_some_teardown
39
+ @@teardown_callback_count += 1
40
+ end
41
+ end
42
+
43
+ module Test
44
+ module Unit
45
+ describe "Running TestCase tests" do
46
+ before(:all) do
47
+ TestUnitTesting.run unless TestUnitTesting.run?
48
+ end
49
+
50
+ it "should call the setup callbacks" do
51
+ TestUnitTesting.setup_callback_count.should == 1
52
+ end
53
+ it "should still only call the normal setup method once" do
54
+ TestUnitTesting.setup_method_count.should == 1
55
+ end
56
+ it "should call the teardown callbacks" do
57
+ TestUnitTesting.teardown_callback_count.should == 1
58
+ end
59
+ it "should still only call the normal teardown method once" do
60
+ TestUnitTesting.teardown_method_count.should == 1
61
+ end
62
+ end
63
+ end
64
+ end
65
+
66
+ end
@@ -0,0 +1,814 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ # assert_select plugins for Rails
4
+ #
5
+ # Copyright (c) 2006 Assaf Arkin, under Creative Commons Attribution and/or MIT License
6
+ # Developed for http://co.mments.com
7
+ # Code and documention: http://labnotes.org
8
+
9
+ class AssertSelectController < ActionController::Base
10
+
11
+ def response=(content)
12
+ @content = content
13
+ end
14
+
15
+ #NOTE - this is commented because response is implemented in lib/spec/rails/context/controller
16
+ # def response(&block)
17
+ # @update = block
18
+ # end
19
+ #
20
+ def html()
21
+ render :text=>@content, :layout=>false, :content_type=>Mime::HTML
22
+ @content = nil
23
+ end
24
+
25
+ def rjs()
26
+ update = @update
27
+ render :update do |page|
28
+ update.call page
29
+ end
30
+ @update = nil
31
+ end
32
+
33
+ def xml()
34
+ render :text=>@content, :layout=>false, :content_type=>Mime::XML
35
+ @content = nil
36
+ end
37
+
38
+ def rescue_action(e)
39
+ raise e
40
+ end
41
+
42
+ end
43
+
44
+ class AssertSelectMailer < ActionMailer::Base
45
+
46
+ def test(html)
47
+ recipients "test <test@test.host>"
48
+ from "test@test.host"
49
+ subject "Test e-mail"
50
+ part :content_type=>"text/html", :body=>html
51
+ end
52
+
53
+ end
54
+
55
+ module AssertSelectSpecHelpers
56
+ def render_html(html)
57
+ @controller.response = html
58
+ get :html
59
+ end
60
+
61
+ def render_rjs(&block)
62
+ clear_response
63
+ @controller.response &block
64
+ get :rjs
65
+ end
66
+
67
+ def render_xml(xml)
68
+ @controller.response = xml
69
+ get :xml
70
+ end
71
+
72
+ def first_non_rspec_line_in_backtrace_of(error)
73
+ rspec_path = File.join('rspec', 'lib', 'spec')
74
+ error.backtrace.reject { |line|
75
+ line =~ /#{rspec_path}/
76
+ }.first
77
+ end
78
+
79
+ private
80
+ # necessary for 1.2.1
81
+ def clear_response
82
+ render_html("")
83
+ end
84
+ end
85
+
86
+ unless defined?(SpecFailed)
87
+ SpecFailed = Spec::Expectations::ExpectationNotMetError
88
+ end
89
+
90
+ describe "should have_tag", :type => :controller do
91
+ include AssertSelectSpecHelpers
92
+ controller_name :assert_select
93
+ integrate_views
94
+
95
+ it "should find specific numbers of elements" do
96
+ render_html %Q{<div id="1"></div><div id="2"></div>}
97
+ response.should have_tag( "div" )
98
+ response.should have_tag("div", 2)
99
+ lambda { response.should_not have_tag("div") }.should raise_error(SpecFailed, "should not have tag(\"div\"), but did")
100
+
101
+ lambda { response.should have_tag("div", 3) }.should raise_error(SpecFailed)
102
+ lambda { response.should have_tag("p") }.should raise_error(SpecFailed)
103
+ end
104
+
105
+ it "should expect to find elements when using true" do
106
+ render_html %Q{<div id="1"></div><div id="2"></div>}
107
+ response.should have_tag( "div", true )
108
+ lambda { response.should have_tag( "p", true )}.should raise_error(SpecFailed)
109
+ end
110
+
111
+ it "should expect to not find elements when using false" do
112
+ render_html %Q{<div id="1"></div><div id="2"></div>}
113
+ response.should have_tag( "p", false )
114
+ lambda { response.should have_tag( "div", false )}.should raise_error(SpecFailed)
115
+ end
116
+
117
+
118
+ it "should match submitted text using text or regexp" do
119
+ render_html %Q{<div id="1">foo</div><div id="2">foo</div>}
120
+ response.should have_tag("div", "foo")
121
+ response.should have_tag("div", /(foo|bar)/)
122
+ response.should have_tag("div", :text=>"foo")
123
+ response.should have_tag("div", :text=>/(foo|bar)/)
124
+
125
+ lambda { response.should have_tag("div", "bar") }.should raise_error(SpecFailed)
126
+ lambda { response.should have_tag("div", :text=>"bar") }.should raise_error(SpecFailed)
127
+ lambda { response.should have_tag("p", :text=>"foo") }.should raise_error(SpecFailed)
128
+
129
+ lambda { response.should have_tag("div", /foobar/) }.should raise_error(SpecFailed)
130
+ lambda { response.should have_tag("div", :text=>/foobar/) }.should raise_error(SpecFailed)
131
+ lambda { response.should have_tag("p", :text=>/foo/) }.should raise_error(SpecFailed)
132
+ end
133
+
134
+ it "should use submitted message" do
135
+ render_html %Q{nothing here}
136
+ lambda {
137
+ response.should have_tag("div", {}, "custom message")
138
+ }.should raise_error(SpecFailed, /custom message/)
139
+ end
140
+
141
+ it "should match submitted html" do
142
+ render_html %Q{<p>\n<em>"This is <strong>not</strong> a big problem,"</em> he said.\n</p>}
143
+ text = "\"This is not a big problem,\" he said."
144
+ html = "<em>\"This is <strong>not</strong> a big problem,\"</em> he said."
145
+ response.should have_tag("p", text)
146
+ lambda { response.should have_tag("p", html) }.should raise_error(SpecFailed)
147
+ response.should have_tag("p", :html=>html)
148
+ lambda { response.should have_tag("p", :html=>text) }.should raise_error(SpecFailed)
149
+
150
+ # # No stripping for pre.
151
+ render_html %Q{<pre>\n<em>"This is <strong>not</strong> a big problem,"</em> he said.\n</pre>}
152
+ text = "\n\"This is not a big problem,\" he said.\n"
153
+ html = "\n<em>\"This is <strong>not</strong> a big problem,\"</em> he said.\n"
154
+ response.should have_tag("pre", text)
155
+ lambda { response.should have_tag("pre", html) }.should raise_error(SpecFailed)
156
+ response.should have_tag("pre", :html=>html)
157
+ lambda { response.should have_tag("pre", :html=>text) }.should raise_error(SpecFailed)
158
+ end
159
+
160
+ it "should match number of instances" do
161
+ render_html %Q{<div id="1">foo</div><div id="2">foo</div>}
162
+ response.should have_tag("div", 2)
163
+ lambda { response.should have_tag("div", 3) }.should raise_error(SpecFailed)
164
+ response.should have_tag("div", 1..2)
165
+ lambda { response.should have_tag("div", 3..4) }.should raise_error(SpecFailed)
166
+ response.should have_tag("div", :count=>2)
167
+ lambda { response.should have_tag("div", :count=>3) }.should raise_error(SpecFailed)
168
+ response.should have_tag("div", :minimum=>1)
169
+ response.should have_tag("div", :minimum=>2)
170
+ lambda { response.should have_tag("div", :minimum=>3) }.should raise_error(SpecFailed)
171
+ response.should have_tag("div", :maximum=>2)
172
+ response.should have_tag("div", :maximum=>3)
173
+ lambda { response.should have_tag("div", :maximum=>1) }.should raise_error(SpecFailed)
174
+ response.should have_tag("div", :minimum=>1, :maximum=>2)
175
+ lambda { response.should have_tag("div", :minimum=>3, :maximum=>4) }.should raise_error(SpecFailed)
176
+ end
177
+
178
+ it "substitution values" do
179
+ render_html %Q{<div id="1">foo</div><div id="2">foo</div><span id="3"></span>}
180
+ response.should have_tag("div#?", /\d+/) do |elements| #using do/end
181
+ elements.size.should == 2
182
+ end
183
+ response.should have_tag("div#?", /\d+/) { |elements| #using {}
184
+ elements.size.should == 2
185
+ }
186
+ lambda {
187
+ response.should have_tag("div#?", /\d+/) do |elements|
188
+ elements.size.should == 3
189
+ end
190
+ }.should raise_error(SpecFailed, "expected: 3,\n got: 2 (using ==)")
191
+
192
+ lambda {
193
+ response.should have_tag("div#?", /\d+/) { |elements|
194
+ elements.size.should == 3
195
+ }
196
+ }.should raise_error(SpecFailed, "expected: 3,\n got: 2 (using ==)")
197
+
198
+ response.should have_tag("div#?", /\d+/) do |elements|
199
+ elements.size.should == 2
200
+ with_tag("#1")
201
+ with_tag("#2")
202
+ without_tag("#3")
203
+ end
204
+ end
205
+
206
+ #added for RSpec
207
+ it "nested tags in form" do
208
+ render_html %Q{
209
+ <form action="test">
210
+ <input type="text" name="email">
211
+ </form>
212
+ <form action="other">
213
+ <input type="text" name="other_input">
214
+ </form>
215
+ }
216
+ response.should have_tag("form[action=test]") { |form|
217
+ with_tag("input[type=text][name=email]")
218
+ }
219
+ response.should have_tag("form[action=test]") { |form|
220
+ with_tag("input[type=text][name=email]")
221
+ }
222
+
223
+ lambda {
224
+ response.should have_tag("form[action=test]") { |form|
225
+ with_tag("input[type=text][name=other_input]")
226
+ }
227
+ }.should raise_error(SpecFailed)
228
+
229
+ lambda {
230
+ response.should have_tag("form[action=test]") {
231
+ with_tag("input[type=text][name=other_input]")
232
+ }
233
+ }.should raise_error(SpecFailed)
234
+ end
235
+
236
+ it "should report the correct line number for a nested failed expectation" do
237
+ render_html %Q{
238
+ <form action="test">
239
+ <input type="text" name="email">
240
+ </form>
241
+ }
242
+ begin
243
+ response.should have_tag("form[action=test]") {
244
+ @expected_error_line = __LINE__; should have_tag("input[type=text][name=other_input]")
245
+ }
246
+ rescue => e
247
+ first_non_rspec_line_in_backtrace_of(e).should =~
248
+ /#{File.basename(__FILE__)}:#{@expected_error_line}/
249
+ else
250
+ fail
251
+ end
252
+ end
253
+
254
+ it "should report the correct line number for a nested raised exception" do
255
+ render_html %Q{
256
+ <form action="test">
257
+ <input type="text" name="email">
258
+ </form>
259
+ }
260
+ begin
261
+ response.should have_tag("form[action=test]") {
262
+ @expected_error_line = __LINE__; raise "Failed!"
263
+ }
264
+ rescue => e
265
+ first_non_rspec_line_in_backtrace_of(e).should =~
266
+ /#{File.basename(__FILE__)}:#{@expected_error_line}/
267
+ else
268
+ fail
269
+ end
270
+ end
271
+
272
+ it "should report the correct line number for a nested failed test/unit assertion" do
273
+ pending "Doesn't work at the moment. Do we want to support this?" do
274
+ render_html %Q{
275
+ <form action="test">
276
+ <input type="text" name="email">
277
+ </form>
278
+ }
279
+ begin
280
+ response.should have_tag("form[action=test]") {
281
+ @expected_error_line = __LINE__; assert false
282
+ }
283
+ rescue => e
284
+ first_non_rspec_line_in_backtrace_of(e).should =~
285
+ /#{File.basename(__FILE__)}:#{@expected_error_line}/
286
+ else
287
+ fail
288
+ end
289
+ end
290
+ end
291
+
292
+
293
+ it "beatles" do
294
+ unless defined?(BEATLES)
295
+ BEATLES = [
296
+ ["John", "Guitar"],
297
+ ["George", "Guitar"],
298
+ ["Paul", "Bass"],
299
+ ["Ringo", "Drums"]
300
+ ]
301
+ end
302
+
303
+ render_html %Q{
304
+ <div id="beatles">
305
+ <div class="beatle">
306
+ <h2>John</h2><p>Guitar</p>
307
+ </div>
308
+ <div class="beatle">
309
+ <h2>George</h2><p>Guitar</p>
310
+ </div>
311
+ <div class="beatle">
312
+ <h2>Paul</h2><p>Bass</p>
313
+ </div>
314
+ <div class="beatle">
315
+ <h2>Ringo</h2><p>Drums</p>
316
+ </div>
317
+ </div>
318
+ }
319
+ response.should have_tag("div#beatles>div[class=\"beatle\"]", 4)
320
+
321
+ response.should have_tag("div#beatles>div.beatle") {
322
+ BEATLES.each { |name, instrument|
323
+ with_tag("div.beatle>h2", name)
324
+ with_tag("div.beatle>p", instrument)
325
+ without_tag("div.beatle>span")
326
+ }
327
+ }
328
+ end
329
+
330
+ it "assert_select_text_match" do
331
+ render_html %Q{<div id="1"><span>foo</span></div><div id="2"><span>bar</span></div>}
332
+ response.should have_tag("div") do |divs|
333
+ with_tag("div", "foo")
334
+ with_tag("div", "bar")
335
+ with_tag("div", /\w*/)
336
+ with_tag("div", /\w*/, :count=>2)
337
+ without_tag("div", :text=>"foo", :count=>2)
338
+ with_tag("div", :html=>"<span>bar</span>")
339
+ with_tag("div", :html=>"<span>bar</span>")
340
+ with_tag("div", :html=>/\w*/)
341
+ with_tag("div", :html=>/\w*/, :count=>2)
342
+ without_tag("div", :html=>"<span>foo</span>", :count=>2)
343
+ end
344
+ end
345
+
346
+
347
+ it "assert_select_from_rjs with one item" do
348
+ render_rjs do |page|
349
+ page.replace_html "test", "<div id=\"1\">foo</div>\n<div id=\"2\">foo</div>"
350
+ end
351
+ response.should have_tag("div") { |elements|
352
+ elements.size.should == 2
353
+ with_tag("#1")
354
+ with_tag("#2")
355
+ }
356
+
357
+ lambda {
358
+ response.should have_tag("div") { |elements|
359
+ elements.size.should == 2
360
+ with_tag("#1")
361
+ with_tag("#3")
362
+ }
363
+ }.should raise_error(SpecFailed)
364
+
365
+ lambda {
366
+ response.should have_tag("div") { |elements|
367
+ elements.size.should == 2
368
+ with_tag("#1")
369
+ without_tag("#2")
370
+ }
371
+ }.should raise_error(SpecFailed, "should not have tag(\"#2\"), but did")
372
+
373
+ lambda {
374
+ response.should have_tag("div") { |elements|
375
+ elements.size.should == 3
376
+ with_tag("#1")
377
+ with_tag("#2")
378
+ }
379
+ }.should raise_error(SpecFailed)
380
+
381
+
382
+ response.should have_tag("div#?", /\d+/) { |elements|
383
+ with_tag("#1")
384
+ with_tag("#2")
385
+ }
386
+ end
387
+
388
+ it "assert_select_from_rjs with multiple items" do
389
+ render_rjs do |page|
390
+ page.replace_html "test", "<div id=\"1\">foo</div>"
391
+ page.replace_html "test2", "<div id=\"2\">foo</div>"
392
+ end
393
+ response.should have_tag("div")
394
+ response.should have_tag("div") { |elements|
395
+ elements.size.should == 2
396
+ with_tag("#1")
397
+ with_tag("#2")
398
+ }
399
+
400
+ lambda {
401
+ response.should have_tag("div") { |elements|
402
+ with_tag("#3")
403
+ }
404
+ }.should raise_error(SpecFailed)
405
+ end
406
+ end
407
+
408
+ describe "css_select", :type => :controller do
409
+ include AssertSelectSpecHelpers
410
+ controller_name :assert_select
411
+ integrate_views
412
+
413
+ it "can select tags from html" do
414
+ render_html %Q{<div id="1"></div><div id="2"></div>}
415
+ css_select("div").size.should == 2
416
+ css_select("p").size.should == 0
417
+ end
418
+
419
+
420
+ it "can select nested tags from html" do
421
+ render_html %Q{<div id="1">foo</div><div id="2">foo</div>}
422
+ response.should have_tag("div#?", /\d+/) { |elements|
423
+ css_select(elements[0], "div").should have(1).element
424
+ css_select(elements[1], "div").should have(1).element
425
+ }
426
+ response.should have_tag("div") {
427
+ css_select("div").should have(2).elements
428
+ css_select("div").each { |element|
429
+ # Testing as a group is one thing
430
+ css_select("#1,#2").should have(2).elements
431
+ # Testing individually is another
432
+ css_select("#1").should have(1).element
433
+ css_select("#2").should have(1).element
434
+ }
435
+ }
436
+ end
437
+
438
+ it "can select nested tags from rjs (one result)" do
439
+ render_rjs do |page|
440
+ page.replace_html "test", "<div id=\"1\">foo</div>\n<div id=\"2\">foo</div>"
441
+ end
442
+ css_select("div").should have(2).elements
443
+ css_select("#1").should have(1).element
444
+ css_select("#2").should have(1).element
445
+ end
446
+
447
+ it "can select nested tags from rjs (two results)" do
448
+ render_rjs do |page|
449
+ page.replace_html "test", "<div id=\"1\">foo</div>"
450
+ page.replace_html "test2", "<div id=\"2\">foo</div>"
451
+ end
452
+ css_select("div").should have(2).elements
453
+ css_select("#1").should have(1).element
454
+ css_select("#2").should have(1).element
455
+ end
456
+
457
+ end
458
+
459
+ describe "have_rjs behaviour_type", :type => :controller do
460
+ include AssertSelectSpecHelpers
461
+ controller_name :assert_select
462
+ integrate_views
463
+
464
+ before(:each) do
465
+ render_rjs do |page|
466
+ page.replace "test1", "<div id=\"1\">foo</div>"
467
+ page.replace_html "test2", "<div id=\"2\">bar</div><div id=\"3\">none</div>"
468
+ page.insert_html :top, "test3", "<div id=\"4\">loopy</div>"
469
+ page.hide "test4"
470
+ page["test5"].hide
471
+ end
472
+ end
473
+
474
+ it "should pass if any rjs exists" do
475
+ response.should have_rjs
476
+ end
477
+
478
+ it "should fail if no rjs exists" do
479
+ render_rjs do |page|
480
+ end
481
+ lambda do
482
+ response.should have_rjs
483
+ end.should raise_error(SpecFailed)
484
+ end
485
+
486
+ it "should find all rjs from multiple statements" do
487
+ response.should have_rjs do
488
+ with_tag("#1")
489
+ with_tag("#2")
490
+ with_tag("#3")
491
+ # with_tag("#4")
492
+ # with_tag("#5")
493
+ end
494
+ end
495
+
496
+ it "should find by id" do
497
+ response.should have_rjs("test1") { |rjs|
498
+ rjs.size.should == 1
499
+ with_tag("div", 1)
500
+ with_tag("div#1", "foo")
501
+ }
502
+
503
+ lambda do
504
+ response.should have_rjs("test1") { |rjs|
505
+ rjs.size.should == 1
506
+ without_tag("div#1", "foo")
507
+ }
508
+ end.should raise_error(SpecFailed, "should not have tag(\"div#1\", \"foo\"), but did")
509
+
510
+ response.should have_rjs("test2") { |rjs|
511
+ rjs.size.should == 2
512
+ with_tag("div", 2)
513
+ with_tag("div#2", "bar")
514
+ with_tag("div#3", "none")
515
+ }
516
+ # response.should have_rjs("test4")
517
+ # response.should have_rjs("test5")
518
+ end
519
+
520
+ # specify "should find rjs using :hide" do
521
+ # response.should have_rjs(:hide)
522
+ # response.should have_rjs(:hide, "test4")
523
+ # response.should have_rjs(:hide, "test5")
524
+ # lambda do
525
+ # response.should have_rjs(:hide, "test3")
526
+ # end.should raise_error(SpecFailed)
527
+ # end
528
+
529
+ it "should find rjs using :replace" do
530
+ response.should have_rjs(:replace) { |rjs|
531
+ with_tag("div", 1)
532
+ with_tag("div#1", "foo")
533
+ }
534
+ response.should have_rjs(:replace, "test1") { |rjs|
535
+ with_tag("div", 1)
536
+ with_tag("div#1", "foo")
537
+ }
538
+ lambda {
539
+ response.should have_rjs(:replace, "test2")
540
+ }.should raise_error(SpecFailed)
541
+
542
+ lambda {
543
+ response.should have_rjs(:replace, "test3")
544
+ }.should raise_error(SpecFailed)
545
+ end
546
+
547
+ it "should find rjs using :replace_html" do
548
+ response.should have_rjs(:replace_html) { |rjs|
549
+ with_tag("div", 2)
550
+ with_tag("div#2", "bar")
551
+ with_tag("div#3", "none")
552
+ }
553
+
554
+ response.should have_rjs(:replace_html, "test2") { |rjs|
555
+ with_tag("div", 2)
556
+ with_tag("div#2", "bar")
557
+ with_tag("div#3", "none")
558
+ }
559
+
560
+ lambda {
561
+ response.should have_rjs(:replace_html, "test1")
562
+ }.should raise_error(SpecFailed)
563
+
564
+ lambda {
565
+ response.should have_rjs(:replace_html, "test3")
566
+ }.should raise_error(SpecFailed)
567
+ end
568
+
569
+ it "should find rjs using :insert_html (non-positioned)" do
570
+ response.should have_rjs(:insert_html) { |rjs|
571
+ with_tag("div", 1)
572
+ with_tag("div#4", "loopy")
573
+ }
574
+
575
+ response.should have_rjs(:insert_html, "test3") { |rjs|
576
+ with_tag("div", 1)
577
+ with_tag("div#4", "loopy")
578
+ }
579
+
580
+ lambda {
581
+ response.should have_rjs(:insert_html, "test1")
582
+ }.should raise_error(SpecFailed)
583
+
584
+ lambda {
585
+ response.should have_rjs(:insert_html, "test2")
586
+ }.should raise_error(SpecFailed)
587
+ end
588
+
589
+ it "should find rjs using :insert (positioned)" do
590
+ render_rjs do |page|
591
+ page.insert_html :top, "test1", "<div id=\"1\">foo</div>"
592
+ page.insert_html :bottom, "test2", "<div id=\"2\">bar</div>"
593
+ page.insert_html :before, "test3", "<div id=\"3\">none</div>"
594
+ page.insert_html :after, "test4", "<div id=\"4\">loopy</div>"
595
+ end
596
+ response.should have_rjs(:insert, :top) do
597
+ with_tag("div", 1)
598
+ with_tag("#1")
599
+ end
600
+ response.should have_rjs(:insert, :top, "test1") do
601
+ with_tag("div", 1)
602
+ with_tag("#1")
603
+ end
604
+ response.should have_rjs(:insert, :bottom) {|rjs|
605
+ with_tag("div", 1)
606
+ with_tag("#2")
607
+ }
608
+ response.should have_rjs(:insert, :bottom, "test2") {|rjs|
609
+ with_tag("div", 1)
610
+ with_tag("#2")
611
+ }
612
+ response.should have_rjs(:insert, :before) {|rjs|
613
+ with_tag("div", 1)
614
+ with_tag("#3")
615
+ }
616
+ response.should have_rjs(:insert, :before, "test3") {|rjs|
617
+ with_tag("div", 1)
618
+ with_tag("#3")
619
+ }
620
+ response.should have_rjs(:insert, :after) {|rjs|
621
+ with_tag("div", 1)
622
+ with_tag("#4")
623
+ }
624
+ response.should have_rjs(:insert, :after, "test4") {|rjs|
625
+ with_tag("div", 1)
626
+ with_tag("#4")
627
+ }
628
+ end
629
+
630
+ it "should find rjs using :insert (positioned)" do
631
+ pending("await fix for http://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/982")
632
+ render_rjs do |page|
633
+ page.insert_html :top, "test1", "<div id=\"1\">foo</div>"
634
+ page.insert_html :bottom, "test2", "<div id=\"2\">bar</div>"
635
+ end
636
+ lambda {
637
+ response.should have_rjs(:insert, :top, "test2")
638
+ }.should raise_error(SpecFailed)
639
+ end
640
+ end
641
+
642
+ describe "send_email behaviour_type", :type => :controller do
643
+ include AssertSelectSpecHelpers
644
+ controller_name :assert_select
645
+ integrate_views
646
+
647
+ before(:each) do
648
+ ActionMailer::Base.delivery_method = :test
649
+ ActionMailer::Base.perform_deliveries = true
650
+ ActionMailer::Base.deliveries = []
651
+ end
652
+
653
+ after(:each) do
654
+ ActionMailer::Base.deliveries.clear
655
+ end
656
+
657
+ it "should fail with nothing sent" do
658
+ response.should_not send_email
659
+ lambda {
660
+ response.should send_email{}
661
+ }.should raise_error(SpecFailed, /No e-mail in delivery list./)
662
+ end
663
+
664
+ it "should pass otherwise" do
665
+ AssertSelectMailer.deliver_test "<div><p>foo</p><p>bar</p></div>"
666
+ response.should send_email
667
+ lambda {
668
+ response.should_not send_email
669
+ }.should raise_error(SpecFailed)
670
+ response.should send_email{}
671
+ response.should send_email {
672
+ with_tag("div:root") {
673
+ with_tag("p:first-child", "foo")
674
+ with_tag("p:last-child", "bar")
675
+ }
676
+ }
677
+
678
+ lambda {
679
+ response.should_not send_email
680
+ }.should raise_error(SpecFailed, "should not send email, but did")
681
+ end
682
+
683
+ end
684
+
685
+ # describe "An rjs call to :visual_effect, a 'should have_rjs' spec with",
686
+ # :type => :view do
687
+ #
688
+ # before do
689
+ # render 'rjs_spec/visual_effect'
690
+ # end
691
+ #
692
+ # it "should pass with the correct element name" do
693
+ # response.should have_rjs(:effect, :fade, 'mydiv')
694
+ # end
695
+ #
696
+ # it "should fail the wrong element name" do
697
+ # lambda {
698
+ # response.should have_rjs(:effect, :fade, 'wrongname')
699
+ # }.should raise_error(SpecFailed)
700
+ # end
701
+ #
702
+ # it "should fail with the correct element but the wrong command" do
703
+ # lambda {
704
+ # response.should have_rjs(:effect, :puff, 'mydiv')
705
+ # }.should raise_error(SpecFailed)
706
+ # end
707
+ #
708
+ # end
709
+ #
710
+ # describe "An rjs call to :visual_effect for a toggle, a 'should have_rjs' spec with",
711
+ # :type => :view do
712
+ #
713
+ # before do
714
+ # render 'rjs_spec/visual_toggle_effect'
715
+ # end
716
+ #
717
+ # it "should pass with the correct element name" do
718
+ # response.should have_rjs(:effect, :toggle_blind, 'mydiv')
719
+ # end
720
+ #
721
+ # it "should fail with the wrong element name" do
722
+ # lambda {
723
+ # response.should have_rjs(:effect, :toggle_blind, 'wrongname')
724
+ # }.should raise_error(SpecFailed)
725
+ # end
726
+ #
727
+ # it "should fail the correct element but the wrong command" do
728
+ # lambda {
729
+ # response.should have_rjs(:effect, :puff, 'mydiv')
730
+ # }.should raise_error(SpecFailed)
731
+ # end
732
+ #
733
+ # end
734
+
735
+ describe "string.should have_tag", :type => :helper do
736
+ include AssertSelectSpecHelpers
737
+
738
+ it "should find root element" do
739
+ "<p>a paragraph</p>".should have_tag("p", "a paragraph")
740
+ end
741
+
742
+ it "should not find non-existent element" do
743
+ lambda do
744
+ "<p>a paragraph</p>".should have_tag("p", "wrong text")
745
+ end.should raise_error(SpecFailed)
746
+ end
747
+
748
+ it "should find child element" do
749
+ "<div><p>a paragraph</p></div>".should have_tag("p", "a paragraph")
750
+ end
751
+
752
+ it "should find nested element" do
753
+ "<div><p>a paragraph</p></div>".should have_tag("div") do
754
+ with_tag("p", "a paragraph")
755
+ end
756
+ end
757
+
758
+ it "should not find wrong nested element" do
759
+ lambda do
760
+ "<div><p>a paragraph</p></div>".should have_tag("div") do
761
+ with_tag("p", "wrong text")
762
+ end
763
+ end.should raise_error(SpecFailed)
764
+ end
765
+ end
766
+
767
+ describe "have_tag", :type => :controller do
768
+ include AssertSelectSpecHelpers
769
+ controller_name :assert_select
770
+ integrate_views
771
+
772
+ it "should work exactly the same as assert_select" do
773
+ render_html %Q{
774
+ <div id="wrapper">foo
775
+ <div class="piece">
776
+ <h3>Text</h3>
777
+ </div>
778
+ <div class="piece">
779
+ <h3>Another</h3>
780
+ </div>
781
+ </div>
782
+ }
783
+
784
+ assert_select "#wrapper .piece h3", :text => "Text"
785
+ assert_select "#wrapper .piece h3", :text => "Another"
786
+
787
+ response.should have_tag("#wrapper .piece h3", :text => "Text")
788
+ response.should have_tag("#wrapper .piece h3", :text => "Another")
789
+ end
790
+ end
791
+
792
+ describe 'selecting in HTML that contains a mock with null_object' do
793
+ module HTML
794
+ class Document
795
+ def initialize_with_strict_error_checking(text, strict=false, xml=false)
796
+ initialize_without_strict_error_checking(text, true, xml)
797
+ end
798
+ alias_method :initialize_without_strict_error_checking, :initialize
799
+ alias_method :initialize, :initialize_with_strict_error_checking
800
+ end
801
+ end
802
+
803
+ describe 'modified HTML::Document' do
804
+ it 'should raise error on valid HTML even though false is specified' do
805
+ lambda {HTML::Document.new("<b>#<Spec::Mocks::Mock:0x267b4f0></b>", false, false)}.should raise_error
806
+ end
807
+ end
808
+
809
+ it 'should not print errors from assert_select' do
810
+ mock = mock("Dog", :null_object => true)
811
+ html = "<b>#{mock.colour}</b>"
812
+ lambda {html.should have_tag('b')}.should_not raise_error
813
+ end
814
+ end