kemal/spec/kemal_handler_spec.cr

44 lines
1.3 KiB
Crystal
Raw Normal View History

require "./spec_helper"
2015-10-23 18:33:26 +00:00
describe "Kemal::Handler" do
it "routes" do
2015-10-23 18:33:26 +00:00
kemal = Kemal::Handler.new
kemal.add_route "GET", "/" do
"hello"
end
request = HTTP::Request.new("GET", "/")
2015-10-23 18:33:26 +00:00
response = kemal.call(request)
response.body.should eq("hello")
end
2015-05-29 21:21:15 +00:00
it "routes request with query string" do
2015-10-23 18:33:26 +00:00
kemal = Kemal::Handler.new
2015-10-29 09:49:58 +00:00
kemal.add_route "GET", "/" do |env|
"hello #{env.params["message"]}"
2015-05-29 21:21:15 +00:00
end
request = HTTP::Request.new("GET", "/?message=world")
2015-10-23 18:33:26 +00:00
response = kemal.call(request)
2015-05-29 21:21:15 +00:00
response.body.should eq("hello world")
end
2015-10-26 18:49:28 +00:00
it "routes request with multiple query strings" do
kemal = Kemal::Handler.new
2015-10-29 09:49:58 +00:00
kemal.add_route "GET", "/" do |env|
"hello #{env.params["message"]} time #{env.params["time"]}"
2015-10-26 18:49:28 +00:00
end
request = HTTP::Request.new("GET", "/?message=world&time=now")
response = kemal.call(request)
response.body.should eq("hello world time now")
end
it "route parameter has more precedence than query string arguments" do
2015-10-23 18:33:26 +00:00
kemal = Kemal::Handler.new
2015-10-29 09:49:58 +00:00
kemal.add_route "GET", "/:message" do |env|
"hello #{env.params["message"]}"
end
request = HTTP::Request.new("GET", "/world?message=coco")
2015-10-23 18:33:26 +00:00
response = kemal.call(request)
response.body.should eq("hello world")
end
end