francois-shoulda 2.0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. data/CONTRIBUTION_GUIDELINES.rdoc +12 -0
  2. data/MIT-LICENSE +22 -0
  3. data/README.rdoc +119 -0
  4. data/Rakefile +72 -0
  5. data/bin/convert_to_should_syntax +42 -0
  6. data/lib/shoulda.rb +17 -0
  7. data/lib/shoulda/action_mailer.rb +10 -0
  8. data/lib/shoulda/action_mailer/assertions.rb +39 -0
  9. data/lib/shoulda/active_record.rb +12 -0
  10. data/lib/shoulda/active_record/assertions.rb +96 -0
  11. data/lib/shoulda/active_record/macros.rb +752 -0
  12. data/lib/shoulda/assertions.rb +49 -0
  13. data/lib/shoulda/context.rb +306 -0
  14. data/lib/shoulda/controller.rb +30 -0
  15. data/lib/shoulda/controller/formats/html.rb +201 -0
  16. data/lib/shoulda/controller/formats/xml.rb +170 -0
  17. data/lib/shoulda/controller/helpers.rb +64 -0
  18. data/lib/shoulda/controller/macros.rb +316 -0
  19. data/lib/shoulda/controller/resource_options.rb +236 -0
  20. data/lib/shoulda/helpers.rb +10 -0
  21. data/lib/shoulda/macros.rb +74 -0
  22. data/lib/shoulda/private_helpers.rb +22 -0
  23. data/lib/shoulda/proc_extensions.rb +14 -0
  24. data/lib/shoulda/rails.rb +19 -0
  25. data/lib/shoulda/tasks.rb +3 -0
  26. data/lib/shoulda/tasks/list_tests.rake +24 -0
  27. data/lib/shoulda/tasks/yaml_to_shoulda.rake +28 -0
  28. data/rails/init.rb +1 -0
  29. data/test/README +36 -0
  30. data/test/fail_macros.rb +34 -0
  31. data/test/fixtures/addresses.yml +3 -0
  32. data/test/fixtures/friendships.yml +0 -0
  33. data/test/fixtures/posts.yml +5 -0
  34. data/test/fixtures/products.yml +0 -0
  35. data/test/fixtures/taggings.yml +0 -0
  36. data/test/fixtures/tags.yml +11 -0
  37. data/test/fixtures/users.yml +6 -0
  38. data/test/functional/posts_controller_test.rb +105 -0
  39. data/test/functional/users_controller_test.rb +38 -0
  40. data/test/other/context_test.rb +145 -0
  41. data/test/other/convert_to_should_syntax_test.rb +63 -0
  42. data/test/other/helpers_test.rb +183 -0
  43. data/test/other/private_helpers_test.rb +34 -0
  44. data/test/other/should_test.rb +266 -0
  45. data/test/rails_root/app/controllers/application.rb +25 -0
  46. data/test/rails_root/app/controllers/posts_controller.rb +85 -0
  47. data/test/rails_root/app/controllers/users_controller.rb +84 -0
  48. data/test/rails_root/app/helpers/application_helper.rb +3 -0
  49. data/test/rails_root/app/helpers/posts_helper.rb +2 -0
  50. data/test/rails_root/app/helpers/users_helper.rb +2 -0
  51. data/test/rails_root/app/models/address.rb +7 -0
  52. data/test/rails_root/app/models/dog.rb +5 -0
  53. data/test/rails_root/app/models/flea.rb +3 -0
  54. data/test/rails_root/app/models/friendship.rb +4 -0
  55. data/test/rails_root/app/models/post.rb +12 -0
  56. data/test/rails_root/app/models/product.rb +12 -0
  57. data/test/rails_root/app/models/tag.rb +8 -0
  58. data/test/rails_root/app/models/tagging.rb +4 -0
  59. data/test/rails_root/app/models/user.rb +28 -0
  60. data/test/rails_root/app/views/layouts/posts.rhtml +17 -0
  61. data/test/rails_root/app/views/layouts/users.rhtml +17 -0
  62. data/test/rails_root/app/views/layouts/wide.html.erb +1 -0
  63. data/test/rails_root/app/views/posts/edit.rhtml +27 -0
  64. data/test/rails_root/app/views/posts/index.rhtml +25 -0
  65. data/test/rails_root/app/views/posts/new.rhtml +26 -0
  66. data/test/rails_root/app/views/posts/show.rhtml +18 -0
  67. data/test/rails_root/app/views/users/edit.rhtml +22 -0
  68. data/test/rails_root/app/views/users/index.rhtml +22 -0
  69. data/test/rails_root/app/views/users/new.rhtml +21 -0
  70. data/test/rails_root/app/views/users/show.rhtml +13 -0
  71. data/test/rails_root/config/boot.rb +109 -0
  72. data/test/rails_root/config/database.yml +4 -0
  73. data/test/rails_root/config/environment.rb +14 -0
  74. data/test/rails_root/config/environments/sqlite3.rb +0 -0
  75. data/test/rails_root/config/initializers/new_rails_defaults.rb +15 -0
  76. data/test/rails_root/config/initializers/shoulda.rb +8 -0
  77. data/test/rails_root/config/routes.rb +6 -0
  78. data/test/rails_root/db/migrate/001_create_users.rb +18 -0
  79. data/test/rails_root/db/migrate/002_create_posts.rb +13 -0
  80. data/test/rails_root/db/migrate/003_create_taggings.rb +12 -0
  81. data/test/rails_root/db/migrate/004_create_tags.rb +11 -0
  82. data/test/rails_root/db/migrate/005_create_dogs.rb +12 -0
  83. data/test/rails_root/db/migrate/006_create_addresses.rb +14 -0
  84. data/test/rails_root/db/migrate/007_create_fleas.rb +11 -0
  85. data/test/rails_root/db/migrate/008_create_dogs_fleas.rb +12 -0
  86. data/test/rails_root/db/migrate/009_create_products.rb +17 -0
  87. data/test/rails_root/db/migrate/010_create_friendships.rb +14 -0
  88. data/test/rails_root/db/schema.rb +0 -0
  89. data/test/rails_root/public/404.html +30 -0
  90. data/test/rails_root/public/422.html +30 -0
  91. data/test/rails_root/public/500.html +30 -0
  92. data/test/rails_root/script/console +3 -0
  93. data/test/rails_root/script/generate +3 -0
  94. data/test/test_helper.rb +33 -0
  95. data/test/unit/address_test.rb +32 -0
  96. data/test/unit/dog_test.rb +7 -0
  97. data/test/unit/flea_test.rb +6 -0
  98. data/test/unit/friendship_test.rb +6 -0
  99. data/test/unit/post_test.rb +15 -0
  100. data/test/unit/product_test.rb +27 -0
  101. data/test/unit/tag_test.rb +15 -0
  102. data/test/unit/tagging_test.rb +6 -0
  103. data/test/unit/user_test.rb +56 -0
  104. metadata +197 -0
@@ -0,0 +1,170 @@
1
+ module ThoughtBot # :nodoc:
2
+ module Shoulda # :nodoc:
3
+ module Controller # :nodoc:
4
+ module XML
5
+ def self.included(other) #:nodoc:
6
+ other.class_eval do
7
+ extend ThoughtBot::Shoulda::Controller::XML::ClassMethods
8
+ end
9
+ end
10
+
11
+ module ClassMethods
12
+ # Macro that creates a test asserting that the controller responded with an XML content-type
13
+ # and that the XML contains +<name/>+ as the root element.
14
+ def should_respond_with_xml_for(name = nil)
15
+ should "have ContentType set to 'application/xml'" do
16
+ assert_xml_response
17
+ end
18
+
19
+ if name
20
+ should "return <#{name}/> as the root element" do
21
+ body = @response.body.first(100).map {|l| " #{l}"}
22
+ assert_select name.to_s.dasherize, 1, "Body:\n#{body}...\nDoes not have <#{name}/> as the root element."
23
+ end
24
+ end
25
+ end
26
+ alias should_respond_with_xml should_respond_with_xml_for
27
+
28
+ protected
29
+
30
+ def make_show_xml_tests(res) # :nodoc:
31
+ context "on GET to #{controller_name_from_class}#show as xml" do
32
+ setup do
33
+ request_xml
34
+ record = get_existing_record(res)
35
+ parent_params = make_parent_params(res, record)
36
+ get :show, parent_params.merge({ res.identifier => record.to_param })
37
+ end
38
+
39
+ if res.denied.actions.include?(:show)
40
+ should_not_assign_to res.object
41
+ should_respond_with 401
42
+ else
43
+ should_assign_to res.object
44
+ should_respond_with :success
45
+ should_respond_with_xml_for res.object
46
+ end
47
+ end
48
+ end
49
+
50
+ def make_edit_xml_tests(res) # :nodoc:
51
+ # XML doesn't need an :edit action
52
+ end
53
+
54
+ def make_new_xml_tests(res) # :nodoc:
55
+ # XML doesn't need a :new action
56
+ end
57
+
58
+ def make_index_xml_tests(res) # :nodoc:
59
+ context "on GET to #{controller_name_from_class}#index as xml" do
60
+ setup do
61
+ request_xml
62
+ parent_params = make_parent_params(res)
63
+ get(:index, parent_params)
64
+ end
65
+
66
+ if res.denied.actions.include?(:index)
67
+ should_not_assign_to res.object.to_s.pluralize
68
+ should_respond_with 401
69
+ else
70
+ should_respond_with :success
71
+ should_respond_with_xml_for res.object.to_s.pluralize
72
+ should_assign_to res.object.to_s.pluralize
73
+ end
74
+ end
75
+ end
76
+
77
+ def make_destroy_xml_tests(res) # :nodoc:
78
+ context "on DELETE to #{controller_name_from_class}#destroy as xml" do
79
+ setup do
80
+ request_xml
81
+ @record = get_existing_record(res)
82
+ parent_params = make_parent_params(res, @record)
83
+ delete :destroy, parent_params.merge({ res.identifier => @record.to_param })
84
+ end
85
+
86
+ if res.denied.actions.include?(:destroy)
87
+ should_respond_with 401
88
+
89
+ should "not destroy record" do
90
+ assert @record.reload
91
+ end
92
+ else
93
+ should "destroy record" do
94
+ assert_raises(::ActiveRecord::RecordNotFound, "@#{res.object} was not destroyed.") do
95
+ @record.reload
96
+ end
97
+ end
98
+ end
99
+ end
100
+ end
101
+
102
+ def make_create_xml_tests(res) # :nodoc:
103
+ context "on POST to #{controller_name_from_class}#create as xml" do
104
+ setup do
105
+ request_xml
106
+ parent_params = make_parent_params(res)
107
+ @count = res.klass.count
108
+ post :create, parent_params.merge(res.object => res.create.params)
109
+ end
110
+
111
+ if res.denied.actions.include?(:create)
112
+ should_respond_with 401
113
+ should_not_assign_to res.object
114
+
115
+ should "not create new record" do
116
+ assert_equal @count, res.klass.count
117
+ end
118
+ else
119
+ should_assign_to res.object
120
+
121
+ should "not have errors on @#{res.object}" do
122
+ assert_equal [], pretty_error_messages(assigns(res.object)), "@#{res.object} has errors:"
123
+ end
124
+ end
125
+ end
126
+ end
127
+
128
+ def make_update_xml_tests(res) # :nodoc:
129
+ context "on PUT to #{controller_name_from_class}#update as xml" do
130
+ setup do
131
+ request_xml
132
+ @record = get_existing_record(res)
133
+ parent_params = make_parent_params(res, @record)
134
+ put :update, parent_params.merge(res.identifier => @record.to_param, res.object => res.update.params)
135
+ end
136
+
137
+ if res.denied.actions.include?(:update)
138
+ should_not_assign_to res.object
139
+ should_respond_with 401
140
+ else
141
+ should_assign_to res.object
142
+
143
+ should "not have errors on @#{res.object}" do
144
+ assert_equal [], assigns(res.object).errors.full_messages, "@#{res.object} has errors:"
145
+ end
146
+ end
147
+ end
148
+ end
149
+ end
150
+
151
+ # Sets the next request's format to 'application/xml'
152
+ def request_xml
153
+ @request.accept = "application/xml"
154
+ end
155
+
156
+ # Asserts that the controller's response was 'application/xml'
157
+ def assert_xml_response
158
+ content_type = (@response.headers["Content-Type"] || @response.headers["type"]).to_s
159
+ regex = %r{\bapplication/xml\b}
160
+
161
+ msg = "Content Type '#{content_type.inspect}' doesn't match '#{regex.inspect}'\n"
162
+ msg += "Body: #{@response.body.first(100).chomp} ..."
163
+
164
+ assert_match regex, content_type, msg
165
+ end
166
+
167
+ end
168
+ end
169
+ end
170
+ end
@@ -0,0 +1,64 @@
1
+ module ThoughtBot # :nodoc:
2
+ module Shoulda # :nodoc:
3
+ module Controller # :nodoc:
4
+ module Helpers # :nodoc:
5
+ private # :enddoc:
6
+
7
+ SPECIAL_INSTANCE_VARIABLES = %w{
8
+ _cookies
9
+ _flash
10
+ _headers
11
+ _params
12
+ _request
13
+ _response
14
+ _session
15
+ action_name
16
+ before_filter_chain_aborted
17
+ cookies
18
+ flash
19
+ headers
20
+ ignore_missing_templates
21
+ logger
22
+ params
23
+ request
24
+ request_origin
25
+ response
26
+ session
27
+ template
28
+ template_class
29
+ template_root
30
+ url
31
+ variables_added
32
+ }.map(&:to_s)
33
+
34
+ def instantiate_variables_from_assigns(*names, &blk)
35
+ old = {}
36
+ names = (@response.template.assigns.keys - SPECIAL_INSTANCE_VARIABLES) if names.empty?
37
+ names.each do |name|
38
+ old[name] = instance_variable_get("@#{name}")
39
+ instance_variable_set("@#{name}", assigns(name.to_sym))
40
+ end
41
+ blk.call
42
+ names.each do |name|
43
+ instance_variable_set("@#{name}", old[name])
44
+ end
45
+ end
46
+
47
+ def get_existing_record(res) # :nodoc:
48
+ returning(instance_variable_get("@#{res.object}")) do |record|
49
+ assert(record, "This test requires you to set @#{res.object} in your setup block")
50
+ end
51
+ end
52
+
53
+ def make_parent_params(resource, record = nil, parent_names = nil) # :nodoc:
54
+ parent_names ||= resource.parents.reverse
55
+ return {} if parent_names == [] # Base case
56
+ parent_name = parent_names.shift
57
+ parent = record ? record.send(parent_name) : parent_name.to_s.classify.constantize.find(:first)
58
+
59
+ { :"#{parent_name}_id" => parent.to_param }.merge(make_parent_params(resource, parent, parent_names))
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,316 @@
1
+ module ThoughtBot # :nodoc:
2
+ module Shoulda # :nodoc:
3
+ module Controller # :nodoc:
4
+ # = Macro test helpers for your controllers
5
+ #
6
+ # By using the macro helpers you can quickly and easily create concise and easy to read test suites.
7
+ #
8
+ # This code segment:
9
+ # context "on GET to :show for first record" do
10
+ # setup do
11
+ # get :show, :id => 1
12
+ # end
13
+ #
14
+ # should_assign_to :user
15
+ # should_respond_with :success
16
+ # should_render_template :show
17
+ # should_not_set_the_flash
18
+ #
19
+ # should "do something else really cool" do
20
+ # assert_equal 1, assigns(:user).id
21
+ # end
22
+ # end
23
+ #
24
+ # Would produce 5 tests for the +show+ action
25
+ #
26
+ # Furthermore, the should_be_restful helper will create an entire set of tests which will verify that your
27
+ # controller responds restfully to a variety of requested formats.
28
+ module Macros
29
+ # <b>DEPRECATED:</b> Please see
30
+ # http://thoughtbot.lighthouseapp.com/projects/5807/tickets/78 for more
31
+ # information.
32
+ #
33
+ # Generates a full suite of tests for a restful controller.
34
+ #
35
+ # The following definition will generate tests for the +index+, +show+, +new+,
36
+ # +edit+, +create+, +update+ and +destroy+ actions, in both +html+ and +xml+ formats:
37
+ #
38
+ # should_be_restful do |resource|
39
+ # resource.parent = :user
40
+ #
41
+ # resource.create.params = { :title => "first post", :body => 'blah blah blah'}
42
+ # resource.update.params = { :title => "changed" }
43
+ # end
44
+ #
45
+ # This generates about 40 tests, all of the format:
46
+ # "on GET to :show should assign @user."
47
+ # "on GET to :show should not set the flash."
48
+ # "on GET to :show should render 'show' template."
49
+ # "on GET to :show should respond with success."
50
+ # "on GET to :show as xml should assign @user."
51
+ # "on GET to :show as xml should have ContentType set to 'application/xml'."
52
+ # "on GET to :show as xml should respond with success."
53
+ # "on GET to :show as xml should return <user/> as the root element."
54
+ # The +resource+ parameter passed into the block is a ResourceOptions object, and
55
+ # is used to configure the tests for the details of your resources.
56
+ #
57
+ def should_be_restful(&blk) # :yields: resource
58
+ warn "[DEPRECATION] should_be_restful is deprecated. Please see http://thoughtbot.lighthouseapp.com/projects/5807/tickets/78 for more information."
59
+
60
+ resource = ResourceOptions.new
61
+ blk.call(resource)
62
+ resource.normalize!(self)
63
+
64
+ resource.formats.each do |format|
65
+ resource.actions.each do |action|
66
+ if self.respond_to? :"make_#{action}_#{format}_tests"
67
+ self.send(:"make_#{action}_#{format}_tests", resource)
68
+ else
69
+ should "test #{action} #{format}" do
70
+ flunk "Test for #{action} as #{format} not implemented"
71
+ end
72
+ end
73
+ end
74
+ end
75
+ end
76
+
77
+ # :section: Test macros
78
+ # Macro that creates a test asserting that the flash contains the given value.
79
+ # val can be a String, a Regex, or nil (indicating that the flash should not be set)
80
+ #
81
+ # Example:
82
+ #
83
+ # should_set_the_flash_to "Thank you for placing this order."
84
+ # should_set_the_flash_to /created/i
85
+ # should_set_the_flash_to nil
86
+ def should_set_the_flash_to(val)
87
+ if val
88
+ should "have #{val.inspect} in the flash" do
89
+ assert_contains flash.values, val, ", Flash: #{flash.inspect}"
90
+ end
91
+ else
92
+ should "not set the flash" do
93
+ assert_equal({}, flash, "Flash was set to:\n#{flash.inspect}")
94
+ end
95
+ end
96
+ end
97
+
98
+ # Macro that creates a test asserting that the flash is empty. Same as
99
+ # @should_set_the_flash_to nil@
100
+ def should_not_set_the_flash
101
+ should_set_the_flash_to nil
102
+ end
103
+
104
+ # Macro that creates a test asserting that filter_parameter_logging
105
+ # is set for the specified keys
106
+ #
107
+ # Example:
108
+ #
109
+ # should_filter_params :password, :ssn
110
+ def should_filter_params(*keys)
111
+ keys.each do |key|
112
+ should "filter #{key}" do
113
+ assert @controller.respond_to?(:filter_parameters),
114
+ "The key #{key} is not filtered"
115
+ filtered = @controller.send(:filter_parameters, {key.to_s => key.to_s})
116
+ assert_equal '[FILTERED]', filtered[key.to_s],
117
+ "The key #{key} is not filtered"
118
+ end
119
+ end
120
+ end
121
+
122
+ # Macro that creates a test asserting that the controller assigned to
123
+ # each of the named instance variable(s).
124
+ #
125
+ # Options:
126
+ # * <tt>:class</tt> - The expected class of the instance variable being checked.
127
+ # * <tt>:equals</tt> - A string which is evaluated and compared for equality with
128
+ # the instance variable being checked.
129
+ #
130
+ # Example:
131
+ #
132
+ # should_assign_to :user, :posts
133
+ # should_assign_to :user, :class => User
134
+ # should_assign_to :user, :equals => '@user'
135
+ def should_assign_to(*names)
136
+ opts = names.extract_options!
137
+ names.each do |name|
138
+ test_name = "assign @#{name}"
139
+ test_name << " as class #{opts[:class]}" if opts[:class]
140
+ test_name << " which is equal to #{opts[:equals]}" if opts[:equals]
141
+ should test_name do
142
+ assigned_value = assigns(name.to_sym)
143
+ assert assigned_value, "The action isn't assigning to @#{name}"
144
+ assert_kind_of opts[:class], assigned_value if opts[:class]
145
+ if opts[:equals]
146
+ instantiate_variables_from_assigns do
147
+ expected_value = eval(opts[:equals], self.send(:binding), __FILE__, __LINE__)
148
+ assert_equal expected_value, assigned_value,
149
+ "Instance variable @#{name} expected to be #{expected_value}" +
150
+ " but was #{assigned_value}"
151
+ end
152
+ end
153
+ end
154
+ end
155
+ end
156
+
157
+ # Macro that creates a test asserting that the controller did not assign to
158
+ # any of the named instance variable(s).
159
+ #
160
+ # Example:
161
+ #
162
+ # should_not_assign_to :user, :posts
163
+ def should_not_assign_to(*names)
164
+ names.each do |name|
165
+ should "not assign to @#{name}" do
166
+ assert !assigns(name.to_sym), "@#{name} was visible"
167
+ end
168
+ end
169
+ end
170
+
171
+ # Macro that creates a test asserting that the controller responded with a 'response' status code.
172
+ # Example:
173
+ #
174
+ # should_respond_with :success
175
+ def should_respond_with(response)
176
+ should "respond with #{response}" do
177
+ assert_response response
178
+ end
179
+ end
180
+
181
+ # Macro that creates a test asserting that the response content type was 'content_type'.
182
+ # Example:
183
+ #
184
+ # should_respond_with_content_type 'application/rss+xml'
185
+ # should_respond_with_content_type :rss
186
+ # should_respond_with_content_type /rss/
187
+ def should_respond_with_content_type(content_type)
188
+ should "respond with content type of #{content_type}" do
189
+ content_type = Mime::EXTENSION_LOOKUP[content_type.to_s].to_s if content_type.is_a? Symbol
190
+ if content_type.is_a? Regexp
191
+ assert_match content_type, @response.content_type, "Expected to match #{content_type} but was actually #{@response.content_type}"
192
+ else
193
+ assert_equal content_type, @response.content_type, "Expected #{content_type} but was actually #{@response.content_type}"
194
+ end
195
+ end
196
+ end
197
+
198
+ # Macro that creates a test asserting that a value returned from the session is correct.
199
+ # The given string is evaled to produce the resulting redirect path. All of the instance variables
200
+ # set by the controller are available to the evaled string.
201
+ # Example:
202
+ #
203
+ # should_return_from_session :user_id, '@user.id'
204
+ # should_return_from_session :message, '"Free stuff"'
205
+ def should_return_from_session(key, expected)
206
+ should "return the correct value from the session for key #{key}" do
207
+ instantiate_variables_from_assigns do
208
+ expected_value = eval(expected, self.send(:binding), __FILE__, __LINE__)
209
+ assert_equal expected_value, session[key], "Expected #{expected_value.inspect} but was #{session[key]}"
210
+ end
211
+ end
212
+ end
213
+
214
+ # Macro that creates a test asserting that the controller rendered the given template.
215
+ # Example:
216
+ #
217
+ # should_render_template :new
218
+ def should_render_template(template)
219
+ should "render template #{template.inspect}" do
220
+ assert_template template.to_s
221
+ end
222
+ end
223
+
224
+ # Macro that creates a test asserting that the controller rendered with the given layout.
225
+ # Example:
226
+ #
227
+ # should_render_with_layout 'special'
228
+ def should_render_with_layout(expected_layout = 'application')
229
+ if expected_layout
230
+ should "render with #{expected_layout.inspect} layout" do
231
+ response_layout = @response.layout.blank? ? "" : @response.layout.split('/').last
232
+ assert_equal expected_layout.to_s,
233
+ response_layout,
234
+ "Expected to render with layout #{expected_layout} but was rendered with #{response_layout}"
235
+ end
236
+ else
237
+ should "render without layout" do
238
+ assert_nil @response.layout,
239
+ "Expected no layout, but was rendered using #{@response.layout}"
240
+ end
241
+ end
242
+ end
243
+
244
+ # Macro that creates a test asserting that the controller rendered without a layout.
245
+ # Same as @should_render_with_layout false@
246
+ def should_render_without_layout
247
+ should_render_with_layout nil
248
+ end
249
+
250
+ # Macro that creates a test asserting that the controller returned a redirect to the given path.
251
+ # The given string is evaled to produce the resulting redirect path. All of the instance variables
252
+ # set by the controller are available to the evaled string.
253
+ # Example:
254
+ #
255
+ # should_redirect_to '"/"'
256
+ # should_redirect_to "user_url(@user)"
257
+ # should_redirect_to "users_url"
258
+ def should_redirect_to(url)
259
+ should "redirect to #{url.inspect}" do
260
+ instantiate_variables_from_assigns do
261
+ assert_redirected_to eval(url, self.send(:binding), __FILE__, __LINE__)
262
+ end
263
+ end
264
+ end
265
+
266
+ # Macro that creates a test asserting that the rendered view contains a <form> element.
267
+ def should_render_a_form
268
+ should "display a form" do
269
+ assert_select "form", true, "The template doesn't contain a <form> element"
270
+ end
271
+ end
272
+
273
+ # Macro that creates a routing test. It tries to use the given HTTP
274
+ # +method+ on the given +path+, and asserts that it routes to the
275
+ # given +options+.
276
+ #
277
+ # If you don't specify a :controller, it will try to guess the controller
278
+ # based on the current test.
279
+ #
280
+ # +to_param+ is called on the +options+ given.
281
+ #
282
+ # Examples:
283
+ #
284
+ # should_route :get, "/posts", :controller => :posts, :action => :index
285
+ # should_route :get, "/posts/new", :action => :new
286
+ # should_route :post, "/posts", :action => :create
287
+ # should_route :get, "/posts/1", :action => :show, :id => 1
288
+ # should_route :edit, "/posts/1", :action => :show, :id => 1
289
+ # should_route :put, "/posts/1", :action => :update, :id => 1
290
+ # should_route :delete, "/posts/1", :action => :destroy, :id => 1
291
+ # should_route :get, "/users/1/posts/1",
292
+ # :action => :show, :id => 1, :user_id => 1
293
+ #
294
+ def should_route(method, path, options)
295
+ unless options[:controller]
296
+ options[:controller] = self.name.gsub(/ControllerTest$/, '').tableize
297
+ end
298
+ options[:controller] = options[:controller].to_s
299
+ options[:action] = options[:action].to_s
300
+
301
+ populated_path = path.dup
302
+ options.each do |key, value|
303
+ options[key] = value.to_param if value.respond_to? :to_param
304
+ populated_path.gsub!(key.inspect, value.to_s)
305
+ end
306
+
307
+ should_name = "route #{method.to_s.upcase} #{populated_path} to/from #{options.inspect}"
308
+
309
+ should should_name do
310
+ assert_routing({:method => method, :path => populated_path}, options)
311
+ end
312
+ end
313
+ end
314
+ end
315
+ end
316
+ end