kemal/spec/websocket_handler_spec.cr

69 lines
2.5 KiB
Crystal
Raw Normal View History

2015-12-15 21:11:21 +00:00
require "./spec_helper"
2015-12-22 18:51:27 +00:00
describe "Kemal::WebSocketHandler" do
2017-08-20 17:10:38 +00:00
it "doesn't match on wrong route" do
handler = Kemal::WebSocketHandler::INSTANCE
handler.next = Kemal::RouteHandler::INSTANCE
ws "/" { }
2017-08-20 17:10:38 +00:00
headers = HTTP::Headers{
"Upgrade" => "websocket",
"Connection" => "Upgrade",
"Sec-WebSocket-Key" => "dGhlIHNhbXBsZSBub25jZQ==",
}
request = HTTP::Request.new("GET", "/asd", headers)
io = IO::Memory.new
response = HTTP::Server::Response.new(io)
context = HTTP::Server::Context.new(request, response)
expect_raises(Kemal::Exceptions::RouteNotFound) do
handler.call context
end
2017-08-20 17:10:38 +00:00
end
it "matches on given route" do
handler = Kemal::WebSocketHandler::INSTANCE
2021-03-15 05:45:35 +00:00
ws("/", &.send("Match"))
ws("/no_match", &.send("No Match"))
2015-12-15 21:11:21 +00:00
headers = HTTP::Headers{
2018-06-16 15:03:00 +00:00
"Upgrade" => "websocket",
"Connection" => "Upgrade",
"Sec-WebSocket-Key" => "dGhlIHNhbXBsZSBub25jZQ==",
"Sec-WebSocket-Version" => "13",
2015-12-15 21:11:21 +00:00
}
request = HTTP::Request.new("GET", "/", headers)
io_with_context = create_ws_request_and_return_io_and_context(handler, request)[0]
2018-06-16 15:03:00 +00:00
io_with_context.to_s.should eq("HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=\r\n\r\n\x81\u0005Match")
2015-12-15 21:11:21 +00:00
end
it "fetches named url parameters" do
handler = Kemal::WebSocketHandler::INSTANCE
ws "/:id" { |_, c| c.ws_route_lookup.params["id"] }
2015-12-15 21:11:21 +00:00
headers = HTTP::Headers{
2018-06-16 15:03:00 +00:00
"Upgrade" => "websocket",
"Connection" => "Upgrade",
"Sec-WebSocket-Key" => "dGhlIHNhbXBsZSBub25jZQ==",
"Sec-WebSocket-Version" => "13",
2015-12-15 21:11:21 +00:00
}
request = HTTP::Request.new("GET", "/1234", headers)
io_with_context = create_ws_request_and_return_io_and_context(handler, request)[0]
2018-06-16 15:03:00 +00:00
io_with_context.to_s.should eq("HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=\r\n\r\n")
2015-12-15 21:11:21 +00:00
end
it "matches correct verb" do
handler = Kemal::WebSocketHandler::INSTANCE
handler.next = Kemal::RouteHandler::INSTANCE
ws "/" { }
get "/" { "get" }
request = HTTP::Request.new("GET", "/")
io = IO::Memory.new
response = HTTP::Server::Response.new(io)
context = HTTP::Server::Context.new(request, response)
handler.call(context)
response.close
io.rewind
client_response = HTTP::Client::Response.from_io(io, decompress: false)
client_response.body.should eq("get")
end
2015-12-15 21:11:21 +00:00
end