aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/cgi_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-06-16 06:42:49 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-06-16 06:42:49 +0000
commita895be0259eb2e47fab8de3c8d30c700a304d441 (patch)
tree04eb7c191bb71610f357fd7784e5f8447e2c0355 /actionpack/test/controller/cgi_test.rb
parenta7a1c4e2cdaebf1e00b11ae885992dde5b708f98 (diff)
downloadrails-a895be0259eb2e47fab8de3c8d30c700a304d441.tar.gz
rails-a895be0259eb2e47fab8de3c8d30c700a304d441.tar.bz2
rails-a895be0259eb2e47fab8de3c8d30c700a304d441.zip
Fixed query parser to deal gracefully with equal signs inside keys and values #1345 [gorou]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1441 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller/cgi_test.rb')
-rwxr-xr-xactionpack/test/controller/cgi_test.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/actionpack/test/controller/cgi_test.rb b/actionpack/test/controller/cgi_test.rb
index f0058d2bf8..1749eb0c80 100755
--- a/actionpack/test/controller/cgi_test.rb
+++ b/actionpack/test/controller/cgi_test.rb
@@ -21,6 +21,8 @@ class CGITest < Test::Unit::TestCase
@query_string_with_amps = "action=create_customer&name=Don%27t+%26+Does"
@query_string_with_multiple_of_same_name =
"action=update_order&full_name=Lau%20Taarnskov&products=4&products=2&products=3"
+ @query_string_with_many_equal = "action=create_customer&full_name=abc=def=ghi"
+ @query_string_without_equal = "action"
end
def test_query_string
@@ -51,6 +53,20 @@ class CGITest < Test::Unit::TestCase
)
end
+ def test_query_string_with_many_equal
+ assert_equal(
+ { "action" => "create_customer", "full_name" => "abc=def=ghi"},
+ CGIMethods.parse_query_parameters(@query_string_with_many_equal)
+ )
+ end
+
+ def test_query_string_without_equal
+ assert_equal(
+ { "action" => nil },
+ CGIMethods.parse_query_parameters(@query_string_without_equal)
+ )
+ end
+
def test_parse_params
input = {
"customers[boston][first][name]" => [ "David" ],