mitio-erubis_rails_helper 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. data/README.rdoc +66 -0
  2. data/lib/erubis_rails_helper.rb +20 -0
  3. data/lib/erubis_rails_helper/erubis/generator.rb +100 -0
  4. data/lib/erubis_rails_helper/template_handlers/erubis.rb +260 -0
  5. data/test/abstract_unit.rb +51 -0
  6. data/test/controller/action_pack_assertions_test.rb +516 -0
  7. data/test/controller/addresses_render_test.rb +37 -0
  8. data/test/controller/assert_select_test.rb +734 -0
  9. data/test/controller/base_test.rb +217 -0
  10. data/test/controller/benchmark_test.rb +32 -0
  11. data/test/controller/caching_test.rb +690 -0
  12. data/test/controller/capture_test.rb +66 -0
  13. data/test/controller/content_type_test.rb +168 -0
  14. data/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  15. data/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  16. data/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  17. data/test/controller/cookie_test.rb +111 -0
  18. data/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
  19. data/test/controller/dispatcher_test.rb +103 -0
  20. data/test/controller/fake_controllers.rb +33 -0
  21. data/test/controller/fake_models.rb +19 -0
  22. data/test/controller/filter_params_test.rb +49 -0
  23. data/test/controller/filters_test.rb +885 -0
  24. data/test/controller/flash_test.rb +142 -0
  25. data/test/controller/header_test.rb +14 -0
  26. data/test/controller/helper_test.rb +224 -0
  27. data/test/controller/html-scanner/cdata_node_test.rb +15 -0
  28. data/test/controller/html-scanner/document_test.rb +148 -0
  29. data/test/controller/html-scanner/node_test.rb +89 -0
  30. data/test/controller/html-scanner/sanitizer_test.rb +273 -0
  31. data/test/controller/html-scanner/tag_node_test.rb +238 -0
  32. data/test/controller/html-scanner/text_node_test.rb +50 -0
  33. data/test/controller/html-scanner/tokenizer_test.rb +131 -0
  34. data/test/controller/http_basic_authentication_test.rb +88 -0
  35. data/test/controller/http_digest_authentication_test.rb +178 -0
  36. data/test/controller/integration_test.rb +417 -0
  37. data/test/controller/layout_test.rb +204 -0
  38. data/test/controller/logging_test.rb +46 -0
  39. data/test/controller/middleware_stack_test.rb +90 -0
  40. data/test/controller/mime_responds_test.rb +536 -0
  41. data/test/controller/mime_type_test.rb +93 -0
  42. data/test/controller/polymorphic_routes_test.rb +293 -0
  43. data/test/controller/rack_test.rb +294 -0
  44. data/test/controller/record_identifier_test.rb +139 -0
  45. data/test/controller/redirect_test.rb +282 -0
  46. data/test/controller/render_test.rb +1752 -0
  47. data/test/controller/request/json_params_parsing_test.rb +45 -0
  48. data/test/controller/request/multipart_params_parsing_test.rb +223 -0
  49. data/test/controller/request/query_string_parsing_test.rb +120 -0
  50. data/test/controller/request/url_encoded_params_parsing_test.rb +184 -0
  51. data/test/controller/request/xml_params_parsing_test.rb +88 -0
  52. data/test/controller/request_forgery_protection_test.rb +246 -0
  53. data/test/controller/request_test.rb +407 -0
  54. data/test/controller/rescue_test.rb +536 -0
  55. data/test/controller/resources_test.rb +1341 -0
  56. data/test/controller/routing_test.rb +2557 -0
  57. data/test/controller/selector_test.rb +628 -0
  58. data/test/controller/send_file_test.rb +161 -0
  59. data/test/controller/session/cookie_store_test.rb +239 -0
  60. data/test/controller/session/mem_cache_store_test.rb +127 -0
  61. data/test/controller/session/test_session_test.rb +58 -0
  62. data/test/controller/test_test.rb +692 -0
  63. data/test/controller/translation_test.rb +26 -0
  64. data/test/controller/url_rewriter_test.rb +359 -0
  65. data/test/controller/verification_test.rb +270 -0
  66. data/test/controller/view_paths_test.rb +141 -0
  67. data/test/controller/webservice_test.rb +260 -0
  68. data/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
  69. data/test/fixtures/company.rb +10 -0
  70. data/test/fixtures/developer.rb +9 -0
  71. data/test/fixtures/helpers/abc_helper.rb +5 -0
  72. data/test/fixtures/helpers/fun/games_helper.rb +3 -0
  73. data/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  74. data/test/fixtures/mascot.rb +3 -0
  75. data/test/fixtures/project.rb +3 -0
  76. data/test/fixtures/reply.rb +7 -0
  77. data/test/fixtures/topic.rb +3 -0
  78. data/test/template/asset_tag_helper_test.rb +713 -0
  79. data/test/template/atom_feed_helper_test.rb +286 -0
  80. data/test/template/benchmark_helper_test.rb +86 -0
  81. data/test/template/compiled_templates_test.rb +203 -0
  82. data/test/template/date_helper_i18n_test.rb +120 -0
  83. data/test/template/date_helper_test.rb +2469 -0
  84. data/test/template/erb_util_test.rb +24 -0
  85. data/test/template/form_helper_test.rb +1176 -0
  86. data/test/template/form_options_helper_test.rb +751 -0
  87. data/test/template/form_tag_helper_test.rb +327 -0
  88. data/test/template/javascript_helper_test.rb +106 -0
  89. data/test/template/number_helper_i18n_test.rb +69 -0
  90. data/test/template/number_helper_test.rb +128 -0
  91. data/test/template/prototype_helper_test.rb +639 -0
  92. data/test/template/record_tag_helper_test.rb +58 -0
  93. data/test/template/render_test.rb +291 -0
  94. data/test/template/sanitize_helper_test.rb +48 -0
  95. data/test/template/scriptaculous_helper_test.rb +90 -0
  96. data/test/template/tag_helper_test.rb +97 -0
  97. data/test/template/test_test.rb +54 -0
  98. data/test/template/text_helper_test.rb +520 -0
  99. data/test/template/translation_helper_test.rb +32 -0
  100. data/test/template/url_helper_test.rb +614 -0
  101. data/test/test_erubis_rails_helper.rb +4 -0
  102. data/test/testing_sandbox.rb +15 -0
  103. data/test/view/test_case_test.rb +8 -0
  104. metadata +298 -0
@@ -0,0 +1,45 @@
1
+ require 'abstract_unit'
2
+
3
+ class JsonParamsParsingTest < ActionController::IntegrationTest
4
+ class TestController < ActionController::Base
5
+ class << self
6
+ attr_accessor :last_request_parameters
7
+ end
8
+
9
+ def parse
10
+ self.class.last_request_parameters = request.request_parameters
11
+ head :ok
12
+ end
13
+ end
14
+
15
+ def teardown
16
+ TestController.last_request_parameters = nil
17
+ end
18
+
19
+ test "parses json params for application json" do
20
+ assert_parses(
21
+ {"person" => {"name" => "David"}},
22
+ "{\"person\": {\"name\": \"David\"}}", { 'CONTENT_TYPE' => 'application/json' }
23
+ )
24
+ end
25
+
26
+ test "parses json params for application jsonrequest" do
27
+ assert_parses(
28
+ {"person" => {"name" => "David"}},
29
+ "{\"person\": {\"name\": \"David\"}}", { 'CONTENT_TYPE' => 'application/jsonrequest' }
30
+ )
31
+ end
32
+
33
+ private
34
+ def assert_parses(expected, actual, headers = {})
35
+ with_routing do |set|
36
+ set.draw do |map|
37
+ map.connect ':action', :controller => "json_params_parsing_test/test"
38
+ end
39
+
40
+ post "/parse", actual, headers
41
+ assert_response :ok
42
+ assert_equal(expected, TestController.last_request_parameters)
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,223 @@
1
+ require 'abstract_unit'
2
+
3
+ class MultipartParamsParsingTest < ActionController::IntegrationTest
4
+ class TestController < ActionController::Base
5
+ class << self
6
+ attr_accessor :last_request_parameters
7
+ end
8
+
9
+ def parse
10
+ self.class.last_request_parameters = request.request_parameters
11
+ head :ok
12
+ end
13
+
14
+ def read
15
+ render :text => "File: #{params[:uploaded_data].read}"
16
+ end
17
+ end
18
+
19
+ FIXTURE_PATH = File.dirname(__FILE__) + '/../../fixtures/multipart'
20
+
21
+ def teardown
22
+ TestController.last_request_parameters = nil
23
+ end
24
+
25
+ test "parses single parameter" do
26
+ assert_equal({ 'foo' => 'bar' }, parse_multipart('single_parameter'))
27
+ end
28
+
29
+ test "parses bracketed parameters" do
30
+ assert_equal({ 'foo' => { 'baz' => 'bar'}}, parse_multipart('bracketed_param'))
31
+ end
32
+
33
+ test "parses text file" do
34
+ params = parse_multipart('text_file')
35
+ assert_equal %w(file foo), params.keys.sort
36
+ assert_equal 'bar', params['foo']
37
+
38
+ file = params['file']
39
+ assert_kind_of Tempfile, file
40
+ assert_equal 'file.txt', file.original_filename
41
+ assert_equal "text/plain", file.content_type
42
+ assert_equal 'contents', file.read
43
+ end
44
+
45
+ test "parses boundary problem file" do
46
+ params = parse_multipart('boundary_problem_file')
47
+ assert_equal %w(file foo), params.keys.sort
48
+
49
+ file = params['file']
50
+ foo = params['foo']
51
+
52
+ assert_kind_of Tempfile, file
53
+
54
+ assert_equal 'file.txt', file.original_filename
55
+ assert_equal "text/plain", file.content_type
56
+
57
+ assert_equal 'bar', foo
58
+ end
59
+
60
+ test "parses large text file" do
61
+ params = parse_multipart('large_text_file')
62
+ assert_equal %w(file foo), params.keys.sort
63
+ assert_equal 'bar', params['foo']
64
+
65
+ file = params['file']
66
+
67
+ assert_kind_of Tempfile, file
68
+
69
+ assert_equal 'file.txt', file.original_filename
70
+ assert_equal "text/plain", file.content_type
71
+ assert ('a' * 20480) == file.read
72
+ end
73
+
74
+ test "parses binary file" do
75
+ params = parse_multipart('binary_file')
76
+ assert_equal %w(file flowers foo), params.keys.sort
77
+ assert_equal 'bar', params['foo']
78
+
79
+ file = params['file']
80
+ assert_kind_of Tempfile, file
81
+ assert_equal 'file.csv', file.original_filename
82
+ assert_nil file.content_type
83
+ assert_equal 'contents', file.read
84
+
85
+ file = params['flowers']
86
+ assert_kind_of Tempfile, file
87
+ assert_equal 'flowers.jpg', file.original_filename
88
+ assert_equal "image/jpeg", file.content_type
89
+ assert_equal 19512, file.size
90
+ end
91
+
92
+ test "parses mixed files" do
93
+ params = parse_multipart('mixed_files')
94
+ assert_equal %w(files foo), params.keys.sort
95
+ assert_equal 'bar', params['foo']
96
+
97
+ # Ruby CGI doesn't handle multipart/mixed for us.
98
+ files = params['files']
99
+ assert_kind_of String, files
100
+ files.force_encoding('ASCII-8BIT') if files.respond_to?(:force_encoding)
101
+ assert_equal 19756, files.size
102
+ end
103
+
104
+ test "does not create tempfile if no file has been selected" do
105
+ params = parse_multipart('none')
106
+ assert_equal %w(submit-name), params.keys.sort
107
+ assert_equal 'Larry', params['submit-name']
108
+ assert_equal nil, params['files']
109
+ end
110
+
111
+ test "parses empty upload file" do
112
+ params = parse_multipart('empty')
113
+ assert_equal %w(files submit-name), params.keys.sort
114
+ assert_equal 'Larry', params['submit-name']
115
+ assert params['files']
116
+ assert_equal "", params['files'].read
117
+ end
118
+
119
+ test "uploads and reads binary file" do
120
+ with_test_routing do
121
+ fixture = FIXTURE_PATH + "/mona_lisa.jpg"
122
+ params = { :uploaded_data => fixture_file_upload(fixture, "image/jpg") }
123
+ post '/read', params
124
+ expected_length = 'File: '.length + File.size(fixture)
125
+ assert_equal expected_length, response.content_length
126
+ end
127
+ end
128
+
129
+ test "uploads and reads file" do
130
+ with_test_routing do
131
+ post '/read', :uploaded_data => fixture_file_upload(FIXTURE_PATH + "/hello.txt", "text/plain")
132
+ assert_equal "File: Hello", response.body
133
+ end
134
+ end
135
+
136
+ # The lint wrapper is used in integration tests
137
+ # instead of a normal StringIO class
138
+ InputWrapper = Rack::Lint::InputWrapper
139
+
140
+ test "parses unwindable stream" do
141
+ InputWrapper.any_instance.stubs(:rewind).raises(Errno::ESPIPE)
142
+ params = parse_multipart('large_text_file')
143
+ assert_equal %w(file foo), params.keys.sort
144
+ assert_equal 'bar', params['foo']
145
+ end
146
+
147
+ test "uploads and reads file with unwindable input" do
148
+ InputWrapper.any_instance.stubs(:rewind).raises(Errno::ESPIPE)
149
+
150
+ with_test_routing do
151
+ post '/read', :uploaded_data => fixture_file_upload(FIXTURE_PATH + "/hello.txt", "text/plain")
152
+ assert_equal "File: Hello", response.body
153
+ end
154
+ end
155
+
156
+ test "passes through rack middleware and uploads file" do
157
+ with_muck_middleware do
158
+ with_test_routing do
159
+ post '/read', :uploaded_data => fixture_file_upload(FIXTURE_PATH + "/hello.txt", "text/plain")
160
+ assert_equal "File: Hello", response.body
161
+ end
162
+ end
163
+ end
164
+
165
+ test "passes through rack middleware and uploads file with unwindable input" do
166
+ InputWrapper.any_instance.stubs(:rewind).raises(Errno::ESPIPE)
167
+
168
+ with_muck_middleware do
169
+ with_test_routing do
170
+ post '/read', :uploaded_data => fixture_file_upload(FIXTURE_PATH + "/hello.txt", "text/plain")
171
+ assert_equal "File: Hello", response.body
172
+ end
173
+ end
174
+ end
175
+
176
+ private
177
+ def fixture(name)
178
+ File.open(File.join(FIXTURE_PATH, name), 'rb') do |file|
179
+ { "rack.input" => file.read,
180
+ "CONTENT_TYPE" => "multipart/form-data; boundary=AaB03x",
181
+ "CONTENT_LENGTH" => file.stat.size.to_s }
182
+ end
183
+ end
184
+
185
+ def parse_multipart(name)
186
+ with_test_routing do
187
+ headers = fixture(name)
188
+ post "/parse", headers.delete("rack.input"), headers
189
+ assert_response :ok
190
+ TestController.last_request_parameters
191
+ end
192
+ end
193
+
194
+ def with_test_routing
195
+ with_routing do |set|
196
+ set.draw do |map|
197
+ map.connect ':action', :controller => "multipart_params_parsing_test/test"
198
+ end
199
+ yield
200
+ end
201
+ end
202
+
203
+ class MuckMiddleware
204
+ def initialize(app)
205
+ @app = app
206
+ end
207
+
208
+ def call(env)
209
+ req = Rack::Request.new(env)
210
+ req.params # Parse params
211
+ @app.call(env)
212
+ end
213
+ end
214
+
215
+ def with_muck_middleware
216
+ original_middleware = ActionController::Dispatcher.middleware
217
+ middleware = original_middleware.dup
218
+ middleware.insert_after ActionController::RewindableInput, MuckMiddleware
219
+ ActionController::Dispatcher.middleware = middleware
220
+ yield
221
+ ActionController::Dispatcher.middleware = original_middleware
222
+ end
223
+ end
@@ -0,0 +1,120 @@
1
+ require 'abstract_unit'
2
+
3
+ class QueryStringParsingTest < ActionController::IntegrationTest
4
+ class TestController < ActionController::Base
5
+ class << self
6
+ attr_accessor :last_query_parameters
7
+ end
8
+
9
+ def parse
10
+ self.class.last_query_parameters = request.query_parameters
11
+ head :ok
12
+ end
13
+ end
14
+
15
+ def teardown
16
+ TestController.last_query_parameters = nil
17
+ end
18
+
19
+ test "query string" do
20
+ assert_parses(
21
+ {"action" => "create_customer", "full_name" => "David Heinemeier Hansson", "customerId" => "1"},
22
+ "action=create_customer&full_name=David%20Heinemeier%20Hansson&customerId=1"
23
+ )
24
+ end
25
+
26
+ test "deep query string" do
27
+ assert_parses(
28
+ {'x' => {'y' => {'z' => '10'}}},
29
+ "x[y][z]=10"
30
+ )
31
+ end
32
+
33
+ test "deep query string with array" do
34
+ assert_parses({'x' => {'y' => {'z' => ['10']}}}, 'x[y][z][]=10')
35
+ assert_parses({'x' => {'y' => {'z' => ['10', '5']}}}, 'x[y][z][]=10&x[y][z][]=5')
36
+ end
37
+
38
+ test "deep query string with array of hash" do
39
+ assert_parses({'x' => {'y' => [{'z' => '10'}]}}, 'x[y][][z]=10')
40
+ assert_parses({'x' => {'y' => [{'z' => '10', 'w' => '10'}]}}, 'x[y][][z]=10&x[y][][w]=10')
41
+ assert_parses({'x' => {'y' => [{'z' => '10', 'v' => {'w' => '10'}}]}}, 'x[y][][z]=10&x[y][][v][w]=10')
42
+ end
43
+
44
+ test "deep query string with array of hashes with one pair" do
45
+ assert_parses({'x' => {'y' => [{'z' => '10'}, {'z' => '20'}]}}, 'x[y][][z]=10&x[y][][z]=20')
46
+ end
47
+
48
+ test "deep query string with array of hashes with multiple pairs" do
49
+ assert_parses(
50
+ {'x' => {'y' => [{'z' => '10', 'w' => 'a'}, {'z' => '20', 'w' => 'b'}]}},
51
+ 'x[y][][z]=10&x[y][][w]=a&x[y][][z]=20&x[y][][w]=b'
52
+ )
53
+ end
54
+
55
+ test "query string with nil" do
56
+ assert_parses(
57
+ { "action" => "create_customer", "full_name" => ''},
58
+ "action=create_customer&full_name="
59
+ )
60
+ end
61
+
62
+ test "query string with array" do
63
+ assert_parses(
64
+ { "action" => "create_customer", "selected" => ["1", "2", "3"]},
65
+ "action=create_customer&selected[]=1&selected[]=2&selected[]=3"
66
+ )
67
+ end
68
+
69
+ test "query string with amps" do
70
+ assert_parses(
71
+ { "action" => "create_customer", "name" => "Don't & Does"},
72
+ "action=create_customer&name=Don%27t+%26+Does"
73
+ )
74
+ end
75
+
76
+ test "query string with many equal" do
77
+ assert_parses(
78
+ { "action" => "create_customer", "full_name" => "abc=def=ghi"},
79
+ "action=create_customer&full_name=abc=def=ghi"
80
+ )
81
+ end
82
+
83
+ test "query string without equal" do
84
+ assert_parses({ "action" => nil }, "action")
85
+ end
86
+
87
+ test "query string with empty key" do
88
+ assert_parses(
89
+ { "action" => "create_customer", "full_name" => "David Heinemeier Hansson" },
90
+ "action=create_customer&full_name=David%20Heinemeier%20Hansson&=Save"
91
+ )
92
+ end
93
+
94
+ test "query string with many ampersands" do
95
+ assert_parses(
96
+ { "action" => "create_customer", "full_name" => "David Heinemeier Hansson"},
97
+ "&action=create_customer&&&full_name=David%20Heinemeier%20Hansson"
98
+ )
99
+ end
100
+
101
+ test "unbalanced query string with array" do
102
+ assert_parses(
103
+ {'location' => ["1", "2"], 'age_group' => ["2"]},
104
+ "location[]=1&location[]=2&age_group[]=2"
105
+ )
106
+ end
107
+
108
+ private
109
+ def assert_parses(expected, actual)
110
+ with_routing do |set|
111
+ set.draw do |map|
112
+ map.connect ':action', :controller => "query_string_parsing_test/test"
113
+ end
114
+
115
+ get "/parse", actual
116
+ assert_response :ok
117
+ assert_equal(expected, TestController.last_query_parameters)
118
+ end
119
+ end
120
+ end
@@ -0,0 +1,184 @@
1
+ require 'abstract_unit'
2
+
3
+ class UrlEncodedParamsParsingTest < ActionController::IntegrationTest
4
+ class TestController < ActionController::Base
5
+ class << self
6
+ attr_accessor :last_request_parameters, :last_request_type
7
+ end
8
+
9
+ def parse
10
+ self.class.last_request_parameters = request.request_parameters
11
+ head :ok
12
+ end
13
+ end
14
+
15
+ def teardown
16
+ TestController.last_request_parameters = nil
17
+ end
18
+
19
+ test "parses unbalanced query string with array" do
20
+ assert_parses(
21
+ {'location' => ["1", "2"], 'age_group' => ["2"]},
22
+ "location[]=1&location[]=2&age_group[]=2"
23
+ )
24
+ end
25
+
26
+ test "parses nested hash" do
27
+ query = [
28
+ "note[viewers][viewer][][type]=User",
29
+ "note[viewers][viewer][][id]=1",
30
+ "note[viewers][viewer][][type]=Group",
31
+ "note[viewers][viewer][][id]=2"
32
+ ].join("&")
33
+
34
+ expected = { "note" => { "viewers"=>{"viewer"=>[{ "id"=>"1", "type"=>"User"}, {"type"=>"Group", "id"=>"2"} ]} } }
35
+ assert_parses(expected, query)
36
+ end
37
+
38
+ test "parses more complex nesting" do
39
+ query = [
40
+ "customers[boston][first][name]=David",
41
+ "customers[boston][first][url]=http://David",
42
+ "customers[boston][second][name]=Allan",
43
+ "customers[boston][second][url]=http://Allan",
44
+ "something_else=blah",
45
+ "something_nil=",
46
+ "something_empty=",
47
+ "products[first]=Apple Computer",
48
+ "products[second]=Pc",
49
+ "=Save"
50
+ ].join("&")
51
+
52
+ expected = {
53
+ "customers" => {
54
+ "boston" => {
55
+ "first" => {
56
+ "name" => "David",
57
+ "url" => "http://David"
58
+ },
59
+ "second" => {
60
+ "name" => "Allan",
61
+ "url" => "http://Allan"
62
+ }
63
+ }
64
+ },
65
+ "something_else" => "blah",
66
+ "something_empty" => "",
67
+ "something_nil" => "",
68
+ "products" => {
69
+ "first" => "Apple Computer",
70
+ "second" => "Pc"
71
+ }
72
+ }
73
+
74
+ assert_parses expected, query
75
+ end
76
+
77
+ test "parses params with array" do
78
+ query = "selected[]=1&selected[]=2&selected[]=3"
79
+ expected = { "selected" => [ "1", "2", "3" ] }
80
+ assert_parses expected, query
81
+ end
82
+
83
+ test "parses params with nil key" do
84
+ query = "=&test2=value1"
85
+ expected = { "test2" => "value1" }
86
+ assert_parses expected, query
87
+ end
88
+
89
+ test "parses params with array prefix and hashes" do
90
+ query = "a[][b][c]=d"
91
+ expected = {"a" => [{"b" => {"c" => "d"}}]}
92
+ assert_parses expected, query
93
+ end
94
+
95
+ test "parses params with complex nesting" do
96
+ query = "a[][b][c][][d][]=e"
97
+ expected = {"a" => [{"b" => {"c" => [{"d" => ["e"]}]}}]}
98
+ assert_parses expected, query
99
+ end
100
+
101
+ test "parses params with file path" do
102
+ query = [
103
+ "customers[boston][first][name]=David",
104
+ "something_else=blah",
105
+ "logo=#{File.expand_path(__FILE__)}"
106
+ ].join("&")
107
+
108
+ expected = {
109
+ "customers" => {
110
+ "boston" => {
111
+ "first" => {
112
+ "name" => "David"
113
+ }
114
+ }
115
+ },
116
+ "something_else" => "blah",
117
+ "logo" => File.expand_path(__FILE__),
118
+ }
119
+
120
+ assert_parses expected, query
121
+ end
122
+
123
+ test "parses params with Safari 2 trailing null character" do
124
+ query = "selected[]=1&selected[]=2&selected[]=3\0"
125
+ expected = { "selected" => [ "1", "2", "3" ] }
126
+ assert_parses expected, query
127
+ end
128
+
129
+ test "passes through rack middleware and parses params" do
130
+ with_muck_middleware do
131
+ assert_parses({ "a" => { "b" => "c" } }, "a[b]=c")
132
+ end
133
+ end
134
+
135
+ # The lint wrapper is used in integration tests
136
+ # instead of a normal StringIO class
137
+ InputWrapper = Rack::Lint::InputWrapper
138
+
139
+ test "passes through rack middleware and parses params with unwindable input" do
140
+ InputWrapper.any_instance.stubs(:rewind).raises(Errno::ESPIPE)
141
+ with_muck_middleware do
142
+ assert_parses({ "a" => { "b" => "c" } }, "a[b]=c")
143
+ end
144
+ end
145
+
146
+ private
147
+ class MuckMiddleware
148
+ def initialize(app)
149
+ @app = app
150
+ end
151
+
152
+ def call(env)
153
+ req = Rack::Request.new(env)
154
+ req.params # Parse params
155
+ @app.call(env)
156
+ end
157
+ end
158
+
159
+ def with_muck_middleware
160
+ original_middleware = ActionController::Dispatcher.middleware
161
+ middleware = original_middleware.dup
162
+ middleware.insert_after ActionController::RewindableInput, MuckMiddleware
163
+ ActionController::Dispatcher.middleware = middleware
164
+ yield
165
+ ActionController::Dispatcher.middleware = original_middleware
166
+ end
167
+
168
+ def with_test_routing
169
+ with_routing do |set|
170
+ set.draw do |map|
171
+ map.connect ':action', :controller => "url_encoded_params_parsing_test/test"
172
+ end
173
+ yield
174
+ end
175
+ end
176
+
177
+ def assert_parses(expected, actual)
178
+ with_test_routing do
179
+ post "/parse", actual
180
+ assert_response :ok
181
+ assert_equal(expected, TestController.last_request_parameters)
182
+ end
183
+ end
184
+ end