2017-10-08 07:41:02 +02:00
|
|
|
//! `WebSocket` support for Actix
|
|
|
|
//!
|
|
|
|
//! To setup a `WebSocket`, first do web socket handshake then on success convert `Payload`
|
|
|
|
//! into a `WsStream` stream and then use `WsWriter` to communicate with the peer.
|
|
|
|
//!
|
|
|
|
//! ## Example
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! extern crate actix;
|
2017-10-14 16:59:35 +02:00
|
|
|
//! extern crate actix_web;
|
2017-10-16 00:10:35 +02:00
|
|
|
//!
|
|
|
|
//! use actix::*;
|
2017-10-14 16:59:35 +02:00
|
|
|
//! use actix_web::*;
|
2017-10-08 07:41:02 +02:00
|
|
|
//!
|
2017-11-29 23:12:27 +01:00
|
|
|
//! // do websocket handshake and start actor
|
2017-11-29 19:31:24 +01:00
|
|
|
//! fn ws_index(req: HttpRequest) -> Result<Reply> {
|
|
|
|
//! ws::start(req, WsRoute)
|
|
|
|
//! }
|
|
|
|
//!
|
2017-10-08 07:41:02 +02:00
|
|
|
//! // WebSocket Route
|
|
|
|
//! struct WsRoute;
|
|
|
|
//!
|
|
|
|
//! impl Actor for WsRoute {
|
|
|
|
//! type Context = HttpContext<Self>;
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! // Define Handler for ws::Message message
|
|
|
|
//! impl StreamHandler<ws::Message> for WsRoute {}
|
|
|
|
//!
|
|
|
|
//! impl Handler<ws::Message> for WsRoute {
|
|
|
|
//! fn handle(&mut self, msg: ws::Message, ctx: &mut HttpContext<Self>)
|
|
|
|
//! -> Response<Self, ws::Message>
|
|
|
|
//! {
|
|
|
|
//! match msg {
|
2017-10-30 03:49:59 +01:00
|
|
|
//! ws::Message::Ping(msg) => ws::WsWriter::pong(ctx, &msg),
|
2017-10-21 06:08:38 +02:00
|
|
|
//! ws::Message::Text(text) => ws::WsWriter::text(ctx, &text),
|
2017-10-08 07:41:02 +02:00
|
|
|
//! ws::Message::Binary(bin) => ws::WsWriter::binary(ctx, bin),
|
|
|
|
//! _ => (),
|
|
|
|
//! }
|
|
|
|
//! Self::empty()
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//!
|
2017-11-29 23:12:27 +01:00
|
|
|
//! fn main() {
|
2017-12-11 23:16:29 +01:00
|
|
|
//! Application::new()
|
2017-12-04 23:07:53 +01:00
|
|
|
//! .resource("/ws/", |r| r.method(Method::GET).f(ws_index)) // <- register websocket route
|
2017-11-29 23:12:27 +01:00
|
|
|
//! .finish();
|
|
|
|
//! }
|
2017-10-08 07:41:02 +02:00
|
|
|
//! ```
|
2017-10-08 06:48:00 +02:00
|
|
|
use std::vec::Vec;
|
2017-10-10 08:07:32 +02:00
|
|
|
use http::{Method, StatusCode, header};
|
2017-10-24 08:39:01 +02:00
|
|
|
use bytes::BytesMut;
|
2017-10-08 07:41:02 +02:00
|
|
|
use futures::{Async, Poll, Stream};
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2017-11-29 19:31:24 +01:00
|
|
|
use actix::{Actor, AsyncContext, ResponseType, StreamHandler};
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2017-10-24 08:25:32 +02:00
|
|
|
use body::Body;
|
2017-10-08 06:48:00 +02:00
|
|
|
use context::HttpContext;
|
2017-12-04 23:53:40 +01:00
|
|
|
use handler::Reply;
|
2017-10-09 05:16:48 +02:00
|
|
|
use payload::Payload;
|
2017-11-29 19:31:24 +01:00
|
|
|
use error::{Error, WsHandshakeError};
|
2017-10-15 07:52:38 +02:00
|
|
|
use httprequest::HttpRequest;
|
2017-10-24 08:25:32 +02:00
|
|
|
use httpresponse::{ConnectionType, HttpResponse};
|
2017-10-08 06:48:00 +02:00
|
|
|
|
|
|
|
use wsframe;
|
2017-10-08 07:41:02 +02:00
|
|
|
use wsproto::*;
|
2017-10-30 03:49:59 +01:00
|
|
|
pub use wsproto::CloseCode;
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2017-11-04 20:33:14 +01:00
|
|
|
const SEC_WEBSOCKET_ACCEPT: &str = "SEC-WEBSOCKET-ACCEPT";
|
|
|
|
const SEC_WEBSOCKET_KEY: &str = "SEC-WEBSOCKET-KEY";
|
|
|
|
const SEC_WEBSOCKET_VERSION: &str = "SEC-WEBSOCKET-VERSION";
|
2017-10-10 08:07:32 +02:00
|
|
|
// const SEC_WEBSOCKET_PROTOCOL: &'static str = "SEC-WEBSOCKET-PROTOCOL";
|
2017-10-08 06:48:00 +02:00
|
|
|
|
|
|
|
|
2017-10-08 08:59:57 +02:00
|
|
|
/// `WebSocket` Message
|
2017-10-08 06:48:00 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Message {
|
|
|
|
Text(String),
|
|
|
|
Binary(Vec<u8>),
|
|
|
|
Ping(String),
|
|
|
|
Pong(String),
|
|
|
|
Close,
|
|
|
|
Closed,
|
|
|
|
Error
|
|
|
|
}
|
|
|
|
|
2017-10-22 00:21:16 +02:00
|
|
|
impl ResponseType for Message {
|
|
|
|
type Item = ();
|
|
|
|
type Error = ();
|
|
|
|
}
|
|
|
|
|
2017-11-29 23:12:27 +01:00
|
|
|
/// Do websocket handshake and start actor
|
2017-11-29 19:31:24 +01:00
|
|
|
pub fn start<A, S>(mut req: HttpRequest<S>, actor: A) -> Result<Reply, Error>
|
|
|
|
where A: Actor<Context=HttpContext<A, S>> + StreamHandler<Message>,
|
|
|
|
S: 'static
|
|
|
|
{
|
|
|
|
let resp = handshake(&req)?;
|
|
|
|
|
2017-12-13 06:32:58 +01:00
|
|
|
if let Some(payload) = req.take_payload() {
|
|
|
|
let stream = WsStream::new(payload);
|
|
|
|
let mut ctx = HttpContext::new(req, actor);
|
|
|
|
ctx.start(resp);
|
|
|
|
ctx.add_stream(stream);
|
|
|
|
Ok(ctx.into())
|
|
|
|
} else {
|
|
|
|
Err(WsHandshakeError::NoPayload.into())
|
|
|
|
}
|
2017-11-29 19:31:24 +01:00
|
|
|
}
|
|
|
|
|
2017-10-08 07:41:02 +02:00
|
|
|
/// Prepare `WebSocket` handshake response.
|
2017-10-08 06:48:00 +02:00
|
|
|
///
|
2017-10-08 08:59:57 +02:00
|
|
|
/// This function returns handshake `HttpResponse`, ready to send to peer.
|
2017-10-08 07:41:02 +02:00
|
|
|
/// It does not perform any IO.
|
2017-10-08 06:48:00 +02:00
|
|
|
///
|
2017-10-08 07:41:02 +02:00
|
|
|
// /// `protocols` is a sequence of known protocols. On successful handshake,
|
|
|
|
// /// the returned response headers contain the first protocol in this list
|
|
|
|
// /// which the server also knows.
|
2017-11-27 06:18:38 +01:00
|
|
|
pub fn handshake<S>(req: &HttpRequest<S>) -> Result<HttpResponse, WsHandshakeError> {
|
2017-10-08 06:48:00 +02:00
|
|
|
// WebSocket accepts only GET
|
|
|
|
if *req.method() != Method::GET {
|
2017-11-16 07:06:28 +01:00
|
|
|
return Err(WsHandshakeError::GetMethodRequired)
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check for "UPGRADE" to websocket header
|
2017-10-10 08:07:32 +02:00
|
|
|
let has_hdr = if let Some(hdr) = req.headers().get(header::UPGRADE) {
|
|
|
|
if let Ok(s) = hdr.to_str() {
|
|
|
|
s.to_lowercase().contains("websocket")
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
};
|
|
|
|
if !has_hdr {
|
2017-11-16 07:06:28 +01:00
|
|
|
return Err(WsHandshakeError::NoWebsocketUpgrade)
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Upgrade connection
|
2017-10-14 09:11:12 +02:00
|
|
|
if !req.upgrade() {
|
2017-11-16 07:06:28 +01:00
|
|
|
return Err(WsHandshakeError::NoConnectionUpgrade)
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// check supported version
|
2017-10-10 08:07:32 +02:00
|
|
|
if !req.headers().contains_key(SEC_WEBSOCKET_VERSION) {
|
2017-11-16 07:06:28 +01:00
|
|
|
return Err(WsHandshakeError::NoVersionHeader)
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
let supported_ver = {
|
2017-10-10 08:07:32 +02:00
|
|
|
if let Some(hdr) = req.headers().get(SEC_WEBSOCKET_VERSION) {
|
|
|
|
hdr == "13" || hdr == "8" || hdr == "7"
|
|
|
|
} else {
|
|
|
|
false
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
if !supported_ver {
|
2017-11-16 07:06:28 +01:00
|
|
|
return Err(WsHandshakeError::UnsupportedVersion)
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// check client handshake for validity
|
2017-10-10 08:07:32 +02:00
|
|
|
if !req.headers().contains_key(SEC_WEBSOCKET_KEY) {
|
2017-11-16 07:06:28 +01:00
|
|
|
return Err(WsHandshakeError::BadWebsocketKey)
|
2017-10-10 08:07:32 +02:00
|
|
|
}
|
|
|
|
let key = {
|
|
|
|
let key = req.headers().get(SEC_WEBSOCKET_KEY).unwrap();
|
|
|
|
hash_key(key.as_ref())
|
2017-10-08 06:48:00 +02:00
|
|
|
};
|
|
|
|
|
2017-11-27 07:31:29 +01:00
|
|
|
Ok(HttpResponse::build(StatusCode::SWITCHING_PROTOCOLS)
|
2017-10-11 01:03:32 +02:00
|
|
|
.connection_type(ConnectionType::Upgrade)
|
|
|
|
.header(header::UPGRADE, "websocket")
|
|
|
|
.header(header::TRANSFER_ENCODING, "chunked")
|
|
|
|
.header(SEC_WEBSOCKET_ACCEPT, key.as_str())
|
2017-11-30 23:42:20 +01:00
|
|
|
.body(Body::UpgradeContext).unwrap()
|
2017-10-08 06:48:00 +02:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-10-08 07:41:02 +02:00
|
|
|
/// Maps `Payload` stream into stream of `ws::Message` items
|
2017-10-08 06:48:00 +02:00
|
|
|
pub struct WsStream {
|
|
|
|
rx: Payload,
|
|
|
|
buf: BytesMut,
|
2017-10-14 01:33:23 +02:00
|
|
|
closed: bool,
|
|
|
|
error_sent: bool,
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl WsStream {
|
2017-12-13 06:32:58 +01:00
|
|
|
pub fn new(payload: Payload) -> WsStream {
|
|
|
|
WsStream { rx: payload,
|
|
|
|
buf: BytesMut::new(),
|
|
|
|
closed: false,
|
|
|
|
error_sent: false }
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Stream for WsStream {
|
|
|
|
type Item = Message;
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
|
|
|
|
let mut done = false;
|
|
|
|
|
2017-10-14 01:33:23 +02:00
|
|
|
if !self.closed {
|
|
|
|
loop {
|
|
|
|
match self.rx.readany() {
|
2017-10-27 08:14:33 +02:00
|
|
|
Ok(Async::Ready(Some(chunk))) => {
|
|
|
|
self.buf.extend(chunk.0)
|
2017-10-14 01:33:23 +02:00
|
|
|
}
|
2017-10-27 08:14:33 +02:00
|
|
|
Ok(Async::Ready(None)) => {
|
|
|
|
done = true;
|
2017-10-14 01:33:23 +02:00
|
|
|
self.closed = true;
|
2017-10-21 08:12:36 +02:00
|
|
|
break;
|
2017-10-14 01:33:23 +02:00
|
|
|
}
|
2017-10-27 08:14:33 +02:00
|
|
|
Ok(Async::NotReady) => break,
|
|
|
|
Err(_) => {
|
2017-10-21 08:12:36 +02:00
|
|
|
self.closed = true;
|
|
|
|
break;
|
2017-10-14 01:33:23 +02:00
|
|
|
}
|
2017-10-09 05:16:48 +02:00
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
2017-10-09 05:16:48 +02:00
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2017-10-09 05:16:48 +02:00
|
|
|
loop {
|
2017-10-08 06:48:00 +02:00
|
|
|
match wsframe::Frame::parse(&mut self.buf) {
|
|
|
|
Ok(Some(frame)) => {
|
2017-10-11 01:03:32 +02:00
|
|
|
trace!("WsFrame {}", frame);
|
2017-10-08 07:41:02 +02:00
|
|
|
let (_finished, opcode, payload) = frame.unpack();
|
2017-10-08 06:48:00 +02:00
|
|
|
|
|
|
|
match opcode {
|
|
|
|
OpCode::Continue => continue,
|
|
|
|
OpCode::Bad =>
|
|
|
|
return Ok(Async::Ready(Some(Message::Error))),
|
2017-10-21 08:12:36 +02:00
|
|
|
OpCode::Close => {
|
|
|
|
self.closed = true;
|
|
|
|
self.error_sent = true;
|
|
|
|
return Ok(Async::Ready(Some(Message::Closed)))
|
|
|
|
},
|
2017-10-08 06:48:00 +02:00
|
|
|
OpCode::Ping =>
|
|
|
|
return Ok(Async::Ready(Some(
|
|
|
|
Message::Ping(String::from_utf8_lossy(&payload).into())))),
|
|
|
|
OpCode::Pong =>
|
|
|
|
return Ok(Async::Ready(Some(
|
|
|
|
Message::Pong(String::from_utf8_lossy(&payload).into())))),
|
|
|
|
OpCode::Binary =>
|
|
|
|
return Ok(Async::Ready(Some(Message::Binary(payload)))),
|
|
|
|
OpCode::Text => {
|
|
|
|
match String::from_utf8(payload) {
|
|
|
|
Ok(s) =>
|
|
|
|
return Ok(Async::Ready(Some(Message::Text(s)))),
|
2017-10-08 07:41:02 +02:00
|
|
|
Err(_) =>
|
2017-10-08 06:48:00 +02:00
|
|
|
return Ok(Async::Ready(Some(Message::Error))),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-14 01:33:23 +02:00
|
|
|
Ok(None) => {
|
|
|
|
if done {
|
|
|
|
return Ok(Async::Ready(None))
|
|
|
|
} else if self.closed {
|
|
|
|
if !self.error_sent {
|
|
|
|
self.error_sent = true;
|
|
|
|
return Ok(Async::Ready(Some(Message::Closed)))
|
|
|
|
} else {
|
|
|
|
return Ok(Async::Ready(None))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return Ok(Async::NotReady)
|
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
},
|
2017-10-14 01:33:23 +02:00
|
|
|
Err(_) => {
|
|
|
|
self.closed = true;
|
|
|
|
self.error_sent = true;
|
|
|
|
return Ok(Async::Ready(Some(Message::Error)));
|
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// `WebSocket` writer
|
|
|
|
pub struct WsWriter;
|
|
|
|
|
|
|
|
impl WsWriter {
|
|
|
|
|
2017-10-08 07:41:02 +02:00
|
|
|
/// Send text frame
|
2017-11-29 19:31:24 +01:00
|
|
|
pub fn text<A, S>(ctx: &mut HttpContext<A, S>, text: &str)
|
|
|
|
where A: Actor<Context=HttpContext<A, S>>
|
2017-10-08 06:48:00 +02:00
|
|
|
{
|
2017-10-21 02:16:17 +02:00
|
|
|
let mut frame = wsframe::Frame::message(Vec::from(text), OpCode::Text, true);
|
2017-10-08 06:48:00 +02:00
|
|
|
let mut buf = Vec::new();
|
|
|
|
frame.format(&mut buf).unwrap();
|
|
|
|
|
2017-10-24 08:39:01 +02:00
|
|
|
ctx.write(buf);
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
2017-10-08 07:41:02 +02:00
|
|
|
/// Send binary frame
|
2017-11-29 19:31:24 +01:00
|
|
|
pub fn binary<A, S>(ctx: &mut HttpContext<A, S>, data: Vec<u8>)
|
|
|
|
where A: Actor<Context=HttpContext<A, S>>
|
2017-10-08 06:48:00 +02:00
|
|
|
{
|
|
|
|
let mut frame = wsframe::Frame::message(data, OpCode::Binary, true);
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
frame.format(&mut buf).unwrap();
|
|
|
|
|
2017-10-24 08:39:01 +02:00
|
|
|
ctx.write(buf);
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
2017-10-08 07:41:02 +02:00
|
|
|
/// Send ping frame
|
2017-11-29 19:31:24 +01:00
|
|
|
pub fn ping<A, S>(ctx: &mut HttpContext<A, S>, message: &str)
|
|
|
|
where A: Actor<Context=HttpContext<A, S>>
|
2017-10-08 06:48:00 +02:00
|
|
|
{
|
2017-10-30 03:49:59 +01:00
|
|
|
let mut frame = wsframe::Frame::message(Vec::from(message), OpCode::Ping, true);
|
2017-10-08 06:48:00 +02:00
|
|
|
let mut buf = Vec::new();
|
|
|
|
frame.format(&mut buf).unwrap();
|
|
|
|
|
2017-10-24 08:39:01 +02:00
|
|
|
ctx.write(buf);
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
2017-10-08 07:41:02 +02:00
|
|
|
/// Send pong frame
|
2017-11-29 19:31:24 +01:00
|
|
|
pub fn pong<A, S>(ctx: &mut HttpContext<A, S>, message: &str)
|
|
|
|
where A: Actor<Context=HttpContext<A, S>>
|
2017-10-08 06:48:00 +02:00
|
|
|
{
|
2017-10-30 03:49:59 +01:00
|
|
|
let mut frame = wsframe::Frame::message(Vec::from(message), OpCode::Pong, true);
|
2017-10-08 06:48:00 +02:00
|
|
|
let mut buf = Vec::new();
|
|
|
|
frame.format(&mut buf).unwrap();
|
|
|
|
|
2017-10-24 08:39:01 +02:00
|
|
|
ctx.write(buf);
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
2017-10-30 03:49:59 +01:00
|
|
|
|
|
|
|
/// Send close frame
|
2017-11-29 19:31:24 +01:00
|
|
|
pub fn close<A, S>(ctx: &mut HttpContext<A, S>, code: CloseCode, reason: &str)
|
|
|
|
where A: Actor<Context=HttpContext<A, S>>
|
2017-10-30 03:49:59 +01:00
|
|
|
{
|
|
|
|
let mut frame = wsframe::Frame::close(code, reason);
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
frame.format(&mut buf).unwrap();
|
|
|
|
ctx.write(buf);
|
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
2017-10-23 02:33:24 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2017-11-16 07:06:28 +01:00
|
|
|
use super::*;
|
2017-12-01 04:01:25 +01:00
|
|
|
use std::str::FromStr;
|
2017-11-27 04:00:57 +01:00
|
|
|
use payload::Payload;
|
2017-12-01 04:01:25 +01:00
|
|
|
use http::{Method, HeaderMap, Version, Uri, header};
|
2017-10-23 02:33:24 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_handshake() {
|
2017-12-01 04:01:25 +01:00
|
|
|
let req = HttpRequest::new(Method::POST, Uri::from_str("/").unwrap(),
|
|
|
|
Version::HTTP_11, HeaderMap::new(), Payload::empty());
|
2017-11-16 07:06:28 +01:00
|
|
|
assert_eq!(WsHandshakeError::GetMethodRequired, handshake(&req).err().unwrap());
|
2017-10-23 02:33:24 +02:00
|
|
|
|
2017-12-01 04:01:25 +01:00
|
|
|
let req = HttpRequest::new(Method::GET, Uri::from_str("/").unwrap(),
|
|
|
|
Version::HTTP_11, HeaderMap::new(), Payload::empty());
|
2017-11-16 07:28:02 +01:00
|
|
|
assert_eq!(WsHandshakeError::NoWebsocketUpgrade, handshake(&req).err().unwrap());
|
2017-10-23 02:33:24 +02:00
|
|
|
|
|
|
|
let mut headers = HeaderMap::new();
|
|
|
|
headers.insert(header::UPGRADE,
|
|
|
|
header::HeaderValue::from_static("test"));
|
2017-12-01 04:01:25 +01:00
|
|
|
let req = HttpRequest::new(Method::GET, Uri::from_str("/").unwrap(),
|
|
|
|
Version::HTTP_11, headers, Payload::empty());
|
2017-11-16 07:28:02 +01:00
|
|
|
assert_eq!(WsHandshakeError::NoWebsocketUpgrade, handshake(&req).err().unwrap());
|
2017-10-23 02:33:24 +02:00
|
|
|
|
|
|
|
let mut headers = HeaderMap::new();
|
|
|
|
headers.insert(header::UPGRADE,
|
|
|
|
header::HeaderValue::from_static("websocket"));
|
2017-12-01 04:01:25 +01:00
|
|
|
let req = HttpRequest::new(Method::GET, Uri::from_str("/").unwrap(),
|
|
|
|
Version::HTTP_11, headers, Payload::empty());
|
2017-11-16 07:28:02 +01:00
|
|
|
assert_eq!(WsHandshakeError::NoConnectionUpgrade, handshake(&req).err().unwrap());
|
2017-10-23 02:33:24 +02:00
|
|
|
|
|
|
|
let mut headers = HeaderMap::new();
|
|
|
|
headers.insert(header::UPGRADE,
|
|
|
|
header::HeaderValue::from_static("websocket"));
|
|
|
|
headers.insert(header::CONNECTION,
|
|
|
|
header::HeaderValue::from_static("upgrade"));
|
2017-12-01 04:01:25 +01:00
|
|
|
let req = HttpRequest::new(Method::GET, Uri::from_str("/").unwrap(),
|
|
|
|
Version::HTTP_11, headers, Payload::empty());
|
2017-11-16 07:28:02 +01:00
|
|
|
assert_eq!(WsHandshakeError::NoVersionHeader, handshake(&req).err().unwrap());
|
2017-10-23 02:33:24 +02:00
|
|
|
|
|
|
|
let mut headers = HeaderMap::new();
|
|
|
|
headers.insert(header::UPGRADE,
|
|
|
|
header::HeaderValue::from_static("websocket"));
|
|
|
|
headers.insert(header::CONNECTION,
|
|
|
|
header::HeaderValue::from_static("upgrade"));
|
|
|
|
headers.insert(SEC_WEBSOCKET_VERSION,
|
|
|
|
header::HeaderValue::from_static("5"));
|
2017-12-01 04:01:25 +01:00
|
|
|
let req = HttpRequest::new(Method::GET, Uri::from_str("/").unwrap(),
|
|
|
|
Version::HTTP_11, headers, Payload::empty());
|
2017-11-16 07:28:02 +01:00
|
|
|
assert_eq!(WsHandshakeError::UnsupportedVersion, handshake(&req).err().unwrap());
|
2017-10-23 02:33:24 +02:00
|
|
|
|
|
|
|
let mut headers = HeaderMap::new();
|
|
|
|
headers.insert(header::UPGRADE,
|
|
|
|
header::HeaderValue::from_static("websocket"));
|
|
|
|
headers.insert(header::CONNECTION,
|
|
|
|
header::HeaderValue::from_static("upgrade"));
|
|
|
|
headers.insert(SEC_WEBSOCKET_VERSION,
|
|
|
|
header::HeaderValue::from_static("13"));
|
2017-12-01 04:01:25 +01:00
|
|
|
let req = HttpRequest::new(Method::GET, Uri::from_str("/").unwrap(),
|
|
|
|
Version::HTTP_11, headers, Payload::empty());
|
2017-11-16 07:28:02 +01:00
|
|
|
assert_eq!(WsHandshakeError::BadWebsocketKey, handshake(&req).err().unwrap());
|
2017-10-23 02:33:24 +02:00
|
|
|
|
|
|
|
let mut headers = HeaderMap::new();
|
|
|
|
headers.insert(header::UPGRADE,
|
|
|
|
header::HeaderValue::from_static("websocket"));
|
|
|
|
headers.insert(header::CONNECTION,
|
|
|
|
header::HeaderValue::from_static("upgrade"));
|
|
|
|
headers.insert(SEC_WEBSOCKET_VERSION,
|
|
|
|
header::HeaderValue::from_static("13"));
|
|
|
|
headers.insert(SEC_WEBSOCKET_KEY,
|
|
|
|
header::HeaderValue::from_static("13"));
|
2017-12-01 04:01:25 +01:00
|
|
|
let req = HttpRequest::new(Method::GET, Uri::from_str("/").unwrap(),
|
|
|
|
Version::HTTP_11, headers, Payload::empty());
|
2017-11-16 07:28:02 +01:00
|
|
|
assert_eq!(StatusCode::SWITCHING_PROTOCOLS, handshake(&req).unwrap().status());
|
2017-10-23 02:33:24 +02:00
|
|
|
}
|
|
|
|
}
|