X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c18e39cc056b5f689906d3aa9b5227f72b91d552..c03ba5f6b8335456c27019e5c7b8299870ecba9c:/test/test_helper.rb diff --git a/test/test_helper.rb b/test/test_helper.rb index 04837f390..40b2b50bc 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -115,16 +115,10 @@ module ActiveSupport assert_equal a.tags, b.tags, "tags on node #{a.id}" end - ## - # set request headers for HTTP basic authentication - def basic_authorization(user, pass) - @request.env["HTTP_AUTHORIZATION"] = format("Basic %{auth}", :auth => Base64.encode64("#{user}:#{pass}")) - end - ## # return request header for HTTP Basic Authorization def basic_authorization_header(user, pass) - { "Authorization" => format("Basic %{auth}", :auth => Base64.encode64("#{user}:#{pass}")) } + { "Authorization" => format("Basic %s", :auth => Base64.encode64("#{user}:#{pass}")) } end ## @@ -165,17 +159,13 @@ module ActiveSupport end ## - # set request header for HTTP Accept - def http_accept_format(format) - @request.env["HTTP_ACCEPT"] = format + # return request header for HTTP Accept + def accept_format_header(format) + { "Accept" => format } end ## - # set request readers to ask for a particular error format - def error_format(format) - @request.env["HTTP_X_ERROR_FORMAT"] = format - end - + # return request header to ask for a particular error format def error_format_header(f) { "X-Error-Format" => f } end