2015-10-28 18:30:27 +00:00
|
|
|
require "./spec_helper"
|
|
|
|
|
|
|
|
describe "ParamParser" do
|
2015-10-28 18:38:24 +00:00
|
|
|
it "parses query params" do
|
|
|
|
route = Route.new "POST", "/" do |env|
|
2016-03-06 11:22:24 +00:00
|
|
|
hasan = env.params.query["hasan"]
|
2015-10-31 06:53:49 +00:00
|
|
|
"Hello #{hasan}"
|
|
|
|
end
|
2015-10-28 18:38:24 +00:00
|
|
|
request = HTTP::Request.new("POST", "/?hasan=cemal")
|
2016-03-06 11:22:24 +00:00
|
|
|
query_params = Kemal::ParamParser.new(request).params.query
|
|
|
|
query_params["hasan"].should eq "cemal"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "parses url params" do
|
|
|
|
kemal = Kemal::RouteHandler::INSTANCE
|
|
|
|
kemal.add_route "POST", "/hello/:hasan" do |env|
|
|
|
|
"hello #{env.params.url["hasan"]}"
|
|
|
|
end
|
|
|
|
request = HTTP::Request.new("POST", "/hello/cemal")
|
|
|
|
# Radix tree MUST be run to parse url params.
|
|
|
|
io_with_context = create_request_and_return_io(kemal, request)
|
|
|
|
url_params = Kemal::ParamParser.new(request).params.url
|
|
|
|
url_params["hasan"].should eq "cemal"
|
2015-10-28 18:38:24 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "parses request body" do
|
|
|
|
route = Route.new "POST", "/" do |env|
|
2016-03-06 11:22:24 +00:00
|
|
|
name = env.params.query["name"]
|
|
|
|
age = env.params.query["age"]
|
|
|
|
hasan = env.params.body["hasan"]
|
2015-10-31 06:53:49 +00:00
|
|
|
"Hello #{name} #{hasan} #{age}"
|
|
|
|
end
|
2015-11-05 10:38:06 +00:00
|
|
|
|
|
|
|
request = HTTP::Request.new(
|
|
|
|
"POST",
|
|
|
|
"/?hasan=cemal",
|
|
|
|
body: "name=serdar&age=99",
|
|
|
|
headers: HTTP::Headers{"Content-Type": "application/x-www-form-urlencoded"},
|
|
|
|
)
|
|
|
|
|
2016-03-06 11:22:24 +00:00
|
|
|
query_params = Kemal::ParamParser.new(request).params.query
|
|
|
|
query_params.should eq({"hasan" => "cemal"})
|
|
|
|
|
|
|
|
body_params = Kemal::ParamParser.new(request).params.body
|
|
|
|
body_params.should eq({"name" => "serdar", "age" => "99"})
|
2015-10-28 18:30:27 +00:00
|
|
|
end
|
2015-11-05 10:38:06 +00:00
|
|
|
|
2015-11-10 00:35:28 +00:00
|
|
|
context "when content type is application/json" do
|
|
|
|
it "parses request body" do
|
|
|
|
route = Route.new "POST", "/" { }
|
2015-11-06 18:24:38 +00:00
|
|
|
|
2015-11-10 00:35:28 +00:00
|
|
|
request = HTTP::Request.new(
|
|
|
|
"POST",
|
|
|
|
"/",
|
|
|
|
body: "{\"name\": \"Serdar\"}",
|
|
|
|
headers: HTTP::Headers{"Content-Type": "application/json"},
|
|
|
|
)
|
2015-11-06 18:24:38 +00:00
|
|
|
|
2016-03-06 11:22:24 +00:00
|
|
|
json_params = Kemal::ParamParser.new(request).params.json
|
|
|
|
json_params.should eq({"name": "Serdar"})
|
2015-11-10 00:35:28 +00:00
|
|
|
end
|
|
|
|
|
2015-11-10 11:30:16 +00:00
|
|
|
it "parses request body for array" do
|
|
|
|
route = Route.new "POST", "/" { }
|
|
|
|
|
|
|
|
request = HTTP::Request.new(
|
|
|
|
"POST",
|
|
|
|
"/",
|
|
|
|
body: "[1]",
|
|
|
|
headers: HTTP::Headers{"Content-Type": "application/json"},
|
|
|
|
)
|
|
|
|
|
2016-03-06 11:22:24 +00:00
|
|
|
json_params = Kemal::ParamParser.new(request).params.json
|
|
|
|
json_params.should eq({"_json": [1]})
|
2015-11-10 11:30:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "parses request body and query params" do
|
|
|
|
route = Route.new "POST", "/" { }
|
|
|
|
|
|
|
|
request = HTTP::Request.new(
|
|
|
|
"POST",
|
|
|
|
"/?foo=bar",
|
|
|
|
body: "[1]",
|
|
|
|
headers: HTTP::Headers{"Content-Type": "application/json"},
|
|
|
|
)
|
|
|
|
|
2016-03-06 11:22:24 +00:00
|
|
|
query_params = Kemal::ParamParser.new(request).params.query
|
|
|
|
query_params.should eq({"foo": "bar"})
|
|
|
|
|
|
|
|
json_params = Kemal::ParamParser.new(request).params.json
|
|
|
|
json_params.should eq({"_json": [1]})
|
2015-11-10 11:30:16 +00:00
|
|
|
end
|
|
|
|
|
2015-11-10 00:35:28 +00:00
|
|
|
it "handles no request body" do
|
|
|
|
route = Route.new "GET", "/" { }
|
|
|
|
|
|
|
|
request = HTTP::Request.new(
|
|
|
|
"GET",
|
|
|
|
"/",
|
|
|
|
headers: HTTP::Headers{"Content-Type": "application/json"},
|
|
|
|
)
|
|
|
|
|
2016-03-06 11:22:24 +00:00
|
|
|
url_params = Kemal::ParamParser.new(request).params.url
|
|
|
|
url_params.should eq({} of String => String)
|
|
|
|
|
|
|
|
query_params = Kemal::ParamParser.new(request).params.query
|
|
|
|
query_params.should eq({} of String => String)
|
|
|
|
|
|
|
|
body_params = Kemal::ParamParser.new(request).params.body
|
|
|
|
body_params.should eq({} of String => String)
|
|
|
|
|
|
|
|
json_params = Kemal::ParamParser.new(request).params.json
|
|
|
|
json_params.should eq({} of String => AllParamTypes)
|
2015-11-10 00:35:28 +00:00
|
|
|
end
|
2015-11-06 18:24:38 +00:00
|
|
|
end
|
|
|
|
|
2015-11-05 10:38:06 +00:00
|
|
|
context "when content type is incorrect" do
|
|
|
|
it "does not parse request body" do
|
|
|
|
route = Route.new "POST", "/" do |env|
|
2016-03-06 11:22:24 +00:00
|
|
|
name = env.params.body["name"]
|
|
|
|
age = env.params.body["age"]
|
|
|
|
hasan = env.params.query["hasan"]
|
2015-11-05 10:38:06 +00:00
|
|
|
"Hello #{name} #{hasan} #{age}"
|
|
|
|
end
|
|
|
|
|
|
|
|
request = HTTP::Request.new(
|
|
|
|
"POST",
|
|
|
|
"/?hasan=cemal",
|
|
|
|
body: "name=serdar&age=99",
|
|
|
|
headers: HTTP::Headers{"Content-Type": "text/plain"},
|
|
|
|
)
|
|
|
|
|
2016-03-06 11:22:24 +00:00
|
|
|
query_params = Kemal::ParamParser.new(request).params.query
|
|
|
|
query_params.should eq({"hasan" => "cemal"})
|
|
|
|
|
|
|
|
body_params = Kemal::ParamParser.new(request).params.body
|
|
|
|
body_params.should eq({} of String => String)
|
2015-11-05 10:38:06 +00:00
|
|
|
end
|
|
|
|
end
|
2015-10-28 18:30:27 +00:00
|
|
|
end
|