Merge pull request #4803 from tomhughes/preference-encoding

Fix exception uploading a unicode preference value
This commit is contained in:
Andy Allan 2024-05-16 19:41:45 +01:00 committed by GitHub
commit eece15be74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 23 additions and 1 deletions

View file

@ -66,7 +66,7 @@ module Api
pref.k = params[:preference_key] pref.k = params[:preference_key]
end end
pref.v = request.raw_post.chomp pref.v = request.raw_post.chomp.force_encoding("UTF-8")
pref.save! pref.save!
render :plain => "" render :plain => ""

View file

@ -150,6 +150,19 @@ module Api
put user_preferences_path, :params => "nonsense", :headers => auth_header put user_preferences_path, :params => "nonsense", :headers => auth_header
end end
assert_response :bad_request assert_response :bad_request
# try a put with unicode characters
assert_no_difference "UserPreference.count" do
put user_preferences_path, :params => "<osm><preferences><preference k='kêy' v='néw_vâlué'/><preference k='nêw_kêy' v='vâlué'/></preferences></osm>", :headers => auth_header
end
assert_response :success
assert_equal "text/plain", @response.media_type
assert_equal "", @response.body
assert_equal "néw_vâlué", UserPreference.find([user.id, "kêy"]).v
assert_equal "vâlué", UserPreference.find([user.id, "nêw_kêy"]).v
assert_raises ActiveRecord::RecordNotFound do
UserPreference.find([user.id, "some_key"])
end
end end
## ##
@ -187,6 +200,15 @@ module Api
assert_equal "text/plain", @response.media_type assert_equal "text/plain", @response.media_type
assert_equal "", @response.body assert_equal "", @response.body
assert_equal "newer_value", UserPreference.find([user.id, "new_key"]).v assert_equal "newer_value", UserPreference.find([user.id, "new_key"]).v
# try changing the value of a preference to include unicode characters
assert_difference "UserPreference.count", 1 do
put user_preference_path(:preference_key => "nêw_kêy"), :params => "néwèr_vâlué", :headers => auth_header
end
assert_response :success
assert_equal "text/plain", @response.media_type
assert_equal "", @response.body
assert_equal "néwèr_vâlué", UserPreference.find([user.id, "nêw_kêy"]).v
end end
## ##