X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3666b674330ec8d14a224932a191d6121c5974e2..da187ad5686e3a6422538de2c8e059b484b372f6:/test/test_helper.rb diff --git a/test/test_helper.rb b/test/test_helper.rb index c19b809ec..1a60c8234 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -118,6 +118,12 @@ module ActiveSupport @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}")) } + end + ## # set request header for HTTP Accept def http_accept_format(format) @@ -130,6 +136,10 @@ module ActiveSupport @request.env["HTTP_X_ERROR_FORMAT"] = format end + def error_format_header(f) + { "X-Error-Format" => f } + end + ## # Used to check that the error header and the forbidden responses are given # when the owner of the changset has their data not marked as public @@ -185,6 +195,11 @@ module ActiveSupport click_on "Login", :match => :first end + def session_for(user) + post login_path, :params => { :username => user.display_name, :password => "test" } + follow_redirect! + end + def xml_for_node(node) doc = OSM::API.new.get_xml_doc doc.root << xml_node_for_node(node)