mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-05 00:02:38 -04:00
67 lines
2.0 KiB
Ruby
67 lines
2.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Requests
|
|
module Plugins
|
|
module Authentication
|
|
# Basic Auth
|
|
|
|
def test_plugin_basic_authentication
|
|
no_auth_response = HTTPX.get(basic_auth_uri)
|
|
verify_status(no_auth_response, 401)
|
|
verify_header(no_auth_response.headers, "www-authenticate", "Basic realm=\"Fake Realm\"")
|
|
no_auth_response.close
|
|
|
|
session = HTTPX.plugin(:basic_authentication)
|
|
response = session.basic_authentication(user, pass).get(basic_auth_uri)
|
|
verify_status(response, 200)
|
|
body = json_body(response)
|
|
verify_header(body, "authenticated", true)
|
|
verify_header(body, "user", user)
|
|
|
|
invalid_response = session.basic_authentication(user, "fake").get(basic_auth_uri)
|
|
verify_status(invalid_response, 401)
|
|
end
|
|
|
|
# Digest
|
|
|
|
def test_plugin_digest_authentication
|
|
session = HTTPX.plugin(:digest_authentication).with_headers("cookie" => "fake=fake_value")
|
|
response = session.digest_authentication(user, pass).get(digest_auth_uri)
|
|
verify_status(response, 200)
|
|
body = json_body(response)
|
|
verify_header(body, "authenticated", true)
|
|
verify_header(body, "user", user)
|
|
end
|
|
|
|
%w[SHA1 SHA2 SHA256 SHA384 SHA512 RMD160].each do |alg|
|
|
define_method "test_plugin_digest_authentication_#{alg}" do
|
|
session = HTTPX.plugin(:digest_authentication).with_headers("cookie" => "fake=fake_value")
|
|
response = session.digest_authentication(user, pass).get("#{digest_auth_uri}/#{alg}")
|
|
verify_status(response, 200)
|
|
body = json_body(response)
|
|
verify_header(body, "authenticated", true)
|
|
verify_header(body, "user", user)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def basic_auth_uri
|
|
build_uri("/basic-auth/#{user}/#{pass}")
|
|
end
|
|
|
|
def digest_auth_uri(qop = "auth")
|
|
build_uri("/digest-auth/#{qop}/#{user}/#{pass}")
|
|
end
|
|
|
|
def user
|
|
"user"
|
|
end
|
|
|
|
def pass
|
|
"pass"
|
|
end
|
|
end
|
|
end
|
|
end
|