mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-08 10:18:50 +01:00
fixed url parsing when they contain a slash in query string
This commit is contained in:
parent
45d9ab60bf
commit
c679593d1e
2 changed files with 37 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue