eactionpack 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (338) hide show
  1. data/CHANGELOG +7 -0
  2. data/MIT-LICENSE +21 -0
  3. data/README +469 -0
  4. data/RUNNING_UNIT_TESTS +24 -0
  5. data/Rakefile +146 -0
  6. data/install.rb +30 -0
  7. data/lib/action_controller.rb +79 -0
  8. data/lib/action_controller/assertions.rb +69 -0
  9. data/lib/action_controller/assertions/dom_assertions.rb +39 -0
  10. data/lib/action_controller/assertions/model_assertions.rb +20 -0
  11. data/lib/action_controller/assertions/response_assertions.rb +172 -0
  12. data/lib/action_controller/assertions/routing_assertions.rb +146 -0
  13. data/lib/action_controller/assertions/selector_assertions.rb +491 -0
  14. data/lib/action_controller/assertions/tag_assertions.rb +130 -0
  15. data/lib/action_controller/base.rb +1288 -0
  16. data/lib/action_controller/benchmarking.rb +94 -0
  17. data/lib/action_controller/caching.rb +72 -0
  18. data/lib/action_controller/caching/actions.rb +144 -0
  19. data/lib/action_controller/caching/fragments.rb +138 -0
  20. data/lib/action_controller/caching/pages.rb +154 -0
  21. data/lib/action_controller/caching/sql_cache.rb +18 -0
  22. data/lib/action_controller/caching/sweeping.rb +97 -0
  23. data/lib/action_controller/cgi_ext.rb +16 -0
  24. data/lib/action_controller/cgi_ext/cookie.rb +110 -0
  25. data/lib/action_controller/cgi_ext/query_extension.rb +22 -0
  26. data/lib/action_controller/cgi_ext/session.rb +73 -0
  27. data/lib/action_controller/cgi_ext/stdinput.rb +24 -0
  28. data/lib/action_controller/cgi_process.rb +223 -0
  29. data/lib/action_controller/components.rb +166 -0
  30. data/lib/action_controller/cookies.rb +96 -0
  31. data/lib/action_controller/dispatcher.rb +162 -0
  32. data/lib/action_controller/filters.rb +642 -0
  33. data/lib/action_controller/flash.rb +172 -0
  34. data/lib/action_controller/headers.rb +31 -0
  35. data/lib/action_controller/helpers.rb +221 -0
  36. data/lib/action_controller/http_authentication.rb +124 -0
  37. data/lib/action_controller/integration.rb +634 -0
  38. data/lib/action_controller/layout.rb +309 -0
  39. data/lib/action_controller/mime_responds.rb +173 -0
  40. data/lib/action_controller/mime_type.rb +186 -0
  41. data/lib/action_controller/mime_types.rb +20 -0
  42. data/lib/action_controller/polymorphic_routes.rb +191 -0
  43. data/lib/action_controller/record_identifier.rb +102 -0
  44. data/lib/action_controller/request.rb +764 -0
  45. data/lib/action_controller/request_forgery_protection.rb +140 -0
  46. data/lib/action_controller/request_profiler.rb +169 -0
  47. data/lib/action_controller/rescue.rb +258 -0
  48. data/lib/action_controller/resources.rb +572 -0
  49. data/lib/action_controller/response.rb +76 -0
  50. data/lib/action_controller/routing.rb +387 -0
  51. data/lib/action_controller/routing/builder.rb +203 -0
  52. data/lib/action_controller/routing/optimisations.rb +120 -0
  53. data/lib/action_controller/routing/recognition_optimisation.rb +162 -0
  54. data/lib/action_controller/routing/route.rb +240 -0
  55. data/lib/action_controller/routing/route_set.rb +436 -0
  56. data/lib/action_controller/routing/routing_ext.rb +46 -0
  57. data/lib/action_controller/routing/segments.rb +283 -0
  58. data/lib/action_controller/session/active_record_store.rb +340 -0
  59. data/lib/action_controller/session/cookie_store.rb +166 -0
  60. data/lib/action_controller/session/drb_server.rb +32 -0
  61. data/lib/action_controller/session/drb_store.rb +35 -0
  62. data/lib/action_controller/session/mem_cache_store.rb +98 -0
  63. data/lib/action_controller/session_management.rb +158 -0
  64. data/lib/action_controller/status_codes.rb +88 -0
  65. data/lib/action_controller/streaming.rb +155 -0
  66. data/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
  67. data/lib/action_controller/templates/rescues/_trace.erb +26 -0
  68. data/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
  69. data/lib/action_controller/templates/rescues/layout.erb +29 -0
  70. data/lib/action_controller/templates/rescues/missing_template.erb +2 -0
  71. data/lib/action_controller/templates/rescues/routing_error.erb +10 -0
  72. data/lib/action_controller/templates/rescues/template_error.erb +21 -0
  73. data/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
  74. data/lib/action_controller/test_case.rb +83 -0
  75. data/lib/action_controller/test_process.rb +526 -0
  76. data/lib/action_controller/url_rewriter.rb +142 -0
  77. data/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
  78. data/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
  79. data/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
  80. data/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
  81. data/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
  82. data/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
  83. data/lib/action_controller/verification.rb +130 -0
  84. data/lib/action_pack.rb +24 -0
  85. data/lib/action_pack/version.rb +9 -0
  86. data/lib/action_view.rb +44 -0
  87. data/lib/action_view/base.rb +335 -0
  88. data/lib/action_view/helpers/active_record_helper.rb +276 -0
  89. data/lib/action_view/helpers/asset_tag_helper.rb +599 -0
  90. data/lib/action_view/helpers/atom_feed_helper.rb +143 -0
  91. data/lib/action_view/helpers/benchmark_helper.rb +33 -0
  92. data/lib/action_view/helpers/cache_helper.rb +40 -0
  93. data/lib/action_view/helpers/capture_helper.rb +161 -0
  94. data/lib/action_view/helpers/date_helper.rb +711 -0
  95. data/lib/action_view/helpers/debug_helper.rb +31 -0
  96. data/lib/action_view/helpers/form_helper.rb +767 -0
  97. data/lib/action_view/helpers/form_options_helper.rb +458 -0
  98. data/lib/action_view/helpers/form_tag_helper.rb +458 -0
  99. data/lib/action_view/helpers/javascript_helper.rb +148 -0
  100. data/lib/action_view/helpers/number_helper.rb +186 -0
  101. data/lib/action_view/helpers/record_identification_helper.rb +20 -0
  102. data/lib/action_view/helpers/record_tag_helper.rb +59 -0
  103. data/lib/action_view/helpers/sanitize_helper.rb +229 -0
  104. data/lib/action_view/helpers/tag_helper.rb +134 -0
  105. data/lib/action_view/helpers/text_helper.rb +507 -0
  106. data/lib/action_view/helpers/url_helper.rb +573 -0
  107. data/lib/action_view/inline_template.rb +20 -0
  108. data/lib/action_view/partial_template.rb +70 -0
  109. data/lib/action_view/partials.rb +158 -0
  110. data/lib/action_view/template.rb +125 -0
  111. data/lib/action_view/template_error.rb +110 -0
  112. data/lib/action_view/template_finder.rb +176 -0
  113. data/lib/action_view/template_handler.rb +34 -0
  114. data/lib/action_view/template_handlers/builder.rb +27 -0
  115. data/lib/action_view/template_handlers/compilable.rb +128 -0
  116. data/lib/action_view/template_handlers/erb.rb +56 -0
  117. data/lib/action_view/test_case.rb +58 -0
  118. data/lib/actionpack.rb +1 -0
  119. data/test/abstract_unit.rb +36 -0
  120. data/test/active_record_unit.rb +105 -0
  121. data/test/activerecord/active_record_store_test.rb +141 -0
  122. data/test/activerecord/render_partial_with_record_identification_test.rb +191 -0
  123. data/test/adv_attr_test.rb +20 -0
  124. data/test/controller/action_pack_assertions_test.rb +543 -0
  125. data/test/controller/addresses_render_test.rb +43 -0
  126. data/test/controller/assert_select_test.rb +331 -0
  127. data/test/controller/base_test.rb +219 -0
  128. data/test/controller/benchmark_test.rb +32 -0
  129. data/test/controller/caching_test.rb +581 -0
  130. data/test/controller/capture_test.rb +89 -0
  131. data/test/controller/cgi_test.rb +116 -0
  132. data/test/controller/components_test.rb +140 -0
  133. data/test/controller/content_type_test.rb +139 -0
  134. data/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  135. data/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  136. data/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  137. data/test/controller/cookie_test.rb +146 -0
  138. data/test/controller/custom_handler_test.rb +45 -0
  139. data/test/controller/deprecation/deprecated_base_methods_test.rb +37 -0
  140. data/test/controller/dispatcher_test.rb +105 -0
  141. data/test/controller/fake_controllers.rb +33 -0
  142. data/test/controller/fake_models.rb +11 -0
  143. data/test/controller/filter_params_test.rb +49 -0
  144. data/test/controller/filters_test.rb +881 -0
  145. data/test/controller/flash_test.rb +146 -0
  146. data/test/controller/header_test.rb +14 -0
  147. data/test/controller/helper_test.rb +210 -0
  148. data/test/controller/html-scanner/cdata_node_test.rb +15 -0
  149. data/test/controller/html-scanner/document_test.rb +148 -0
  150. data/test/controller/html-scanner/node_test.rb +89 -0
  151. data/test/controller/html-scanner/sanitizer_test.rb +269 -0
  152. data/test/controller/html-scanner/tag_node_test.rb +238 -0
  153. data/test/controller/html-scanner/text_node_test.rb +50 -0
  154. data/test/controller/html-scanner/tokenizer_test.rb +131 -0
  155. data/test/controller/http_authentication_test.rb +54 -0
  156. data/test/controller/integration_test.rb +252 -0
  157. data/test/controller/integration_upload_test.rb +43 -0
  158. data/test/controller/layout_test.rb +255 -0
  159. data/test/controller/mime_responds_test.rb +514 -0
  160. data/test/controller/mime_type_test.rb +84 -0
  161. data/test/controller/new_render_test.rb +843 -0
  162. data/test/controller/polymorphic_routes_test.rb +174 -0
  163. data/test/controller/record_identifier_test.rb +139 -0
  164. data/test/controller/redirect_test.rb +289 -0
  165. data/test/controller/render_test.rb +484 -0
  166. data/test/controller/request_forgery_protection_test.rb +305 -0
  167. data/test/controller/request_test.rb +928 -0
  168. data/test/controller/rescue_test.rb +517 -0
  169. data/test/controller/resources_test.rb +873 -0
  170. data/test/controller/routing_test.rb +2464 -0
  171. data/test/controller/selector_test.rb +628 -0
  172. data/test/controller/send_file_test.rb +138 -0
  173. data/test/controller/session/cookie_store_test.rb +258 -0
  174. data/test/controller/session/mem_cache_store_test.rb +181 -0
  175. data/test/controller/session_fixation_test.rb +89 -0
  176. data/test/controller/session_management_test.rb +178 -0
  177. data/test/controller/test_test.rb +695 -0
  178. data/test/controller/url_rewriter_test.rb +310 -0
  179. data/test/controller/verification_test.rb +270 -0
  180. data/test/controller/view_paths_test.rb +140 -0
  181. data/test/controller/webservice_test.rb +229 -0
  182. data/test/fixtures/addresses/list.erb +1 -0
  183. data/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
  184. data/test/fixtures/companies.yml +24 -0
  185. data/test/fixtures/company.rb +10 -0
  186. data/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
  187. data/test/fixtures/content_type/render_default_for_js.js.erb +1 -0
  188. data/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
  189. data/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
  190. data/test/fixtures/customers/_customer.html.erb +1 -0
  191. data/test/fixtures/db_definitions/sqlite.sql +49 -0
  192. data/test/fixtures/developer.rb +9 -0
  193. data/test/fixtures/developers.yml +21 -0
  194. data/test/fixtures/developers_projects.yml +13 -0
  195. data/test/fixtures/fun/games/hello_world.erb +1 -0
  196. data/test/fixtures/functional_caching/_partial.erb +3 -0
  197. data/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
  198. data/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
  199. data/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
  200. data/test/fixtures/good_customers/_good_customer.html.erb +1 -0
  201. data/test/fixtures/helpers/abc_helper.rb +5 -0
  202. data/test/fixtures/helpers/fun/games_helper.rb +3 -0
  203. data/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  204. data/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
  205. data/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
  206. data/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
  207. data/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
  208. data/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
  209. data/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
  210. data/test/fixtures/layout_tests/views/hello.rhtml +1 -0
  211. data/test/fixtures/layouts/block_with_layout.erb +3 -0
  212. data/test/fixtures/layouts/builder.builder +3 -0
  213. data/test/fixtures/layouts/partial_with_layout.erb +3 -0
  214. data/test/fixtures/layouts/standard.erb +1 -0
  215. data/test/fixtures/layouts/talk_from_action.erb +2 -0
  216. data/test/fixtures/layouts/yield.erb +2 -0
  217. data/test/fixtures/mascot.rb +3 -0
  218. data/test/fixtures/mascots.yml +4 -0
  219. data/test/fixtures/mascots/_mascot.html.erb +1 -0
  220. data/test/fixtures/multipart/binary_file +0 -0
  221. data/test/fixtures/multipart/boundary_problem_file +10 -0
  222. data/test/fixtures/multipart/bracketed_param +5 -0
  223. data/test/fixtures/multipart/large_text_file +10 -0
  224. data/test/fixtures/multipart/mixed_files +0 -0
  225. data/test/fixtures/multipart/mona_lisa.jpg +0 -0
  226. data/test/fixtures/multipart/single_parameter +5 -0
  227. data/test/fixtures/multipart/text_file +10 -0
  228. data/test/fixtures/override/test/hello_world.erb +1 -0
  229. data/test/fixtures/override2/layouts/test/sub.erb +1 -0
  230. data/test/fixtures/post_test/layouts/post.html.erb +1 -0
  231. data/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
  232. data/test/fixtures/post_test/post/index.html.erb +1 -0
  233. data/test/fixtures/post_test/post/index.iphone.erb +1 -0
  234. data/test/fixtures/post_test/super_post/index.html.erb +1 -0
  235. data/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
  236. data/test/fixtures/project.rb +3 -0
  237. data/test/fixtures/projects.yml +7 -0
  238. data/test/fixtures/public/404.html +1 -0
  239. data/test/fixtures/public/500.html +1 -0
  240. data/test/fixtures/public/images/rails.png +0 -0
  241. data/test/fixtures/public/javascripts/application.js +1 -0
  242. data/test/fixtures/public/javascripts/bank.js +1 -0
  243. data/test/fixtures/public/javascripts/robber.js +1 -0
  244. data/test/fixtures/public/javascripts/version.1.0.js +1 -0
  245. data/test/fixtures/public/stylesheets/bank.css +1 -0
  246. data/test/fixtures/public/stylesheets/robber.css +1 -0
  247. data/test/fixtures/public/stylesheets/version.1.0.css +1 -0
  248. data/test/fixtures/replies.yml +15 -0
  249. data/test/fixtures/reply.rb +7 -0
  250. data/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
  251. data/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
  252. data/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
  253. data/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
  254. data/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
  255. data/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
  256. data/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
  257. data/test/fixtures/respond_to/using_defaults.html.erb +1 -0
  258. data/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
  259. data/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
  260. data/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
  261. data/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
  262. data/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
  263. data/test/fixtures/scope/test/modgreet.erb +1 -0
  264. data/test/fixtures/shared.html.erb +1 -0
  265. data/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
  266. data/test/fixtures/test/_customer.erb +1 -0
  267. data/test/fixtures/test/_customer_counter.erb +1 -0
  268. data/test/fixtures/test/_customer_greeting.erb +1 -0
  269. data/test/fixtures/test/_form.erb +1 -0
  270. data/test/fixtures/test/_hash_greeting.erb +1 -0
  271. data/test/fixtures/test/_hash_object.erb +2 -0
  272. data/test/fixtures/test/_hello.builder +1 -0
  273. data/test/fixtures/test/_labelling_form.erb +1 -0
  274. data/test/fixtures/test/_layout_for_partial.html.erb +3 -0
  275. data/test/fixtures/test/_partial.erb +1 -0
  276. data/test/fixtures/test/_partial.html.erb +1 -0
  277. data/test/fixtures/test/_partial.js.erb +1 -0
  278. data/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
  279. data/test/fixtures/test/_partial_only.erb +1 -0
  280. data/test/fixtures/test/_person.erb +2 -0
  281. data/test/fixtures/test/_raise.html.erb +1 -0
  282. data/test/fixtures/test/action_talk_to_layout.erb +2 -0
  283. data/test/fixtures/test/block_content_for.erb +2 -0
  284. data/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
  285. data/test/fixtures/test/capturing.erb +4 -0
  286. data/test/fixtures/test/content_for.erb +2 -0
  287. data/test/fixtures/test/content_for_concatenated.erb +3 -0
  288. data/test/fixtures/test/content_for_with_parameter.erb +2 -0
  289. data/test/fixtures/test/delete_with_js.rjs +2 -0
  290. data/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
  291. data/test/fixtures/test/enum_rjs_test.rjs +6 -0
  292. data/test/fixtures/test/erb_content_for.erb +2 -0
  293. data/test/fixtures/test/formatted_html_erb.html.erb +1 -0
  294. data/test/fixtures/test/formatted_xml_erb.builder +1 -0
  295. data/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
  296. data/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
  297. data/test/fixtures/test/greeting.erb +1 -0
  298. data/test/fixtures/test/greeting.js.rjs +1 -0
  299. data/test/fixtures/test/hello.builder +4 -0
  300. data/test/fixtures/test/hello_world.erb +1 -0
  301. data/test/fixtures/test/hello_world_container.builder +3 -0
  302. data/test/fixtures/test/hello_world_from_rxml.builder +4 -0
  303. data/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
  304. data/test/fixtures/test/hello_xml_world.builder +11 -0
  305. data/test/fixtures/test/list.erb +1 -0
  306. data/test/fixtures/test/non_erb_block_content_for.builder +4 -0
  307. data/test/fixtures/test/potential_conflicts.erb +4 -0
  308. data/test/fixtures/test/render_file_from_template.html.erb +1 -0
  309. data/test/fixtures/test/render_file_with_ivar.erb +1 -0
  310. data/test/fixtures/test/render_file_with_locals.erb +1 -0
  311. data/test/fixtures/test/render_to_string_test.erb +1 -0
  312. data/test/fixtures/test/update_element_with_capture.erb +9 -0
  313. data/test/fixtures/test/using_layout_around_block.html.erb +1 -0
  314. data/test/fixtures/topic.rb +3 -0
  315. data/test/fixtures/topics.yml +22 -0
  316. data/test/fixtures/topics/_topic.html.erb +1 -0
  317. data/test/template/active_record_helper_test.rb +268 -0
  318. data/test/template/asset_tag_helper_test.rb +514 -0
  319. data/test/template/atom_feed_helper_test.rb +179 -0
  320. data/test/template/benchmark_helper_test.rb +60 -0
  321. data/test/template/date_helper_test.rb +1791 -0
  322. data/test/template/deprecated_erb_variable_test.rb +9 -0
  323. data/test/template/erb_util_test.rb +24 -0
  324. data/test/template/form_helper_test.rb +885 -0
  325. data/test/template/form_options_helper_test.rb +1333 -0
  326. data/test/template/form_tag_helper_test.rb +272 -0
  327. data/test/template/javascript_helper_test.rb +73 -0
  328. data/test/template/number_helper_test.rb +97 -0
  329. data/test/template/record_tag_helper_test.rb +54 -0
  330. data/test/template/sanitize_helper_test.rb +48 -0
  331. data/test/template/tag_helper_test.rb +77 -0
  332. data/test/template/template_finder_test.rb +73 -0
  333. data/test/template/template_object_test.rb +95 -0
  334. data/test/template/test_test.rb +56 -0
  335. data/test/template/text_helper_test.rb +367 -0
  336. data/test/template/url_helper_test.rb +544 -0
  337. data/test/testing_sandbox.rb +15 -0
  338. metadata +469 -0
@@ -0,0 +1,146 @@
1
+ module ActionController
2
+ module Assertions
3
+ # Suite of assertions to test routes generated by Rails and the handling of requests made to them.
4
+ module RoutingAssertions
5
+ # Asserts that the routing of the given +path+ was handled correctly and that the parsed options (given in the +expected_options+ hash)
6
+ # match +path+. Basically, it asserts that Rails recognizes the route given by +expected_options+.
7
+ #
8
+ # Pass a hash in the second argument (+path+) to specify the request method. This is useful for routes
9
+ # requiring a specific HTTP method. The hash should contain a :path with the incoming request path
10
+ # and a :method containing the required HTTP verb.
11
+ #
12
+ # # assert that POSTing to /items will call the create action on ItemsController
13
+ # assert_recognizes({:controller => 'items', :action => 'create'}, {:path => 'items', :method => :post})
14
+ #
15
+ # You can also pass in +extras+ with a hash containing URL parameters that would normally be in the query string. This can be used
16
+ # to assert that values in the query string string will end up in the params hash correctly. To test query strings you must use the
17
+ # extras argument, appending the query string on the path directly will not work. For example:
18
+ #
19
+ # # assert that a path of '/items/list/1?view=print' returns the correct options
20
+ # assert_recognizes({:controller => 'items', :action => 'list', :id => '1', :view => 'print'}, 'items/list/1', { :view => "print" })
21
+ #
22
+ # The +message+ parameter allows you to pass in an error message that is displayed upon failure.
23
+ #
24
+ # ==== Examples
25
+ # # Check the default route (i.e., the index action)
26
+ # assert_recognizes({:controller => 'items', :action => 'index'}, 'items')
27
+ #
28
+ # # Test a specific action
29
+ # assert_recognizes({:controller => 'items', :action => 'list'}, 'items/list')
30
+ #
31
+ # # Test an action with a parameter
32
+ # assert_recognizes({:controller => 'items', :action => 'destroy', :id => '1'}, 'items/destroy/1')
33
+ #
34
+ # # Test a custom route
35
+ # assert_recognizes({:controller => 'items', :action => 'show', :id => '1'}, 'view/item1')
36
+ #
37
+ # # Check a Simply RESTful generated route
38
+ # assert_recognizes(list_items_url, 'items/list')
39
+ def assert_recognizes(expected_options, path, extras={}, message=nil)
40
+ if path.is_a? Hash
41
+ request_method = path[:method]
42
+ path = path[:path]
43
+ else
44
+ request_method = nil
45
+ end
46
+
47
+ clean_backtrace do
48
+ ActionController::Routing::Routes.reload if ActionController::Routing::Routes.empty?
49
+ request = recognized_request_for(path, request_method)
50
+
51
+ expected_options = expected_options.clone
52
+ extras.each_key { |key| expected_options.delete key } unless extras.nil?
53
+
54
+ expected_options.stringify_keys!
55
+ routing_diff = expected_options.diff(request.path_parameters)
56
+ msg = build_message(message, "The recognized options <?> did not match <?>, difference: <?>",
57
+ request.path_parameters, expected_options, expected_options.diff(request.path_parameters))
58
+ assert_block(msg) { request.path_parameters == expected_options }
59
+ end
60
+ end
61
+
62
+ # Asserts that the provided options can be used to generate the provided path. This is the inverse of +assert_recognizes+.
63
+ # The +extras+ parameter is used to tell the request the names and values of additional request parameters that would be in
64
+ # a query string. The +message+ parameter allows you to specify a custom error message for assertion failures.
65
+ #
66
+ # The +defaults+ parameter is unused.
67
+ #
68
+ # ==== Examples
69
+ # # Asserts that the default action is generated for a route with no action
70
+ # assert_generates("/items", :controller => "items", :action => "index")
71
+ #
72
+ # # Tests that the list action is properly routed
73
+ # assert_generates("/items/list", :controller => "items", :action => "list")
74
+ #
75
+ # # Tests the generation of a route with a parameter
76
+ # assert_generates("/items/list/1", { :controller => "items", :action => "list", :id => "1" })
77
+ #
78
+ # # Asserts that the generated route gives us our custom route
79
+ # assert_generates "changesets/12", { :controller => 'scm', :action => 'show_diff', :revision => "12" }
80
+ def assert_generates(expected_path, options, defaults={}, extras = {}, message=nil)
81
+ clean_backtrace do
82
+ expected_path = "/#{expected_path}" unless expected_path[0] == ?/
83
+ # Load routes.rb if it hasn't been loaded.
84
+ ActionController::Routing::Routes.reload if ActionController::Routing::Routes.empty?
85
+
86
+ generated_path, extra_keys = ActionController::Routing::Routes.generate_extras(options, defaults)
87
+ found_extras = options.reject {|k, v| ! extra_keys.include? k}
88
+
89
+ msg = build_message(message, "found extras <?>, not <?>", found_extras, extras)
90
+ assert_block(msg) { found_extras == extras }
91
+
92
+ msg = build_message(message, "The generated path <?> did not match <?>", generated_path,
93
+ expected_path)
94
+ assert_block(msg) { expected_path == generated_path }
95
+ end
96
+ end
97
+
98
+ # Asserts that path and options match both ways; in other words, it verifies that <tt>path</tt> generates
99
+ # <tt>options</tt> and then that <tt>options</tt> generates <tt>path</tt>. This essentially combines +assert_recognizes+
100
+ # and +assert_generates+ into one step.
101
+ #
102
+ # The +extras+ hash allows you to specify options that would normally be provided as a query string to the action. The
103
+ # +message+ parameter allows you to specify a custom error message to display upon failure.
104
+ #
105
+ # ==== Examples
106
+ # # Assert a basic route: a controller with the default action (index)
107
+ # assert_routing('/home', :controller => 'home', :action => 'index')
108
+ #
109
+ # # Test a route generated with a specific controller, action, and parameter (id)
110
+ # assert_routing('/entries/show/23', :controller => 'entries', :action => 'show', id => 23)
111
+ #
112
+ # # Assert a basic route (controller + default action), with an error message if it fails
113
+ # assert_routing('/store', { :controller => 'store', :action => 'index' }, {}, {}, 'Route for store index not generated properly')
114
+ #
115
+ # # Tests a route, providing a defaults hash
116
+ # assert_routing 'controller/action/9', {:id => "9", :item => "square"}, {:controller => "controller", :action => "action"}, {}, {:item => "square"}
117
+ #
118
+ # # Tests a route with a HTTP method
119
+ # assert_routing({ :method => 'put', :path => '/product/321' }, { :controller => "product", :action => "update", :id => "321" })
120
+ def assert_routing(path, options, defaults={}, extras={}, message=nil)
121
+ assert_recognizes(options, path, extras, message)
122
+
123
+ controller, default_controller = options[:controller], defaults[:controller]
124
+ if controller && controller.include?(?/) && default_controller && default_controller.include?(?/)
125
+ options[:controller] = "/#{controller}"
126
+ end
127
+
128
+ assert_generates(path.is_a?(Hash) ? path[:path] : path, options, defaults, extras, message)
129
+ end
130
+
131
+ private
132
+ # Recognizes the route for a given path.
133
+ def recognized_request_for(path, request_method = nil)
134
+ path = "/#{path}" unless path.first == '/'
135
+
136
+ # Assume given controller
137
+ request = ActionController::TestRequest.new({}, {}, nil)
138
+ request.env["REQUEST_METHOD"] = request_method.to_s.upcase if request_method
139
+ request.path = path
140
+
141
+ ActionController::Routing::Routes.recognize(request)
142
+ request
143
+ end
144
+ end
145
+ end
146
+ end
@@ -0,0 +1,491 @@
1
+ #--
2
+ # Copyright (c) 2006 Assaf Arkin (http://labnotes.org)
3
+ # Under MIT and/or CC By license.
4
+ #++
5
+
6
+ require 'rexml/document'
7
+ require 'html/document'
8
+
9
+ module ActionController
10
+ module Assertions
11
+ unless const_defined?(:NO_STRIP)
12
+ NO_STRIP = %w{pre script style textarea}
13
+ end
14
+
15
+ # Adds the +assert_select+ method for use in Rails functional
16
+ # test cases, which can be used to make assertions on the response HTML of a controller
17
+ # action. You can also call +assert_select+ within another +assert_select+ to
18
+ # make assertions on elements selected by the enclosing assertion.
19
+ #
20
+ # Use +css_select+ to select elements without making an assertions, either
21
+ # from the response HTML or elements selected by the enclosing assertion.
22
+ #
23
+ # In addition to HTML responses, you can make the following assertions:
24
+ # * +assert_select_email+ - Assertions on the HTML body of an e-mail.
25
+ #
26
+ # Also see HTML::Selector to learn how to use selectors.
27
+ module SelectorAssertions
28
+ # :call-seq:
29
+ # css_select(selector) => array
30
+ # css_select(element, selector) => array
31
+ #
32
+ # Select and return all matching elements.
33
+ #
34
+ # If called with a single argument, uses that argument as a selector
35
+ # to match all elements of the current page. Returns an empty array
36
+ # if no match is found.
37
+ #
38
+ # If called with two arguments, uses the first argument as the base
39
+ # element and the second argument as the selector. Attempts to match the
40
+ # base element and any of its children. Returns an empty array if no
41
+ # match is found.
42
+ #
43
+ # The selector may be a CSS selector expression (String), an expression
44
+ # with substitution values (Array) or an HTML::Selector object.
45
+ #
46
+ # ==== Examples
47
+ # # Selects all div tags
48
+ # divs = css_select("div")
49
+ #
50
+ # # Selects all paragraph tags and does something interesting
51
+ # pars = css_select("p")
52
+ # pars.each do |par|
53
+ # # Do something fun with paragraphs here...
54
+ # end
55
+ #
56
+ # # Selects all list items in unordered lists
57
+ # items = css_select("ul>li")
58
+ #
59
+ # # Selects all form tags and then all inputs inside the form
60
+ # forms = css_select("form")
61
+ # forms.each do |form|
62
+ # inputs = css_select(form, "input")
63
+ # ...
64
+ # end
65
+ #
66
+ def css_select(*args)
67
+ # See assert_select to understand what's going on here.
68
+ arg = args.shift
69
+
70
+ if arg.is_a?(HTML::Node)
71
+ root = arg
72
+ arg = args.shift
73
+ elsif arg == nil
74
+ raise ArgumentError, "First argument is either selector or element to select, but nil found. Perhaps you called assert_select with an element that does not exist?"
75
+ elsif @selected
76
+ matches = []
77
+
78
+ @selected.each do |selected|
79
+ subset = css_select(selected, HTML::Selector.new(arg.dup, args.dup))
80
+ subset.each do |match|
81
+ matches << match unless matches.any? { |m| m.equal?(match) }
82
+ end
83
+ end
84
+
85
+ return matches
86
+ else
87
+ root = response_from_page
88
+ end
89
+
90
+ case arg
91
+ when String
92
+ selector = HTML::Selector.new(arg, args)
93
+ when Array
94
+ selector = HTML::Selector.new(*arg)
95
+ when HTML::Selector
96
+ selector = arg
97
+ else raise ArgumentError, "Expecting a selector as the first argument"
98
+ end
99
+
100
+ selector.select(root)
101
+ end
102
+
103
+ # :call-seq:
104
+ # assert_select(selector, equality?, message?)
105
+ # assert_select(element, selector, equality?, message?)
106
+ #
107
+ # An assertion that selects elements and makes one or more equality tests.
108
+ #
109
+ # If the first argument is an element, selects all matching elements
110
+ # starting from (and including) that element and all its children in
111
+ # depth-first order.
112
+ #
113
+ # If no element if specified, calling +assert_select+ will select from the
114
+ # response HTML. Calling #assert_select inside an +assert_select+ block will
115
+ # run the assertion for each element selected by the enclosing assertion.
116
+ #
117
+ # ==== Example
118
+ # assert_select "ol>li" do |elements|
119
+ # elements.each do |element|
120
+ # assert_select element, "li"
121
+ # end
122
+ # end
123
+ #
124
+ # Or for short:
125
+ # assert_select "ol>li" do
126
+ # assert_select "li"
127
+ # end
128
+ #
129
+ # The selector may be a CSS selector expression (String), an expression
130
+ # with substitution values, or an HTML::Selector object.
131
+ #
132
+ # === Equality Tests
133
+ #
134
+ # The equality test may be one of the following:
135
+ # * <tt>true</tt> - Assertion is true if at least one element selected.
136
+ # * <tt>false</tt> - Assertion is true if no element selected.
137
+ # * <tt>String/Regexp</tt> - Assertion is true if the text value of at least
138
+ # one element matches the string or regular expression.
139
+ # * <tt>Integer</tt> - Assertion is true if exactly that number of
140
+ # elements are selected.
141
+ # * <tt>Range</tt> - Assertion is true if the number of selected
142
+ # elements fit the range.
143
+ # If no equality test specified, the assertion is true if at least one
144
+ # element selected.
145
+ #
146
+ # To perform more than one equality tests, use a hash with the following keys:
147
+ # * <tt>:text</tt> - Narrow the selection to elements that have this text
148
+ # value (string or regexp).
149
+ # * <tt>:html</tt> - Narrow the selection to elements that have this HTML
150
+ # content (string or regexp).
151
+ # * <tt>:count</tt> - Assertion is true if the number of selected elements
152
+ # is equal to this value.
153
+ # * <tt>:minimum</tt> - Assertion is true if the number of selected
154
+ # elements is at least this value.
155
+ # * <tt>:maximum</tt> - Assertion is true if the number of selected
156
+ # elements is at most this value.
157
+ #
158
+ # If the method is called with a block, once all equality tests are
159
+ # evaluated the block is called with an array of all matched elements.
160
+ #
161
+ # ==== Examples
162
+ #
163
+ # # At least one form element
164
+ # assert_select "form"
165
+ #
166
+ # # Form element includes four input fields
167
+ # assert_select "form input", 4
168
+ #
169
+ # # Page title is "Welcome"
170
+ # assert_select "title", "Welcome"
171
+ #
172
+ # # Page title is "Welcome" and there is only one title element
173
+ # assert_select "title", {:count=>1, :text=>"Welcome"},
174
+ # "Wrong title or more than one title element"
175
+ #
176
+ # # Page contains no forms
177
+ # assert_select "form", false, "This page must contain no forms"
178
+ #
179
+ # # Test the content and style
180
+ # assert_select "body div.header ul.menu"
181
+ #
182
+ # # Use substitution values
183
+ # assert_select "ol>li#?", /item-\d+/
184
+ #
185
+ # # All input fields in the form have a name
186
+ # assert_select "form input" do
187
+ # assert_select "[name=?]", /.+/ # Not empty
188
+ # end
189
+ def assert_select(*args, &block)
190
+ # Start with optional element followed by mandatory selector.
191
+ arg = args.shift
192
+
193
+ if arg.is_a?(HTML::Node)
194
+ # First argument is a node (tag or text, but also HTML root),
195
+ # so we know what we're selecting from.
196
+ root = arg
197
+ arg = args.shift
198
+ elsif arg == nil
199
+ # This usually happens when passing a node/element that
200
+ # happens to be nil.
201
+ raise ArgumentError, "First argument is either selector or element to select, but nil found. Perhaps you called assert_select with an element that does not exist?"
202
+ elsif @selected
203
+ root = HTML::Node.new(nil)
204
+ root.children.concat @selected
205
+ else
206
+ # Otherwise just operate on the response document.
207
+ root = response_from_page
208
+ end
209
+
210
+ # First or second argument is the selector: string and we pass
211
+ # all remaining arguments. Array and we pass the argument. Also
212
+ # accepts selector itself.
213
+ case arg
214
+ when String
215
+ selector = HTML::Selector.new(arg, args)
216
+ when Array
217
+ selector = HTML::Selector.new(*arg)
218
+ when HTML::Selector
219
+ selector = arg
220
+ else raise ArgumentError, "Expecting a selector as the first argument"
221
+ end
222
+
223
+ # Next argument is used for equality tests.
224
+ equals = {}
225
+ case arg = args.shift
226
+ when Hash
227
+ equals = arg
228
+ when String, Regexp
229
+ equals[:text] = arg
230
+ when Integer
231
+ equals[:count] = arg
232
+ when Range
233
+ equals[:minimum] = arg.begin
234
+ equals[:maximum] = arg.end
235
+ when FalseClass
236
+ equals[:count] = 0
237
+ when NilClass, TrueClass
238
+ equals[:minimum] = 1
239
+ else raise ArgumentError, "I don't understand what you're trying to match"
240
+ end
241
+
242
+ # By default we're looking for at least one match.
243
+ if equals[:count]
244
+ equals[:minimum] = equals[:maximum] = equals[:count]
245
+ else
246
+ equals[:minimum] = 1 unless equals[:minimum]
247
+ end
248
+
249
+ # Last argument is the message we use if the assertion fails.
250
+ message = args.shift
251
+ #- message = "No match made with selector #{selector.inspect}" unless message
252
+ if args.shift
253
+ raise ArgumentError, "Not expecting that last argument, you either have too many arguments, or they're the wrong type"
254
+ end
255
+
256
+ matches = selector.select(root)
257
+ # If text/html, narrow down to those elements that match it.
258
+ content_mismatch = nil
259
+ if match_with = equals[:text]
260
+ matches.delete_if do |match|
261
+ text = ""
262
+ text.force_encoding(match_with.encoding) if text.respond_to?(:force_encoding)
263
+ stack = match.children.reverse
264
+ while node = stack.pop
265
+ if node.tag?
266
+ stack.concat node.children.reverse
267
+ else
268
+ content = node.content
269
+ content.force_encoding(match_with.encoding) if content.respond_to?(:force_encoding)
270
+ text << content
271
+ end
272
+ end
273
+ text.strip! unless NO_STRIP.include?(match.name)
274
+ unless match_with.is_a?(Regexp) ? (text =~ match_with) : (text == match_with.to_s)
275
+ content_mismatch ||= build_message(message, "<?> expected but was\n<?>.", match_with, text)
276
+ true
277
+ end
278
+ end
279
+ elsif match_with = equals[:html]
280
+ matches.delete_if do |match|
281
+ html = match.children.map(&:to_s).join
282
+ html.strip! unless NO_STRIP.include?(match.name)
283
+ unless match_with.is_a?(Regexp) ? (html =~ match_with) : (html == match_with.to_s)
284
+ content_mismatch ||= build_message(message, "<?> expected but was\n<?>.", match_with, html)
285
+ true
286
+ end
287
+ end
288
+ end
289
+ # Expecting foo found bar element only if found zero, not if
290
+ # found one but expecting two.
291
+ message ||= content_mismatch if matches.empty?
292
+ # Test minimum/maximum occurrence.
293
+ min, max = equals[:minimum], equals[:maximum]
294
+ message = message || %(Expected #{count_description(min, max)} matching "#{selector.to_s}", found #{matches.size}.)
295
+ assert matches.size >= min, message if min
296
+ assert matches.size <= max, message if max
297
+
298
+ # If a block is given call that block. Set @selected to allow
299
+ # nested assert_select, which can be nested several levels deep.
300
+ if block_given? && !matches.empty?
301
+ begin
302
+ in_scope, @selected = @selected, matches
303
+ yield matches
304
+ ensure
305
+ @selected = in_scope
306
+ end
307
+ end
308
+
309
+ # Returns all matches elements.
310
+ matches
311
+ end
312
+
313
+ def count_description(min, max) #:nodoc:
314
+ pluralize = lambda {|word, quantity| word << (quantity == 1 ? '' : 's')}
315
+
316
+ if min && max && (max != min)
317
+ "between #{min} and #{max} elements"
318
+ elsif min && !(min == 1 && max == 1)
319
+ "at least #{min} #{pluralize['element', min]}"
320
+ elsif max
321
+ "at most #{max} #{pluralize['element', max]}"
322
+ end
323
+ end
324
+
325
+
326
+ # :call-seq:
327
+ # assert_select_encoded(element?) { |elements| ... }
328
+ #
329
+ # Extracts the content of an element, treats it as encoded HTML and runs
330
+ # nested assertion on it.
331
+ #
332
+ # You typically call this method within another assertion to operate on
333
+ # all currently selected elements. You can also pass an element or array
334
+ # of elements.
335
+ #
336
+ # The content of each element is un-encoded, and wrapped in the root
337
+ # element +encoded+. It then calls the block with all un-encoded elements.
338
+ #
339
+ # ==== Examples
340
+ # # Selects all bold tags from within the title of an ATOM feed's entries (perhaps to nab a section name prefix)
341
+ # assert_select_feed :atom, 1.0 do
342
+ # # Select each entry item and then the title item
343
+ # assert_select "entry>title" do
344
+ # # Run assertions on the encoded title elements
345
+ # assert_select_encoded do
346
+ # assert_select "b"
347
+ # end
348
+ # end
349
+ # end
350
+ #
351
+ #
352
+ # # Selects all paragraph tags from within the description of an RSS feed
353
+ # assert_select_feed :rss, 2.0 do
354
+ # # Select description element of each feed item.
355
+ # assert_select "channel>item>description" do
356
+ # # Run assertions on the encoded elements.
357
+ # assert_select_encoded do
358
+ # assert_select "p"
359
+ # end
360
+ # end
361
+ # end
362
+ def assert_select_encoded(element = nil, &block)
363
+ case element
364
+ when Array
365
+ elements = element
366
+ when HTML::Node
367
+ elements = [element]
368
+ when nil
369
+ unless elements = @selected
370
+ raise ArgumentError, "First argument is optional, but must be called from a nested assert_select"
371
+ end
372
+ else
373
+ raise ArgumentError, "Argument is optional, and may be node or array of nodes"
374
+ end
375
+
376
+ fix_content = lambda do |node|
377
+ # Gets around a bug in the Rails 1.1 HTML parser.
378
+ node.content.gsub(/<!\[CDATA\[(.*)(\]\]>)?/m) { CGI.escapeHTML($1) }
379
+ end
380
+
381
+ selected = elements.map do |element|
382
+ text = element.children.select{ |c| not c.tag? }.map{ |c| fix_content[c] }.join
383
+ root = HTML::Document.new(CGI.unescapeHTML("<encoded>#{text}</encoded>")).root
384
+ css_select(root, "encoded:root", &block)[0]
385
+ end
386
+
387
+ begin
388
+ old_selected, @selected = @selected, selected
389
+ assert_select ":root", &block
390
+ ensure
391
+ @selected = old_selected
392
+ end
393
+ end
394
+
395
+ # :call-seq:
396
+ # assert_select_email { }
397
+ #
398
+ # Extracts the body of an email and runs nested assertions on it.
399
+ #
400
+ # You must enable deliveries for this assertion to work, use:
401
+ # ActionMailer::Base.perform_deliveries = true
402
+ #
403
+ # ==== Examples
404
+ #
405
+ # assert_select_email do
406
+ # assert_select "h1", "Email alert"
407
+ # end
408
+ #
409
+ # assert_select_email do
410
+ # items = assert_select "ol>li"
411
+ # items.each do
412
+ # # Work with items here...
413
+ # end
414
+ # end
415
+ #
416
+ def assert_select_email(&block)
417
+ deliveries = ActionMailer::Base.deliveries
418
+ assert !deliveries.empty?, "No e-mail in delivery list"
419
+
420
+ for delivery in deliveries
421
+ for part in delivery.parts
422
+ if part["Content-Type"].to_s =~ /^text\/html\W/
423
+ root = HTML::Document.new(part.body).root
424
+ assert_select root, ":root", &block
425
+ end
426
+ end
427
+ end
428
+ end
429
+
430
+ protected
431
+ unless const_defined?(:JS_STATEMENTS)
432
+ JS_PATTERN_HTML = "\"((\\\\\"|[^\"])*)\""
433
+ JS_ANY_ID = "\"([^\"])*\""
434
+ JS_STATEMENTS = {
435
+ :chained_replace => "\\$\\(#{JS_ANY_ID}\\)\\.replace\\(#{JS_PATTERN_HTML}\\)",
436
+ :chained_replace_html => "\\$\\(#{JS_ANY_ID}\\)\\.update\\(#{JS_PATTERN_HTML}\\)",
437
+ :replace_html => "Element\\.update\\(#{JS_ANY_ID}, #{JS_PATTERN_HTML}\\)",
438
+ :replace => "Element\\.replace\\(#{JS_ANY_ID}, #{JS_PATTERN_HTML}\\)"
439
+ }
440
+ [:remove, :show, :hide, :toggle].each do |action|
441
+ JS_STATEMENTS[action] = "Element\\.#{action}\\(#{JS_ANY_ID}\\)"
442
+ end
443
+ JS_INSERTIONS = ["top", "bottom", "before", "after"]
444
+ JS_INSERTIONS.each do |insertion|
445
+ JS_STATEMENTS["insert_#{insertion}".to_sym] = "Element.insert\\(#{JS_ANY_ID}, \\{ #{insertion}: #{JS_PATTERN_HTML} \\}\\)"
446
+ end
447
+ JS_STATEMENTS[:insert_html] = "Element.insert\\(#{JS_ANY_ID}, \\{ (#{JS_INSERTIONS.join('|')}): #{JS_PATTERN_HTML} \\}\\)"
448
+ JS_STATEMENTS[:any] = Regexp.new("(#{JS_STATEMENTS.values.join('|')})")
449
+ JS_PATTERN_UNICODE_ESCAPED_CHAR = /\\u([0-9a-zA-Z]{4})/
450
+ end
451
+
452
+ # +assert_select+ and +css_select+ call this to obtain the content in the HTML
453
+ # page.
454
+ def response_from_page()
455
+ content_type = @response.content_type
456
+
457
+ if content_type && content_type =~ /text\/javascript/
458
+ body = @response.body.dup
459
+ root = HTML::Node.new(nil)
460
+
461
+ while true
462
+ next if body.sub!(JS_STATEMENTS[:any]) do |match|
463
+ html = unescape_js(match)
464
+ matches = HTML::Document.new(html).root.children.select { |n| n.tag? }
465
+ root.children.concat matches
466
+ ""
467
+ end
468
+ break
469
+ end
470
+
471
+ root
472
+ else
473
+ html_document.root
474
+ end
475
+ end
476
+
477
+ # Unescapes a JS string.
478
+ def unescape_js(js_string)
479
+ # JS encodes double quotes and line breaks.
480
+ unescaped= js_string.gsub('\"', '"')
481
+ unescaped.gsub!(/\\\//, '/')
482
+ unescaped.gsub!('\n', "\n")
483
+ unescaped.gsub!('\076', '>')
484
+ unescaped.gsub!('\074', '<')
485
+ # JS encodes non-ascii characters.
486
+ unescaped.gsub!(JS_PATTERN_UNICODE_ESCAPED_CHAR) {|u| [$1.hex].pack('U*')}
487
+ unescaped
488
+ end
489
+ end
490
+ end
491
+ end