mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
25 lines
761 B
Crystal
25 lines
761 B
Crystal
require "../spec_helper"
|
|
|
|
describe "Kemal::Middleware::HTTPBasicAuth" do
|
|
it "goes to next handler with correct credentials" do
|
|
auth_handler = Kemal::Middleware::HTTPBasicAuth.new("serdar", "123")
|
|
request = HTTP::Request.new(
|
|
"GET",
|
|
"/",
|
|
headers: HTTP::Headers{"Authorization": "Basic c2VyZGFyOjEyMw=="},
|
|
)
|
|
response = auth_handler.call(request)
|
|
response.status_code.should eq 404
|
|
end
|
|
|
|
it "returns 401 with incorrect credentials" do
|
|
auth_handler = Kemal::Middleware::HTTPBasicAuth.new("serdar", "123")
|
|
request = HTTP::Request.new(
|
|
"GET",
|
|
"/",
|
|
headers: HTTP::Headers{"Authorization": "NotBasic"},
|
|
)
|
|
response = auth_handler.call(request)
|
|
response.status_code.should eq 401
|
|
end
|
|
end
|