kemal/spec/route_handler_spec.cr

192 lines
7.0 KiB
Crystal
Raw Normal View History

require "./spec_helper"
2016-02-03 20:08:54 +00:00
describe "Kemal::RouteHandler" do
it "routes" do
kemal = Kemal::RouteHandler::INSTANCE
2015-10-23 18:33:26 +00:00
kemal.add_route "GET", "/" do
"hello"
end
request = HTTP::Request.new("GET", "/")
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("hello")
end
2015-05-29 21:21:15 +00:00
it "routes request with query string" do
kemal = Kemal::RouteHandler::INSTANCE
2015-10-29 09:49:58 +00:00
kemal.add_route "GET", "/" do |env|
"hello #{env.params.query["message"]}"
2015-05-29 21:21:15 +00:00
end
request = HTTP::Request.new("GET", "/?message=world")
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("hello world")
2015-05-29 21:21:15 +00:00
end
2015-10-26 18:49:28 +00:00
it "routes request with multiple query strings" do
kemal = Kemal::RouteHandler::INSTANCE
2015-10-29 09:49:58 +00:00
kemal.add_route "GET", "/" do |env|
"hello #{env.params.query["message"]} time #{env.params.query["time"]}"
2015-10-26 18:49:28 +00:00
end
request = HTTP::Request.new("GET", "/?message=world&time=now")
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("hello world time now")
2015-10-26 18:49:28 +00:00
end
it "route parameter has more precedence than query string arguments" do
kemal = Kemal::RouteHandler::INSTANCE
2015-10-29 09:49:58 +00:00
kemal.add_route "GET", "/:message" do |env|
"hello #{env.params.url["message"]}"
end
request = HTTP::Request.new("GET", "/world?message=coco")
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("hello world")
end
2015-11-06 18:24:38 +00:00
it "parses simple JSON body" do
kemal = Kemal::RouteHandler::INSTANCE
2015-11-06 18:24:38 +00:00
kemal.add_route "POST", "/" do |env|
name = env.params.json["name"]
age = env.params.json["age"]
2015-11-06 18:24:38 +00:00
"Hello #{name} Age #{age}"
end
json_payload = {"name": "Serdar", "age": 26}
request = HTTP::Request.new(
"POST",
"/",
body: json_payload.to_json,
headers: HTTP::Headers{"Content-Type": "application/json"},
)
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("Hello Serdar Age 26")
2015-11-06 18:24:38 +00:00
end
it "parses JSON with string array" do
kemal = Kemal::RouteHandler::INSTANCE
2015-11-06 18:24:38 +00:00
kemal.add_route "POST", "/" do |env|
skills = env.params.json["skills"] as Array
2015-11-06 18:24:38 +00:00
"Skills #{skills.each.join(',')}"
end
json_payload = {"skills": ["ruby", "crystal"]}
request = HTTP::Request.new(
"POST",
"/",
body: json_payload.to_json,
headers: HTTP::Headers{"Content-Type": "application/json"},
)
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("Skills ruby,crystal")
2015-11-06 18:24:38 +00:00
end
it "parses JSON with json object array" do
kemal = Kemal::RouteHandler::INSTANCE
2015-11-06 18:24:38 +00:00
kemal.add_route "POST", "/" do |env|
skills = env.params.json["skills"] as Array
2015-11-06 18:24:38 +00:00
skills_from_languages = skills.map do |skill|
skill = skill as Hash
skill["language"]
end
"Skills #{skills_from_languages.each.join(',')}"
end
json_payload = {"skills": [{"language": "ruby"}, {"language": "crystal"}]}
request = HTTP::Request.new(
"POST",
"/",
body: json_payload.to_json,
headers: HTTP::Headers{"Content-Type": "application/json"},
)
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("Skills ruby,crystal")
2015-11-06 18:24:38 +00:00
end
2015-11-27 20:45:13 +00:00
it "checks for _method param in POST request to simulate PUT" do
kemal = Kemal::RouteHandler::INSTANCE
2015-12-06 15:55:21 +00:00
kemal.add_route "PUT", "/" do |env|
"Hello World from PUT"
end
request = HTTP::Request.new(
"POST",
"/",
body: "_method=PUT",
headers: HTTP::Headers{"Content-Type": "application/x-www-form-urlencoded"}
)
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("Hello World from PUT")
end
it "checks for _method param in POST request to simulate PATCH" do
kemal = Kemal::RouteHandler::INSTANCE
2015-12-06 15:55:21 +00:00
kemal.add_route "PATCH", "/" do |env|
"Hello World from PATCH"
end
request = HTTP::Request.new(
"POST",
"/",
body: "_method=PATCH",
headers: HTTP::Headers{"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}
)
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("Hello World from PATCH")
end
it "checks for _method param in POST request to simulate DELETE" do
kemal = Kemal::RouteHandler::INSTANCE
2015-12-06 15:55:21 +00:00
kemal.add_route "DELETE", "/" do |env|
"Hello World from DELETE"
end
json_payload = {"_method": "DELETE"}
request = HTTP::Request.new(
"POST",
"/",
body: "_method=DELETE",
headers: HTTP::Headers{"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}
)
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.body.should eq("Hello World from DELETE")
end
it "can process HTTP HEAD requests for defined GET routes" do
kemal = Kemal::RouteHandler::INSTANCE
kemal.add_route "GET", "/" do |env|
"Hello World from GET"
end
request = HTTP::Request.new("HEAD", "/")
2016-01-24 10:22:25 +00:00
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.status_code.should eq(200)
end
2016-02-14 10:43:25 +00:00
# Removed until there is a way to test multiple middlewares
2016-02-14 13:15:28 +00:00
# it "can't process HTTP HEAD requests for undefined GET routes" do
# kemal = Kemal::RouteHandler::INSTANCE
2016-02-14 10:43:25 +00:00
# request = HTTP::Request.new("HEAD", "/")
# io_with_context = create_request_and_return_io(kemal, request)
# client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
# client_response.status_code.should eq(404)
2016-02-14 13:15:28 +00:00
# end
2016-01-24 10:52:41 +00:00
it "redirects user to provided url" do
kemal = Kemal::RouteHandler::INSTANCE
2016-01-24 10:52:41 +00:00
kemal.add_route "GET", "/" do |env|
env.redirect "/login"
end
request = HTTP::Request.new("GET", "/")
io_with_context = create_request_and_return_io(kemal, request)
client_response = HTTP::Client::Response.from_io(io_with_context, decompress: false)
client_response.status_code.should eq(302)
2016-01-24 10:52:41 +00:00
client_response.headers.has_key?("Location").should eq(true)
end
end