makandra_resource_controller 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (251) hide show
  1. data/LICENSE +22 -0
  2. data/README.rdoc +343 -0
  3. data/TODO +0 -0
  4. data/VERSION.yml +5 -0
  5. data/generators/scaffold_resource/USAGE +29 -0
  6. data/generators/scaffold_resource/scaffold_resource_generator.rb +179 -0
  7. data/generators/scaffold_resource/templates/controller.rb +2 -0
  8. data/generators/scaffold_resource/templates/fixtures.yml +10 -0
  9. data/generators/scaffold_resource/templates/functional_test.rb +57 -0
  10. data/generators/scaffold_resource/templates/helper.rb +2 -0
  11. data/generators/scaffold_resource/templates/migration.rb +15 -0
  12. data/generators/scaffold_resource/templates/model.rb +2 -0
  13. data/generators/scaffold_resource/templates/old_migration.rb +13 -0
  14. data/generators/scaffold_resource/templates/rspec/functional_spec.rb +255 -0
  15. data/generators/scaffold_resource/templates/rspec/helper_spec.rb +11 -0
  16. data/generators/scaffold_resource/templates/rspec/routing_spec.rb +61 -0
  17. data/generators/scaffold_resource/templates/rspec/unit_spec.rb +11 -0
  18. data/generators/scaffold_resource/templates/rspec/views/edit_spec.rb +28 -0
  19. data/generators/scaffold_resource/templates/rspec/views/index_spec.rb +26 -0
  20. data/generators/scaffold_resource/templates/rspec/views/new_spec.rb +30 -0
  21. data/generators/scaffold_resource/templates/rspec/views/show_spec.rb +25 -0
  22. data/generators/scaffold_resource/templates/shoulda_functional_test.rb +19 -0
  23. data/generators/scaffold_resource/templates/unit_test.rb +7 -0
  24. data/generators/scaffold_resource/templates/view__form.erb +6 -0
  25. data/generators/scaffold_resource/templates/view__form.haml +5 -0
  26. data/generators/scaffold_resource/templates/view_edit.erb +16 -0
  27. data/generators/scaffold_resource/templates/view_edit.haml +11 -0
  28. data/generators/scaffold_resource/templates/view_index.erb +22 -0
  29. data/generators/scaffold_resource/templates/view_index.haml +19 -0
  30. data/generators/scaffold_resource/templates/view_new.erb +12 -0
  31. data/generators/scaffold_resource/templates/view_new.haml +9 -0
  32. data/generators/scaffold_resource/templates/view_show.erb +9 -0
  33. data/generators/scaffold_resource/templates/view_show.haml +9 -0
  34. data/lib/resource_controller.rb +37 -0
  35. data/lib/resource_controller/accessors.rb +77 -0
  36. data/lib/resource_controller/action_options.rb +40 -0
  37. data/lib/resource_controller/actions.rb +75 -0
  38. data/lib/resource_controller/base.rb +15 -0
  39. data/lib/resource_controller/class_methods.rb +25 -0
  40. data/lib/resource_controller/controller.rb +69 -0
  41. data/lib/resource_controller/failable_action_options.rb +25 -0
  42. data/lib/resource_controller/helpers.rb +34 -0
  43. data/lib/resource_controller/helpers/current_objects.rb +73 -0
  44. data/lib/resource_controller/helpers/internal.rb +80 -0
  45. data/lib/resource_controller/helpers/nested.rb +67 -0
  46. data/lib/resource_controller/helpers/singleton_customizations.rb +64 -0
  47. data/lib/resource_controller/helpers/urls.rb +132 -0
  48. data/lib/resource_controller/response_collector.rb +27 -0
  49. data/lib/resource_controller/singleton.rb +15 -0
  50. data/lib/urligence.rb +52 -0
  51. data/rails/init.rb +6 -0
  52. data/test/Gemfile +13 -0
  53. data/test/Gemfile.lock +95 -0
  54. data/test/Rakefile +10 -0
  55. data/test/app/controllers/accounts_controller.rb +6 -0
  56. data/test/app/controllers/application_controller.rb +5 -0
  57. data/test/app/controllers/cms/options_controller.rb +3 -0
  58. data/test/app/controllers/cms/personnel_controller.rb +2 -0
  59. data/test/app/controllers/cms/photos_controller.rb +6 -0
  60. data/test/app/controllers/cms/products_controller.rb +3 -0
  61. data/test/app/controllers/comments_controller.rb +3 -0
  62. data/test/app/controllers/images_controller.rb +4 -0
  63. data/test/app/controllers/options_controller.rb +8 -0
  64. data/test/app/controllers/people_controller.rb +9 -0
  65. data/test/app/controllers/photos_controller.rb +12 -0
  66. data/test/app/controllers/posts_controller.rb +10 -0
  67. data/test/app/controllers/projects_controller.rb +3 -0
  68. data/test/app/controllers/somethings_controller.rb +3 -0
  69. data/test/app/controllers/tags_controller.rb +13 -0
  70. data/test/app/controllers/users_controller.rb +12 -0
  71. data/test/app/helpers/accounts_helper.rb +2 -0
  72. data/test/app/helpers/application_helper.rb +3 -0
  73. data/test/app/helpers/cms/products_helper.rb +2 -0
  74. data/test/app/helpers/comments_helper.rb +2 -0
  75. data/test/app/helpers/images_helper.rb +2 -0
  76. data/test/app/helpers/options_helper.rb +2 -0
  77. data/test/app/helpers/people_helper.rb +2 -0
  78. data/test/app/helpers/photos_helper.rb +2 -0
  79. data/test/app/helpers/posts_helper.rb +2 -0
  80. data/test/app/helpers/projects_helper.rb +2 -0
  81. data/test/app/helpers/somethings_helper.rb +2 -0
  82. data/test/app/helpers/tags_helper.rb +2 -0
  83. data/test/app/helpers/users_helper.rb +2 -0
  84. data/test/app/models/account.rb +4 -0
  85. data/test/app/models/comment.rb +3 -0
  86. data/test/app/models/image.rb +3 -0
  87. data/test/app/models/option.rb +3 -0
  88. data/test/app/models/personnel.rb +3 -0
  89. data/test/app/models/photo.rb +5 -0
  90. data/test/app/models/post.rb +3 -0
  91. data/test/app/models/product.rb +3 -0
  92. data/test/app/models/project.rb +2 -0
  93. data/test/app/models/something.rb +2 -0
  94. data/test/app/models/tag.rb +3 -0
  95. data/test/app/models/user.rb +3 -0
  96. data/test/app/views/accounts/_form.html.erb +4 -0
  97. data/test/app/views/accounts/edit.html.erb +14 -0
  98. data/test/app/views/accounts/new.html.erb +12 -0
  99. data/test/app/views/accounts/show.html.erb +5 -0
  100. data/test/app/views/cms/options/edit.rhtml +17 -0
  101. data/test/app/views/cms/options/index.rhtml +20 -0
  102. data/test/app/views/cms/options/new.rhtml +16 -0
  103. data/test/app/views/cms/options/show.rhtml +8 -0
  104. data/test/app/views/cms/photos/edit.rhtml +17 -0
  105. data/test/app/views/cms/photos/index.rhtml +20 -0
  106. data/test/app/views/cms/photos/new.rhtml +16 -0
  107. data/test/app/views/cms/photos/show.rhtml +8 -0
  108. data/test/app/views/cms/products/edit.rhtml +17 -0
  109. data/test/app/views/cms/products/index.rhtml +20 -0
  110. data/test/app/views/cms/products/new.rhtml +16 -0
  111. data/test/app/views/cms/products/show.rhtml +8 -0
  112. data/test/app/views/comments/edit.rhtml +27 -0
  113. data/test/app/views/comments/index.rhtml +24 -0
  114. data/test/app/views/comments/new.rhtml +26 -0
  115. data/test/app/views/comments/show.rhtml +18 -0
  116. data/test/app/views/images/_form.html.erb +4 -0
  117. data/test/app/views/images/edit.html.erb +14 -0
  118. data/test/app/views/images/new.html.erb +12 -0
  119. data/test/app/views/layouts/application.rhtml +17 -0
  120. data/test/app/views/layouts/comments.rhtml +17 -0
  121. data/test/app/views/layouts/options.rhtml +17 -0
  122. data/test/app/views/layouts/people.rhtml +17 -0
  123. data/test/app/views/layouts/photos.rhtml +17 -0
  124. data/test/app/views/layouts/projects.rhtml +17 -0
  125. data/test/app/views/layouts/somethings.rhtml +17 -0
  126. data/test/app/views/layouts/tags.rhtml +17 -0
  127. data/test/app/views/options/_form.html.erb +8 -0
  128. data/test/app/views/options/edit.html.erb +16 -0
  129. data/test/app/views/options/index.html.erb +21 -0
  130. data/test/app/views/options/new.html.erb +12 -0
  131. data/test/app/views/options/show.html.erb +10 -0
  132. data/test/app/views/people/edit.rhtml +17 -0
  133. data/test/app/views/people/index.rhtml +20 -0
  134. data/test/app/views/people/new.rhtml +16 -0
  135. data/test/app/views/people/show.rhtml +8 -0
  136. data/test/app/views/photos/edit.rhtml +17 -0
  137. data/test/app/views/photos/index.rhtml +20 -0
  138. data/test/app/views/photos/new.rhtml +16 -0
  139. data/test/app/views/photos/show.rhtml +8 -0
  140. data/test/app/views/posts/edit.rhtml +22 -0
  141. data/test/app/views/posts/index.rhtml +22 -0
  142. data/test/app/views/posts/new.rhtml +21 -0
  143. data/test/app/views/posts/show.rhtml +13 -0
  144. data/test/app/views/projects/edit.rhtml +17 -0
  145. data/test/app/views/projects/index.rhtml +20 -0
  146. data/test/app/views/projects/new.rhtml +16 -0
  147. data/test/app/views/projects/show.rhtml +8 -0
  148. data/test/app/views/somethings/edit.rhtml +17 -0
  149. data/test/app/views/somethings/index.rhtml +20 -0
  150. data/test/app/views/somethings/new.rhtml +16 -0
  151. data/test/app/views/somethings/show.rhtml +8 -0
  152. data/test/app/views/tags/edit.rhtml +17 -0
  153. data/test/app/views/tags/index.rhtml +20 -0
  154. data/test/app/views/tags/index.rjs +0 -0
  155. data/test/app/views/tags/new.rhtml +16 -0
  156. data/test/app/views/tags/show.rhtml +8 -0
  157. data/test/app/views/users/edit.rhtml +17 -0
  158. data/test/app/views/users/index.rhtml +20 -0
  159. data/test/app/views/users/new.rhtml +16 -0
  160. data/test/app/views/users/show.rhtml +8 -0
  161. data/test/config.ru +4 -0
  162. data/test/config/application.rb +41 -0
  163. data/test/config/boot.rb +6 -0
  164. data/test/config/database.yml +9 -0
  165. data/test/config/environment.rb +5 -0
  166. data/test/config/environments/development.rb +19 -0
  167. data/test/config/environments/test.rb +34 -0
  168. data/test/config/initializers/inflections.rb +14 -0
  169. data/test/config/initializers/secret_token.rb +7 -0
  170. data/test/config/initializers/session_store.rb +8 -0
  171. data/test/config/routes.rb +35 -0
  172. data/test/db/migrate/001_create_posts.rb +12 -0
  173. data/test/db/migrate/002_create_products.rb +11 -0
  174. data/test/db/migrate/003_create_comments.rb +13 -0
  175. data/test/db/migrate/004_create_options.rb +13 -0
  176. data/test/db/migrate/005_create_photos.rb +11 -0
  177. data/test/db/migrate/006_create_tags.rb +17 -0
  178. data/test/db/migrate/007_create_somethings.rb +11 -0
  179. data/test/db/migrate/008_create_accounts.rb +11 -0
  180. data/test/db/migrate/009_add_account_id_to_photos.rb +9 -0
  181. data/test/db/migrate/010_create_projects.rb +11 -0
  182. data/test/db/migrate/011_create_images.rb +12 -0
  183. data/test/db/migrate/012_create_users.rb +11 -0
  184. data/test/db/migrate/013_create_personnel.rb +11 -0
  185. data/test/db/migrate/014_add_personnel_id_to_photos.rb +9 -0
  186. data/test/db/schema.rb +79 -0
  187. data/test/script/console +3 -0
  188. data/test/script/destroy +3 -0
  189. data/test/script/generate +3 -0
  190. data/test/script/rails +6 -0
  191. data/test/script/server +3 -0
  192. data/test/test/fixtures/accounts.yml +7 -0
  193. data/test/test/fixtures/comments.yml +11 -0
  194. data/test/test/fixtures/images.yml +6 -0
  195. data/test/test/fixtures/options.yml +9 -0
  196. data/test/test/fixtures/personnel.yml +5 -0
  197. data/test/test/fixtures/photos.yml +9 -0
  198. data/test/test/fixtures/photos_tags.yml +3 -0
  199. data/test/test/fixtures/posts.yml +9 -0
  200. data/test/test/fixtures/products.yml +7 -0
  201. data/test/test/fixtures/projects.yml +7 -0
  202. data/test/test/fixtures/somethings.yml +7 -0
  203. data/test/test/fixtures/tags.yml +7 -0
  204. data/test/test/fixtures/users.yml +5 -0
  205. data/test/test/functional/cms/options_controller_test.rb +140 -0
  206. data/test/test/functional/cms/photos_controller_test.rb +37 -0
  207. data/test/test/functional/cms/products_controller_test.rb +37 -0
  208. data/test/test/functional/comments_controller_test.rb +140 -0
  209. data/test/test/functional/images_controller_test.rb +30 -0
  210. data/test/test/functional/people_controller_test.rb +147 -0
  211. data/test/test/functional/photos_controller_test.rb +199 -0
  212. data/test/test/functional/posts_controller_test.rb +21 -0
  213. data/test/test/functional/projects_controller_test.rb +137 -0
  214. data/test/test/functional/somethings_controller_test.rb +15 -0
  215. data/test/test/functional/tags_controller_test.rb +53 -0
  216. data/test/test/functional/users_controller_test.rb +137 -0
  217. data/test/test/test_helper.rb +14 -0
  218. data/test/test/unit/accessors_test.rb +110 -0
  219. data/test/test/unit/account_test.rb +7 -0
  220. data/test/test/unit/action_options_test.rb +109 -0
  221. data/test/test/unit/base_test.rb +11 -0
  222. data/test/test/unit/comment_test.rb +10 -0
  223. data/test/test/unit/failable_action_options_test.rb +77 -0
  224. data/test/test/unit/helpers/current_objects_test.rb +133 -0
  225. data/test/test/unit/helpers/internal_test.rb +106 -0
  226. data/test/test/unit/helpers/nested_test.rb +86 -0
  227. data/test/test/unit/helpers/singleton_current_objects_test.rb +68 -0
  228. data/test/test/unit/helpers/singleton_nested_test.rb +77 -0
  229. data/test/test/unit/helpers/singleton_urls_test.rb +67 -0
  230. data/test/test/unit/helpers/urls_test.rb +75 -0
  231. data/test/test/unit/helpers_test.rb +25 -0
  232. data/test/test/unit/image_test.rb +7 -0
  233. data/test/test/unit/option_test.rb +10 -0
  234. data/test/test/unit/photo_test.rb +10 -0
  235. data/test/test/unit/post_test.rb +10 -0
  236. data/test/test/unit/project_test.rb +10 -0
  237. data/test/test/unit/response_collector_test.rb +49 -0
  238. data/test/test/unit/something_test.rb +10 -0
  239. data/test/test/unit/tag_test.rb +10 -0
  240. data/test/test/unit/urligence_test.rb +205 -0
  241. data/test/vendor/plugins/d +1 -0
  242. data/test/vendor/plugins/dynamic_form/MIT-LICENSE +20 -0
  243. data/test/vendor/plugins/dynamic_form/README +13 -0
  244. data/test/vendor/plugins/dynamic_form/Rakefile +10 -0
  245. data/test/vendor/plugins/dynamic_form/init.rb +5 -0
  246. data/test/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb +300 -0
  247. data/test/vendor/plugins/dynamic_form/lib/action_view/locale/en.yml +8 -0
  248. data/test/vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb +42 -0
  249. data/test/vendor/plugins/dynamic_form/test/dynamic_form_test.rb +370 -0
  250. data/test/vendor/plugins/dynamic_form/test/test_helper.rb +9 -0
  251. metadata +427 -0
@@ -0,0 +1 @@
1
+ S
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 David Heinemeier Hansson
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,13 @@
1
+ DynamicForm
2
+ ===========
3
+
4
+ DynamicForm holds a few helpers method to help you deal with your models, they are:
5
+
6
+ * input(record, method, options = {})
7
+ * form(record, options = {})
8
+ * error_message_on(object, method, options={})
9
+ * error_messages_for(record, options={})
10
+
11
+ It also adds f.error_messages and f.error_messages_on to your form builders.
12
+
13
+ Copyright (c) 2010 David Heinemeier Hansson, released under the MIT license
@@ -0,0 +1,10 @@
1
+ require 'rake/testtask'
2
+
3
+ desc 'Default: run unit tests.'
4
+ task :default => :test
5
+
6
+ desc 'Test the active_model_helper plugin.'
7
+ Rake::TestTask.new(:test) do |t|
8
+ t.libs << 'test'
9
+ t.pattern = 'test/**/*_test.rb'
10
+ end
@@ -0,0 +1,5 @@
1
+ require 'action_view/helpers/dynamic_form'
2
+
3
+ class ActionView::Base
4
+ include DynamicForm
5
+ end
@@ -0,0 +1,300 @@
1
+ require 'action_view/helpers'
2
+ require 'active_support/i18n'
3
+ require 'active_support/core_ext/enumerable'
4
+ require 'active_support/core_ext/object/blank'
5
+
6
+ module ActionView
7
+ module Helpers
8
+ # The Active Record Helper makes it easier to create forms for records kept in instance variables. The most far-reaching is the +form+
9
+ # method that creates a complete form for all the basic content types of the record (not associations or aggregations, though). This
10
+ # is a great way of making the record quickly available for editing, but likely to prove lackluster for a complicated real-world form.
11
+ # In that case, it's better to use the +input+ method and the specialized +form+ methods in link:classes/ActionView/Helpers/FormHelper.html
12
+ module DynamicForm
13
+ # Returns a default input tag for the type of object returned by the method. For example, if <tt>@post</tt>
14
+ # has an attribute +title+ mapped to a +VARCHAR+ column that holds "Hello World":
15
+ #
16
+ # input("post", "title")
17
+ # # => <input id="post_title" name="post[title]" size="30" type="text" value="Hello World" />
18
+ def input(record_name, method, options = {})
19
+ InstanceTag.new(record_name, method, self).to_tag(options)
20
+ end
21
+
22
+ # Returns an entire form with all needed input tags for a specified Active Record object. For example, if <tt>@post</tt>
23
+ # has attributes named +title+ of type +VARCHAR+ and +body+ of type +TEXT+ then
24
+ #
25
+ # form("post")
26
+ #
27
+ # would yield a form like the following (modulus formatting):
28
+ #
29
+ # <form action='/posts/create' method='post'>
30
+ # <p>
31
+ # <label for="post_title">Title</label><br />
32
+ # <input id="post_title" name="post[title]" size="30" type="text" value="Hello World" />
33
+ # </p>
34
+ # <p>
35
+ # <label for="post_body">Body</label><br />
36
+ # <textarea cols="40" id="post_body" name="post[body]" rows="20"></textarea>
37
+ # </p>
38
+ # <input name="commit" type="submit" value="Create" />
39
+ # </form>
40
+ #
41
+ # It's possible to specialize the form builder by using a different action name and by supplying another
42
+ # block renderer. For example, if <tt>@entry</tt> has an attribute +message+ of type +VARCHAR+ then
43
+ #
44
+ # form("entry",
45
+ # :action => "sign",
46
+ # :input_block => Proc.new { |record, column|
47
+ # "#{column.human_name}: #{input(record, column.name)}<br />"
48
+ # })
49
+ #
50
+ # would yield a form like the following (modulus formatting):
51
+ #
52
+ # <form action="/entries/sign" method="post">
53
+ # Message:
54
+ # <input id="entry_message" name="entry[message]" size="30" type="text" /><br />
55
+ # <input name="commit" type="submit" value="Sign" />
56
+ # </form>
57
+ #
58
+ # It's also possible to add additional content to the form by giving it a block, such as:
59
+ #
60
+ # form("entry", :action => "sign") do |form|
61
+ # form << content_tag("b", "Department")
62
+ # form << collection_select("department", "id", @departments, "id", "name")
63
+ # end
64
+ #
65
+ # The following options are available:
66
+ #
67
+ # * <tt>:action</tt> - The action used when submitting the form (default: +create+ if a new record, otherwise +update+).
68
+ # * <tt>:input_block</tt> - Specialize the output using a different block, see above.
69
+ # * <tt>:method</tt> - The method used when submitting the form (default: +post+).
70
+ # * <tt>:multipart</tt> - Whether to change the enctype of the form to "multipart/form-data", used when uploading a file (default: +false+).
71
+ # * <tt>:submit_value</tt> - The text of the submit button (default: "Create" if a new record, otherwise "Update").
72
+ def form(record_name, options = {})
73
+ record = instance_variable_get("@#{record_name}")
74
+ record = convert_to_model(record)
75
+
76
+ options = options.symbolize_keys
77
+ options[:action] ||= record.persisted? ? "update" : "create"
78
+ action = url_for(:action => options[:action], :id => record)
79
+
80
+ submit_value = options[:submit_value] || options[:action].gsub(/[^\w]/, '').capitalize
81
+
82
+ contents = form_tag({:action => action}, :method =>(options[:method] || 'post'), :enctype => options[:multipart] ? 'multipart/form-data': nil)
83
+ contents.safe_concat hidden_field(record_name, :id) if record.persisted?
84
+ contents.safe_concat all_input_tags(record, record_name, options)
85
+ yield contents if block_given?
86
+ contents.safe_concat submit_tag(submit_value)
87
+ contents.safe_concat('</form>')
88
+ end
89
+
90
+ # Returns a string containing the error message attached to the +method+ on the +object+ if one exists.
91
+ # This error message is wrapped in a <tt>DIV</tt> tag by default or with <tt>:html_tag</tt> if specified,
92
+ # which can be extended to include a <tt>:prepend_text</tt> and/or <tt>:append_text</tt> (to properly explain
93
+ # the error), and a <tt>:css_class</tt> to style it accordingly. +object+ should either be the name of an
94
+ # instance variable or the actual object. The method can be passed in either as a string or a symbol.
95
+ # As an example, let's say you have a model <tt>@post</tt> that has an error message on the +title+ attribute:
96
+ #
97
+ # <%= error_message_on "post", "title" %>
98
+ # # => <div class="formError">can't be empty</div>
99
+ #
100
+ # <%= error_message_on @post, :title %>
101
+ # # => <div class="formError">can't be empty</div>
102
+ #
103
+ # <%= error_message_on "post", "title",
104
+ # :prepend_text => "Title simply ",
105
+ # :append_text => " (or it won't work).",
106
+ # :html_tag => "span",
107
+ # :css_class => "inputError" %>
108
+ # # => <span class="inputError">Title simply can't be empty (or it won't work).</span>
109
+ def error_message_on(object, method, *args)
110
+ options = args.extract_options!
111
+ unless args.empty?
112
+ ActiveSupport::Deprecation.warn('error_message_on takes an option hash instead of separate ' +
113
+ 'prepend_text, append_text, html_tag, and css_class arguments', caller)
114
+
115
+ options[:prepend_text] = args[0] || ''
116
+ options[:append_text] = args[1] || ''
117
+ options[:html_tag] = args[2] || 'div'
118
+ options[:css_class] = args[3] || 'formError'
119
+ end
120
+ options.reverse_merge!(:prepend_text => '', :append_text => '', :html_tag => 'div', :css_class => 'formError')
121
+
122
+ object = convert_to_model(object)
123
+
124
+ if (obj = (object.respond_to?(:errors) ? object : instance_variable_get("@#{object}"))) &&
125
+ (errors = obj.errors[method]).presence
126
+ content_tag(options[:html_tag],
127
+ (options[:prepend_text].html_safe << errors.first).safe_concat(options[:append_text]),
128
+ :class => options[:css_class]
129
+ )
130
+ else
131
+ ''
132
+ end
133
+ end
134
+
135
+ # Returns a string with a <tt>DIV</tt> containing all of the error messages for the objects located as instance variables by the names
136
+ # given. If more than one object is specified, the errors for the objects are displayed in the order that the object names are
137
+ # provided.
138
+ #
139
+ # This <tt>DIV</tt> can be tailored by the following options:
140
+ #
141
+ # * <tt>:header_tag</tt> - Used for the header of the error div (default: "h2").
142
+ # * <tt>:id</tt> - The id of the error div (default: "errorExplanation").
143
+ # * <tt>:class</tt> - The class of the error div (default: "errorExplanation").
144
+ # * <tt>:object</tt> - The object (or array of objects) for which to display errors,
145
+ # if you need to escape the instance variable convention.
146
+ # * <tt>:object_name</tt> - The object name to use in the header, or any text that you prefer.
147
+ # If <tt>:object_name</tt> is not set, the name of the first object will be used.
148
+ # * <tt>:header_message</tt> - The message in the header of the error div. Pass +nil+
149
+ # or an empty string to avoid the header message altogether. (Default: "X errors
150
+ # prohibited this object from being saved").
151
+ # * <tt>:message</tt> - The explanation message after the header message and before
152
+ # the error list. Pass +nil+ or an empty string to avoid the explanation message
153
+ # altogether. (Default: "There were problems with the following fields:").
154
+ #
155
+ # To specify the display for one object, you simply provide its name as a parameter.
156
+ # For example, for the <tt>@user</tt> model:
157
+ #
158
+ # error_messages_for 'user'
159
+ #
160
+ # You can also supply an object:
161
+ #
162
+ # error_messages_for @user
163
+ #
164
+ # This will use the last part of the model name in the presentation. For instance, if
165
+ # this is a MyKlass::User object, this will use "user" as the name in the String. This
166
+ # is taken from MyKlass::User.model_name.human, which can be overridden.
167
+ #
168
+ # To specify more than one object, you simply list them; optionally, you can add an extra <tt>:object_name</tt> parameter, which
169
+ # will be the name used in the header message:
170
+ #
171
+ # error_messages_for 'user_common', 'user', :object_name => 'user'
172
+ #
173
+ # You can also use a number of objects, which will have the same naming semantics
174
+ # as a single object.
175
+ #
176
+ # error_messages_for @user, @post
177
+ #
178
+ # If the objects cannot be located as instance variables, you can add an extra <tt>:object</tt> parameter which gives the actual
179
+ # object (or array of objects to use):
180
+ #
181
+ # error_messages_for 'user', :object => @question.user
182
+ #
183
+ # NOTE: This is a pre-packaged presentation of the errors with embedded strings and a certain HTML structure. If what
184
+ # you need is significantly different from the default presentation, it makes plenty of sense to access the <tt>object.errors</tt>
185
+ # instance yourself and set it up. View the source of this method to see how easy it is.
186
+ def error_messages_for(*params)
187
+ options = params.extract_options!.symbolize_keys
188
+
189
+ objects = Array.wrap(options.delete(:object) || params).map do |object|
190
+ object = instance_variable_get("@#{object}") unless object.respond_to?(:to_model)
191
+ object = convert_to_model(object)
192
+
193
+ if object.class.respond_to?(:model_name)
194
+ options[:object_name] ||= object.class.model_name.human.downcase
195
+ end
196
+
197
+ object
198
+ end
199
+
200
+ objects.compact!
201
+ count = objects.inject(0) {|sum, object| sum + object.errors.count }
202
+
203
+ unless count.zero?
204
+ html = {}
205
+ [:id, :class].each do |key|
206
+ if options.include?(key)
207
+ value = options[key]
208
+ html[key] = value unless value.blank?
209
+ else
210
+ html[key] = 'errorExplanation'
211
+ end
212
+ end
213
+ options[:object_name] ||= params.first
214
+
215
+ I18n.with_options :locale => options[:locale], :scope => [:errors, :template] do |locale|
216
+ header_message = if options.include?(:header_message)
217
+ options[:header_message]
218
+ else
219
+ locale.t :header, :count => count, :model => options[:object_name].to_s.gsub('_', ' ')
220
+ end
221
+
222
+ message = options.include?(:message) ? options[:message] : locale.t(:body)
223
+
224
+ error_messages = objects.sum do |object|
225
+ object.errors.full_messages.map do |msg|
226
+ content_tag(:li, msg)
227
+ end
228
+ end.join.html_safe
229
+
230
+ contents = ''
231
+ contents << content_tag(options[:header_tag] || :h2, header_message) unless header_message.blank?
232
+ contents << content_tag(:p, message) unless message.blank?
233
+ contents << content_tag(:ul, error_messages)
234
+
235
+ content_tag(:div, contents.html_safe, html)
236
+ end
237
+ else
238
+ ''
239
+ end
240
+ end
241
+
242
+ private
243
+
244
+ def all_input_tags(record, record_name, options)
245
+ input_block = options[:input_block] || default_input_block
246
+ record.class.content_columns.collect{ |column| input_block.call(record_name, column) }.join("\n")
247
+ end
248
+
249
+ def default_input_block
250
+ Proc.new { |record, column| %(<p><label for="#{record}_#{column.name}">#{column.human_name}</label><br />#{input(record, column.name)}</p>) }
251
+ end
252
+
253
+ module InstanceTagMethods
254
+ def to_tag(options = {})
255
+ case column_type
256
+ when :string
257
+ field_type = @method_name.include?("password") ? "password" : "text"
258
+ to_input_field_tag(field_type, options)
259
+ when :text
260
+ to_text_area_tag(options)
261
+ when :integer, :float, :decimal
262
+ to_input_field_tag("text", options)
263
+ when :date
264
+ to_date_select_tag(options)
265
+ when :datetime, :timestamp
266
+ to_datetime_select_tag(options)
267
+ when :time
268
+ to_time_select_tag(options)
269
+ when :boolean
270
+ to_boolean_select_tag(options)
271
+ end
272
+ end
273
+
274
+ def column_type
275
+ object.send(:column_for_attribute, @method_name).type
276
+ end
277
+ end
278
+
279
+ module FormBuilderMethods
280
+ def error_message_on(method, *args)
281
+ @template.error_message_on(@object || @object_name, method, *args)
282
+ end
283
+
284
+ def error_messages(options = {})
285
+ @template.error_messages_for(@object_name, objectify_options(options))
286
+ end
287
+ end
288
+ end
289
+
290
+ class InstanceTag
291
+ include DynamicForm::InstanceTagMethods
292
+ end
293
+
294
+ class FormBuilder
295
+ include DynamicForm::FormBuilderMethods
296
+ end
297
+ end
298
+ end
299
+
300
+ I18n.load_path << File.expand_path("../../locale/en.yml", __FILE__)
@@ -0,0 +1,8 @@
1
+ en:
2
+ errors:
3
+ template:
4
+ header:
5
+ one: "1 error prohibited this %{model} from being saved"
6
+ other: "%{count} errors prohibited this %{model} from being saved"
7
+ # The variable :count is also available
8
+ body: "There were problems with the following fields:"
@@ -0,0 +1,42 @@
1
+ require 'test_helper'
2
+
3
+ class DynamicFormI18nTest < Test::Unit::TestCase
4
+ include ActionView::Context
5
+ include ActionView::Helpers::DynamicForm
6
+
7
+ attr_reader :request
8
+
9
+ def setup
10
+ @object = stub :errors => stub(:count => 1, :full_messages => ['full_messages'])
11
+ @object.stubs :to_model => @object
12
+ @object.stubs :class => stub(:model_name => stub(:human => ""))
13
+
14
+ @object_name = 'book_seller'
15
+ @object_name_without_underscore = 'book seller'
16
+
17
+ stubs(:content_tag).returns 'content_tag'
18
+
19
+ I18n.stubs(:t).with(:'header', :locale => 'en', :scope => [:errors, :template], :count => 1, :model => '').returns "1 error prohibited this from being saved"
20
+ I18n.stubs(:t).with(:'body', :locale => 'en', :scope => [:errors, :template]).returns 'There were problems with the following fields:'
21
+ end
22
+
23
+ def test_error_messages_for_given_a_header_option_it_does_not_translate_header_message
24
+ I18n.expects(:t).with(:'header', :locale => 'en', :scope => [:errors, :template], :count => 1, :model => '').never
25
+ error_messages_for(:object => @object, :header_message => 'header message', :locale => 'en')
26
+ end
27
+
28
+ def test_error_messages_for_given_no_header_option_it_translates_header_message
29
+ I18n.expects(:t).with(:'header', :locale => 'en', :scope => [:errors, :template], :count => 1, :model => '').returns 'header message'
30
+ error_messages_for(:object => @object, :locale => 'en')
31
+ end
32
+
33
+ def test_error_messages_for_given_a_message_option_it_does_not_translate_message
34
+ I18n.expects(:t).with(:'body', :locale => 'en', :scope => [:errors, :template]).never
35
+ error_messages_for(:object => @object, :message => 'message', :locale => 'en')
36
+ end
37
+
38
+ def test_error_messages_for_given_no_message_option_it_translates_message
39
+ I18n.expects(:t).with(:'body', :locale => 'en', :scope => [:errors, :template]).returns 'There were problems with the following fields:'
40
+ error_messages_for(:object => @object, :locale => 'en')
41
+ end
42
+ end
@@ -0,0 +1,370 @@
1
+ require 'test_helper'
2
+ require 'action_view/template/handlers/erb'
3
+
4
+ class DynamicFormTest < ActionView::TestCase
5
+ tests ActionView::Helpers::DynamicForm
6
+
7
+ def form_for(*)
8
+ @output_buffer = super
9
+ end
10
+
11
+ silence_warnings do
12
+ class Post < Struct.new(:title, :author_name, :body, :secret, :written_on)
13
+ extend ActiveModel::Naming
14
+ include ActiveModel::Conversion
15
+ end
16
+
17
+ class User < Struct.new(:email)
18
+ extend ActiveModel::Naming
19
+ include ActiveModel::Conversion
20
+ end
21
+
22
+ class Column < Struct.new(:type, :name, :human_name)
23
+ extend ActiveModel::Naming
24
+ include ActiveModel::Conversion
25
+ end
26
+ end
27
+
28
+ class DirtyPost
29
+ class Errors
30
+ def empty?
31
+ false
32
+ end
33
+
34
+ def count
35
+ 1
36
+ end
37
+
38
+ def full_messages
39
+ ["Author name can't be <em>empty</em>"]
40
+ end
41
+
42
+ def [](field)
43
+ ["can't be <em>empty</em>"]
44
+ end
45
+ end
46
+
47
+ def errors
48
+ Errors.new
49
+ end
50
+ end
51
+
52
+ def setup_post
53
+ @post = Post.new
54
+ def @post.errors
55
+ Class.new {
56
+ def [](field)
57
+ case field.to_s
58
+ when "author_name"
59
+ ["can't be empty"]
60
+ when "body"
61
+ ['foo']
62
+ else
63
+ []
64
+ end
65
+ end
66
+ def empty?() false end
67
+ def count() 1 end
68
+ def full_messages() [ "Author name can't be empty" ] end
69
+ }.new
70
+ end
71
+
72
+ def @post.persisted?() false end
73
+ def @post.to_param() nil end
74
+
75
+ def @post.column_for_attribute(attr_name)
76
+ Post.content_columns.select { |column| column.name == attr_name }.first
77
+ end
78
+
79
+ silence_warnings do
80
+ def Post.content_columns() [ Column.new(:string, "title", "Title"), Column.new(:text, "body", "Body") ] end
81
+ end
82
+
83
+ @post.title = "Hello World"
84
+ @post.author_name = ""
85
+ @post.body = "Back to the hill and over it again!"
86
+ @post.secret = 1
87
+ @post.written_on = Date.new(2004, 6, 15)
88
+ end
89
+
90
+ def setup_user
91
+ @user = User.new
92
+ def @user.errors
93
+ Class.new {
94
+ def [](field) field == "email" ? ['nonempty'] : [] end
95
+ def empty?() false end
96
+ def count() 1 end
97
+ def full_messages() [ "User email can't be empty" ] end
98
+ }.new
99
+ end
100
+
101
+ def @user.new_record?() true end
102
+ def @user.to_param() nil end
103
+
104
+ def @user.column_for_attribute(attr_name)
105
+ User.content_columns.select { |column| column.name == attr_name }.first
106
+ end
107
+
108
+ silence_warnings do
109
+ def User.content_columns() [ Column.new(:string, "email", "Email") ] end
110
+ end
111
+
112
+ @user.email = ""
113
+ end
114
+
115
+ def protect_against_forgery?
116
+ @protect_against_forgery ? true : false
117
+ end
118
+ attr_accessor :request_forgery_protection_token, :form_authenticity_token
119
+
120
+ def setup
121
+ super
122
+ setup_post
123
+ setup_user
124
+
125
+ @response = ActionController::TestResponse.new
126
+ end
127
+
128
+ def url_for(options)
129
+ options = options.symbolize_keys
130
+ [options[:action], options[:id].to_param].compact.join('/')
131
+ end
132
+
133
+ def test_generic_input_tag
134
+ assert_dom_equal(
135
+ %(<input id="post_title" name="post[title]" size="30" type="text" value="Hello World" />), input("post", "title")
136
+ )
137
+ end
138
+
139
+ def test_text_area_with_errors
140
+ assert_dom_equal(
141
+ %(<div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea></div>),
142
+ text_area("post", "body")
143
+ )
144
+ end
145
+
146
+ def test_text_field_with_errors
147
+ assert_dom_equal(
148
+ %(<div class="fieldWithErrors"><input id="post_author_name" name="post[author_name]" size="30" type="text" value="" /></div>),
149
+ text_field("post", "author_name")
150
+ )
151
+ end
152
+
153
+ def test_field_error_proc
154
+ old_proc = ActionView::Base.field_error_proc
155
+ ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
156
+ %(<div class=\"fieldWithErrors\">#{html_tag} <span class="error">#{[instance.error_message].join(', ')}</span></div>).html_safe
157
+ end
158
+
159
+ assert_dom_equal(
160
+ %(<div class="fieldWithErrors"><input id="post_author_name" name="post[author_name]" size="30" type="text" value="" /> <span class="error">can't be empty</span></div>),
161
+ text_field("post", "author_name")
162
+ )
163
+ ensure
164
+ ActionView::Base.field_error_proc = old_proc if old_proc
165
+ end
166
+
167
+ def test_form_with_string
168
+ assert_dom_equal(
169
+ %(<form action="create" method="post"><p><label for="post_title">Title</label><br /><input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /></p>\n<p><label for="post_body">Body</label><br /><div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea></div></p><input name="commit" type="submit" value="Create" /></form>),
170
+ form("post")
171
+ )
172
+
173
+ silence_warnings do
174
+ class << @post
175
+ def persisted?() true end
176
+ def to_param() id end
177
+ def id() 1 end
178
+ end
179
+ end
180
+
181
+ assert_dom_equal(
182
+ %(<form action="update/1" method="post"><input id="post_id" name="post[id]" type="hidden" value="1" /><p><label for="post_title">Title</label><br /><input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /></p>\n<p><label for="post_body">Body</label><br /><div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea></div></p><input name="commit" type="submit" value="Update" /></form>),
183
+ form("post")
184
+ )
185
+ end
186
+
187
+ def test_form_with_protect_against_forgery
188
+ @protect_against_forgery = true
189
+ @request_forgery_protection_token = 'authenticity_token'
190
+ @form_authenticity_token = '123'
191
+ assert_dom_equal(
192
+ %(<form action="create" method="post"><div style='margin:0;padding:0;display:inline'><input type='hidden' name='authenticity_token' value='123' /></div><p><label for="post_title">Title</label><br /><input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /></p>\n<p><label for="post_body">Body</label><br /><div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea></div></p><input name="commit" type="submit" value="Create" /></form>),
193
+ form("post")
194
+ )
195
+ end
196
+
197
+ def test_form_with_method_option
198
+ assert_dom_equal(
199
+ %(<form action="create" method="get"><p><label for="post_title">Title</label><br /><input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /></p>\n<p><label for="post_body">Body</label><br /><div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea></div></p><input name="commit" type="submit" value="Create" /></form>),
200
+ form("post", :method=>'get')
201
+ )
202
+ end
203
+
204
+ def test_form_with_action_option
205
+ output_buffer << form("post", :action => "sign")
206
+ assert_select "form[action=sign]" do |form|
207
+ assert_select "input[type=submit][value=Sign]"
208
+ end
209
+ end
210
+
211
+ def test_form_with_date
212
+ silence_warnings do
213
+ def Post.content_columns() [ Column.new(:date, "written_on", "Written on") ] end
214
+ end
215
+
216
+ assert_dom_equal(
217
+ %(<form action="create" method="post"><p><label for="post_written_on">Written on</label><br /><select id="post_written_on_1i" name="post[written_on(1i)]">\n<option value="1999">1999</option>\n<option value="2000">2000</option>\n<option value="2001">2001</option>\n<option value="2002">2002</option>\n<option value="2003">2003</option>\n<option value="2004" selected="selected">2004</option>\n<option value="2005">2005</option>\n<option value="2006">2006</option>\n<option value="2007">2007</option>\n<option value="2008">2008</option>\n<option value="2009">2009</option>\n</select>\n<select id="post_written_on_2i" name="post[written_on(2i)]">\n<option value="1">January</option>\n<option value="2">February</option>\n<option value="3">March</option>\n<option value="4">April</option>\n<option value="5">May</option>\n<option value="6" selected="selected">June</option>\n<option value="7">July</option>\n<option value="8">August</option>\n<option value="9">September</option>\n<option value="10">October</option>\n<option value="11">November</option>\n<option value="12">December</option>\n</select>\n<select id="post_written_on_3i" name="post[written_on(3i)]">\n<option value="1">1</option>\n<option value="2">2</option>\n<option value="3">3</option>\n<option value="4">4</option>\n<option value="5">5</option>\n<option value="6">6</option>\n<option value="7">7</option>\n<option value="8">8</option>\n<option value="9">9</option>\n<option value="10">10</option>\n<option value="11">11</option>\n<option value="12">12</option>\n<option value="13">13</option>\n<option value="14">14</option>\n<option value="15" selected="selected">15</option>\n<option value="16">16</option>\n<option value="17">17</option>\n<option value="18">18</option>\n<option value="19">19</option>\n<option value="20">20</option>\n<option value="21">21</option>\n<option value="22">22</option>\n<option value="23">23</option>\n<option value="24">24</option>\n<option value="25">25</option>\n<option value="26">26</option>\n<option value="27">27</option>\n<option value="28">28</option>\n<option value="29">29</option>\n<option value="30">30</option>\n<option value="31">31</option>\n</select>\n</p><input name="commit" type="submit" value="Create" /></form>),
218
+ form("post")
219
+ )
220
+ end
221
+
222
+ def test_form_with_datetime
223
+ silence_warnings do
224
+ def Post.content_columns() [ Column.new(:datetime, "written_on", "Written on") ] end
225
+ end
226
+ @post.written_on = Time.gm(2004, 6, 15, 16, 30)
227
+
228
+ assert_dom_equal(
229
+ %(<form action="create" method="post"><p><label for="post_written_on">Written on</label><br /><select id="post_written_on_1i" name="post[written_on(1i)]">\n<option value="1999">1999</option>\n<option value="2000">2000</option>\n<option value="2001">2001</option>\n<option value="2002">2002</option>\n<option value="2003">2003</option>\n<option value="2004" selected="selected">2004</option>\n<option value="2005">2005</option>\n<option value="2006">2006</option>\n<option value="2007">2007</option>\n<option value="2008">2008</option>\n<option value="2009">2009</option>\n</select>\n<select id="post_written_on_2i" name="post[written_on(2i)]">\n<option value="1">January</option>\n<option value="2">February</option>\n<option value="3">March</option>\n<option value="4">April</option>\n<option value="5">May</option>\n<option value="6" selected="selected">June</option>\n<option value="7">July</option>\n<option value="8">August</option>\n<option value="9">September</option>\n<option value="10">October</option>\n<option value="11">November</option>\n<option value="12">December</option>\n</select>\n<select id="post_written_on_3i" name="post[written_on(3i)]">\n<option value="1">1</option>\n<option value="2">2</option>\n<option value="3">3</option>\n<option value="4">4</option>\n<option value="5">5</option>\n<option value="6">6</option>\n<option value="7">7</option>\n<option value="8">8</option>\n<option value="9">9</option>\n<option value="10">10</option>\n<option value="11">11</option>\n<option value="12">12</option>\n<option value="13">13</option>\n<option value="14">14</option>\n<option value="15" selected="selected">15</option>\n<option value="16">16</option>\n<option value="17">17</option>\n<option value="18">18</option>\n<option value="19">19</option>\n<option value="20">20</option>\n<option value="21">21</option>\n<option value="22">22</option>\n<option value="23">23</option>\n<option value="24">24</option>\n<option value="25">25</option>\n<option value="26">26</option>\n<option value="27">27</option>\n<option value="28">28</option>\n<option value="29">29</option>\n<option value="30">30</option>\n<option value="31">31</option>\n</select>\n &mdash; <select id="post_written_on_4i" name="post[written_on(4i)]">\n<option value="00">00</option>\n<option value="01">01</option>\n<option value="02">02</option>\n<option value="03">03</option>\n<option value="04">04</option>\n<option value="05">05</option>\n<option value="06">06</option>\n<option value="07">07</option>\n<option value="08">08</option>\n<option value="09">09</option>\n<option value="10">10</option>\n<option value="11">11</option>\n<option value="12">12</option>\n<option value="13">13</option>\n<option value="14">14</option>\n<option value="15">15</option>\n<option value="16" selected="selected">16</option>\n<option value="17">17</option>\n<option value="18">18</option>\n<option value="19">19</option>\n<option value="20">20</option>\n<option value="21">21</option>\n<option value="22">22</option>\n<option value="23">23</option>\n</select>\n : <select id="post_written_on_5i" name="post[written_on(5i)]">\n<option value="00">00</option>\n<option value="01">01</option>\n<option value="02">02</option>\n<option value="03">03</option>\n<option value="04">04</option>\n<option value="05">05</option>\n<option value="06">06</option>\n<option value="07">07</option>\n<option value="08">08</option>\n<option value="09">09</option>\n<option value="10">10</option>\n<option value="11">11</option>\n<option value="12">12</option>\n<option value="13">13</option>\n<option value="14">14</option>\n<option value="15">15</option>\n<option value="16">16</option>\n<option value="17">17</option>\n<option value="18">18</option>\n<option value="19">19</option>\n<option value="20">20</option>\n<option value="21">21</option>\n<option value="22">22</option>\n<option value="23">23</option>\n<option value="24">24</option>\n<option value="25">25</option>\n<option value="26">26</option>\n<option value="27">27</option>\n<option value="28">28</option>\n<option value="29">29</option>\n<option value="30" selected="selected">30</option>\n<option value="31">31</option>\n<option value="32">32</option>\n<option value="33">33</option>\n<option value="34">34</option>\n<option value="35">35</option>\n<option value="36">36</option>\n<option value="37">37</option>\n<option value="38">38</option>\n<option value="39">39</option>\n<option value="40">40</option>\n<option value="41">41</option>\n<option value="42">42</option>\n<option value="43">43</option>\n<option value="44">44</option>\n<option value="45">45</option>\n<option value="46">46</option>\n<option value="47">47</option>\n<option value="48">48</option>\n<option value="49">49</option>\n<option value="50">50</option>\n<option value="51">51</option>\n<option value="52">52</option>\n<option value="53">53</option>\n<option value="54">54</option>\n<option value="55">55</option>\n<option value="56">56</option>\n<option value="57">57</option>\n<option value="58">58</option>\n<option value="59">59</option>\n</select>\n</p><input name="commit" type="submit" value="Create" /></form>),
230
+ form("post")
231
+ )
232
+ end
233
+
234
+ def test_error_for_block
235
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>1 error prohibited this post from being saved</h2><p>There were problems with the following fields:</p><ul><li>Author name can't be empty</li></ul></div>), error_messages_for("post")
236
+ assert_equal %(<div class="errorDeathByClass" id="errorDeathById"><h1>1 error prohibited this post from being saved</h1><p>There were problems with the following fields:</p><ul><li>Author name can't be empty</li></ul></div>), error_messages_for("post", :class => "errorDeathByClass", :id => "errorDeathById", :header_tag => "h1")
237
+ assert_equal %(<div id="errorDeathById"><h1>1 error prohibited this post from being saved</h1><p>There were problems with the following fields:</p><ul><li>Author name can't be empty</li></ul></div>), error_messages_for("post", :class => nil, :id => "errorDeathById", :header_tag => "h1")
238
+ assert_equal %(<div class="errorDeathByClass"><h1>1 error prohibited this post from being saved</h1><p>There were problems with the following fields:</p><ul><li>Author name can't be empty</li></ul></div>), error_messages_for("post", :class => "errorDeathByClass", :id => nil, :header_tag => "h1")
239
+ end
240
+
241
+ def test_error_messages_for_escapes_html
242
+ @dirty_post = DirtyPost.new
243
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>1 error prohibited this dirty post from being saved</h2><p>There were problems with the following fields:</p><ul><li>Author name can't be &lt;em&gt;empty&lt;/em&gt;</li></ul></div>), error_messages_for("dirty_post")
244
+ end
245
+
246
+ def test_error_messages_for_handles_nil
247
+ assert_equal "", error_messages_for("notthere")
248
+ end
249
+
250
+ def test_error_message_on_escapes_html
251
+ @dirty_post = DirtyPost.new
252
+ assert_dom_equal "<div class=\"formError\">can't be &lt;em&gt;empty&lt;/em&gt;</div>", error_message_on(:dirty_post, :author_name)
253
+ end
254
+
255
+ def test_error_message_on_handles_nil
256
+ assert_equal "", error_message_on("notthere", "notthere")
257
+ end
258
+
259
+ def test_error_message_on
260
+ assert_dom_equal "<div class=\"formError\">can't be empty</div>", error_message_on(:post, :author_name)
261
+ end
262
+
263
+ def test_error_message_on_no_instance_variable
264
+ other_post = @post
265
+ assert_dom_equal "<div class=\"formError\">can't be empty</div>", error_message_on(other_post, :author_name)
266
+ end
267
+
268
+ def test_error_message_on_with_options_hash
269
+ assert_dom_equal "<div class=\"differentError\">beforecan't be emptyafter</div>", error_message_on(:post, :author_name, :css_class => 'differentError', :prepend_text => 'before', :append_text => 'after')
270
+ end
271
+
272
+ def test_error_message_on_with_tag_option_in_options_hash
273
+ assert_dom_equal "<span class=\"differentError\">beforecan't be emptyafter</span>", error_message_on(:post, :author_name, :html_tag => "span", :css_class => 'differentError', :prepend_text => 'before', :append_text => 'after')
274
+ end
275
+
276
+ def test_error_message_on_handles_empty_errors
277
+ assert_equal "", error_message_on(@post, :tag)
278
+ end
279
+
280
+ def test_error_messages_for_many_objects
281
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>2 errors prohibited this post from being saved</h2><p>There were problems with the following fields:</p><ul><li>Author name can't be empty</li><li>User email can't be empty</li></ul></div>), error_messages_for("post", "user")
282
+
283
+ # reverse the order, error order changes and so does the title
284
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>2 errors prohibited this user from being saved</h2><p>There were problems with the following fields:</p><ul><li>User email can't be empty</li><li>Author name can't be empty</li></ul></div>), error_messages_for("user", "post")
285
+
286
+ # add the default to put post back in the title
287
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>2 errors prohibited this post from being saved</h2><p>There were problems with the following fields:</p><ul><li>User email can't be empty</li><li>Author name can't be empty</li></ul></div>), error_messages_for("user", "post", :object_name => "post")
288
+
289
+ # symbols work as well
290
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>2 errors prohibited this post from being saved</h2><p>There were problems with the following fields:</p><ul><li>User email can't be empty</li><li>Author name can't be empty</li></ul></div>), error_messages_for(:user, :post, :object_name => :post)
291
+
292
+ # any default works too
293
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>2 errors prohibited this monkey from being saved</h2><p>There were problems with the following fields:</p><ul><li>User email can't be empty</li><li>Author name can't be empty</li></ul></div>), error_messages_for(:user, :post, :object_name => "monkey")
294
+
295
+ # should space object name
296
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>2 errors prohibited this chunky bacon from being saved</h2><p>There were problems with the following fields:</p><ul><li>User email can't be empty</li><li>Author name can't be empty</li></ul></div>), error_messages_for(:user, :post, :object_name => "chunky_bacon")
297
+
298
+ # hide header and explanation messages with nil or empty string
299
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><ul><li>User email can't be empty</li><li>Author name can't be empty</li></ul></div>), error_messages_for(:user, :post, :header_message => nil, :message => "")
300
+
301
+ # override header and explanation messages
302
+ header_message = "Yikes! Some errors"
303
+ message = "Please fix the following fields and resubmit:"
304
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>#{header_message}</h2><p>#{message}</p><ul><li>User email can't be empty</li><li>Author name can't be empty</li></ul></div>), error_messages_for(:user, :post, :header_message => header_message, :message => message)
305
+ end
306
+
307
+ def test_error_messages_for_non_instance_variable
308
+ actual_user = @user
309
+ actual_post = @post
310
+ @user = nil
311
+ @post = nil
312
+
313
+ #explicitly set object
314
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>1 error prohibited this post from being saved</h2><p>There were problems with the following fields:</p><ul><li>Author name can't be empty</li></ul></div>), error_messages_for("post", :object => actual_post)
315
+
316
+ #multiple objects
317
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>2 errors prohibited this user from being saved</h2><p>There were problems with the following fields:</p><ul><li>User email can't be empty</li><li>Author name can't be empty</li></ul></div>), error_messages_for("user", "post", :object => [actual_user, actual_post])
318
+
319
+ #nil object
320
+ assert_equal '', error_messages_for('user', :object => nil)
321
+ end
322
+
323
+ def test_error_messages_for_model_objects
324
+ error = error_messages_for(@post)
325
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>1 error prohibited this post from being saved</h2><p>There were problems with the following fields:</p><ul><li>Author name can't be empty</li></ul></div>),
326
+ error
327
+
328
+ error = error_messages_for(@user, @post)
329
+ assert_dom_equal %(<div class="errorExplanation" id="errorExplanation"><h2>2 errors prohibited this user from being saved</h2><p>There were problems with the following fields:</p><ul><li>User email can't be empty</li><li>Author name can't be empty</li></ul></div>),
330
+ error
331
+ end
332
+
333
+ def test_form_with_string_multipart
334
+ assert_dom_equal(
335
+ %(<form action="create" enctype="multipart/form-data" method="post"><p><label for="post_title">Title</label><br /><input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /></p>\n<p><label for="post_body">Body</label><br /><div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea></div></p><input name="commit" type="submit" value="Create" /></form>),
336
+ form("post", :multipart => true)
337
+ )
338
+ end
339
+
340
+ def test_default_form_builder_with_dynamic_form_helpers
341
+ form_for(@post, :as => :post, :url => {}) do |f|
342
+ concat f.error_message_on('author_name')
343
+ concat f.error_messages
344
+ end
345
+
346
+ expected = %(<form class="post_new" method="post" action="" id="post_new">) +
347
+ %(<div class="formError">can't be empty</div>) +
348
+ %(<div class="errorExplanation" id="errorExplanation"><h2>1 error prohibited this post from being saved</h2><p>There were problems with the following fields:</p><ul><li>Author name can't be empty</li></ul></div>) +
349
+ %(</form>)
350
+
351
+ assert_dom_equal expected, output_buffer
352
+ end
353
+
354
+ def test_default_form_builder_no_instance_variable
355
+ post = @post
356
+ @post = nil
357
+
358
+ form_for(post, :as => :post, :url => {}) do |f|
359
+ concat f.error_message_on('author_name')
360
+ concat f.error_messages
361
+ end
362
+
363
+ expected = %(<form class="post_new" method="post" action="" id="post_new">) +
364
+ %(<div class="formError">can't be empty</div>) +
365
+ %(<div class="errorExplanation" id="errorExplanation"><h2>1 error prohibited this post from being saved</h2><p>There were problems with the following fields:</p><ul><li>Author name can't be empty</li></ul></div>) +
366
+ %(</form>)
367
+
368
+ assert_dom_equal expected, output_buffer
369
+ end
370
+ end