fixed url parsing when they contain a slash in query string

This commit is contained in:
Michaël Witrant 2009-11-14 18:18:00 +08:00 committed by Reinier Balt
parent 45d9ab60bf
commit c679593d1e
2 changed files with 37 additions and 0 deletions

View file

@ -519,5 +519,17 @@ class TodosControllerTest < ActionController::TestCase
todo.reload()
assert_equal "active", todo.state
end
def test_url_with_slash_in_query_string_are_parsed_correctly
# See http://blog.swivel.com/code/2009/06/rails-auto_link-and-certain-query-strings.html
login_as(:admin_user)
user = users(:admin_user)
todo = user.todos.first
url = "http://example.com/foo?bar=/baz"
todo.notes = "foo #{url} bar"
todo.save!
get :index
assert_select("a[href=#{url}]")
end
end