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
|
2017-12-27 05:52:21 +01:00
|
|
|
//! # extern crate actix;
|
|
|
|
//! # extern crate actix_web;
|
2018-01-10 19:12:34 +01:00
|
|
|
//! # use actix::*;
|
|
|
|
//! # use actix_web::*;
|
|
|
|
//! use actix_web::ws;
|
2017-10-08 07:41:02 +02:00
|
|
|
//!
|
2017-11-29 23:12:27 +01:00
|
|
|
//! // do websocket handshake and start actor
|
2018-01-01 02:26:32 +01:00
|
|
|
//! fn ws_index(req: HttpRequest) -> Result<HttpResponse> {
|
2017-12-27 05:52:21 +01:00
|
|
|
//! ws::start(req, Ws)
|
2017-11-29 19:31:24 +01:00
|
|
|
//! }
|
|
|
|
//!
|
2017-12-27 05:52:21 +01:00
|
|
|
//! struct Ws;
|
2017-10-08 07:41:02 +02:00
|
|
|
//!
|
2017-12-27 05:52:21 +01:00
|
|
|
//! impl Actor for Ws {
|
2018-01-10 19:12:34 +01:00
|
|
|
//! type Context = ws::WebsocketContext<Self>;
|
2017-10-08 07:41:02 +02:00
|
|
|
//! }
|
|
|
|
//!
|
2018-02-27 19:09:24 +01:00
|
|
|
//! // Handler for ws::Message messages
|
|
|
|
//! impl StreamHandler<ws::Message, ws::WsError> for Ws {
|
2018-01-05 22:30:21 +01:00
|
|
|
//!
|
2018-01-10 19:12:34 +01:00
|
|
|
//! fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
|
2017-10-08 07:41:02 +02:00
|
|
|
//! match msg {
|
2018-01-10 19:12:34 +01:00
|
|
|
//! ws::Message::Ping(msg) => ctx.pong(&msg),
|
2018-02-10 07:26:48 +01:00
|
|
|
//! ws::Message::Text(text) => ctx.text(text),
|
2018-01-10 19:12:34 +01:00
|
|
|
//! ws::Message::Binary(bin) => ctx.binary(bin),
|
2017-10-08 07:41:02 +02:00
|
|
|
//! _ => (),
|
|
|
|
//! }
|
|
|
|
//! }
|
|
|
|
//! }
|
2017-12-27 05:52:21 +01:00
|
|
|
//! #
|
|
|
|
//! # fn main() {
|
|
|
|
//! # Application::new()
|
|
|
|
//! # .resource("/ws/", |r| r.f(ws_index)) // <- register websocket route
|
|
|
|
//! # .finish();
|
|
|
|
//! # }
|
2017-10-08 07:41:02 +02:00
|
|
|
//! ```
|
2018-02-26 22:58:23 +01:00
|
|
|
use bytes::Bytes;
|
2018-01-10 19:12:34 +01:00
|
|
|
use http::{Method, StatusCode, header};
|
2017-10-08 07:41:02 +02:00
|
|
|
use futures::{Async, Poll, Stream};
|
2018-02-26 22:58:23 +01:00
|
|
|
use byteorder::{ByteOrder, NetworkEndian};
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2018-02-27 19:09:24 +01:00
|
|
|
use actix::{Actor, AsyncContext, StreamHandler};
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2018-01-10 19:12:34 +01:00
|
|
|
use body::Binary;
|
2018-02-26 22:58:23 +01:00
|
|
|
use payload::PayloadHelper;
|
2018-02-27 19:09:24 +01:00
|
|
|
use error::{Error, PayloadError, ResponseError};
|
2018-02-28 00:03:28 +01:00
|
|
|
use httpmessage::HttpMessage;
|
2017-10-15 07:52:38 +02:00
|
|
|
use httprequest::HttpRequest;
|
2018-01-01 02:26:32 +01:00
|
|
|
use httpresponse::{ConnectionType, HttpResponse, HttpResponseBuilder};
|
2018-02-27 19:09:24 +01:00
|
|
|
use httpcodes::{HTTPBadRequest, HTTPMethodNotAllowed};
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2018-01-10 20:13:29 +01:00
|
|
|
mod frame;
|
|
|
|
mod proto;
|
|
|
|
mod context;
|
2018-01-21 01:47:34 +01:00
|
|
|
mod mask;
|
2018-01-29 23:44:25 +01:00
|
|
|
mod client;
|
2018-01-10 20:13:29 +01:00
|
|
|
|
2018-01-29 23:44:25 +01:00
|
|
|
use self::frame::Frame;
|
|
|
|
use self::proto::{hash_key, OpCode};
|
|
|
|
pub use self::proto::CloseCode;
|
|
|
|
pub use self::context::WebsocketContext;
|
2018-02-27 19:09:24 +01:00
|
|
|
pub use self::client::{WsClient, WsClientError,
|
|
|
|
WsClientReader, WsClientWriter, WsClientHandshake};
|
2018-01-28 07:03:03 +01: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
|
|
|
|
|
|
|
|
2018-02-27 19:09:24 +01:00
|
|
|
/// Websocket errors
|
|
|
|
#[derive(Fail, Debug)]
|
|
|
|
pub enum WsError {
|
|
|
|
/// Received an unmasked frame from client
|
|
|
|
#[fail(display="Received an unmasked frame from client")]
|
|
|
|
UnmaskedFrame,
|
|
|
|
/// Received a masked frame from server
|
|
|
|
#[fail(display="Received a masked frame from server")]
|
|
|
|
MaskedFrame,
|
|
|
|
/// Encountered invalid opcode
|
|
|
|
#[fail(display="Invalid opcode: {}", _0)]
|
|
|
|
InvalidOpcode(u8),
|
|
|
|
/// Invalid control frame length
|
|
|
|
#[fail(display="Invalid control frame length: {}", _0)]
|
|
|
|
InvalidLength(usize),
|
|
|
|
/// Bad web socket op code
|
|
|
|
#[fail(display="Bad web socket op code")]
|
|
|
|
BadOpCode,
|
|
|
|
/// A payload reached size limit.
|
|
|
|
#[fail(display="A payload reached size limit.")]
|
|
|
|
Overflow,
|
|
|
|
/// Continuation is not supproted
|
|
|
|
#[fail(display="Continuation is not supproted.")]
|
|
|
|
NoContinuation,
|
|
|
|
/// Bad utf-8 encoding
|
|
|
|
#[fail(display="Bad utf-8 encoding.")]
|
|
|
|
BadEncoding,
|
|
|
|
/// Payload error
|
|
|
|
#[fail(display="Payload error: {}", _0)]
|
|
|
|
Payload(#[cause] PayloadError),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ResponseError for WsError {}
|
|
|
|
|
|
|
|
impl From<PayloadError> for WsError {
|
|
|
|
fn from(err: PayloadError) -> WsError {
|
|
|
|
WsError::Payload(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Websocket handshake errors
|
|
|
|
#[derive(Fail, PartialEq, Debug)]
|
|
|
|
pub enum WsHandshakeError {
|
|
|
|
/// Only get method is allowed
|
|
|
|
#[fail(display="Method not allowed")]
|
|
|
|
GetMethodRequired,
|
|
|
|
/// Upgrade header if not set to websocket
|
|
|
|
#[fail(display="Websocket upgrade is expected")]
|
|
|
|
NoWebsocketUpgrade,
|
|
|
|
/// Connection header is not set to upgrade
|
|
|
|
#[fail(display="Connection upgrade is expected")]
|
|
|
|
NoConnectionUpgrade,
|
|
|
|
/// Websocket version header is not set
|
|
|
|
#[fail(display="Websocket version header is required")]
|
|
|
|
NoVersionHeader,
|
|
|
|
/// Unsupported websocket version
|
|
|
|
#[fail(display="Unsupported version")]
|
|
|
|
UnsupportedVersion,
|
|
|
|
/// Websocket key is not set or wrong
|
|
|
|
#[fail(display="Unknown websocket key")]
|
|
|
|
BadWebsocketKey,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ResponseError for WsHandshakeError {
|
|
|
|
|
|
|
|
fn error_response(&self) -> HttpResponse {
|
|
|
|
match *self {
|
|
|
|
WsHandshakeError::GetMethodRequired => {
|
|
|
|
HTTPMethodNotAllowed
|
|
|
|
.build()
|
|
|
|
.header(header::ALLOW, "GET")
|
|
|
|
.finish()
|
|
|
|
.unwrap()
|
|
|
|
}
|
|
|
|
WsHandshakeError::NoWebsocketUpgrade =>
|
|
|
|
HTTPBadRequest.with_reason("No WebSocket UPGRADE header found"),
|
|
|
|
WsHandshakeError::NoConnectionUpgrade =>
|
|
|
|
HTTPBadRequest.with_reason("No CONNECTION upgrade"),
|
|
|
|
WsHandshakeError::NoVersionHeader =>
|
|
|
|
HTTPBadRequest.with_reason("Websocket version header is required"),
|
|
|
|
WsHandshakeError::UnsupportedVersion =>
|
|
|
|
HTTPBadRequest.with_reason("Unsupported version"),
|
|
|
|
WsHandshakeError::BadWebsocketKey =>
|
|
|
|
HTTPBadRequest.with_reason("Handshake error"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-08 08:59:57 +02:00
|
|
|
/// `WebSocket` Message
|
2018-02-12 21:17:30 +01:00
|
|
|
#[derive(Debug, PartialEq, Message)]
|
2017-10-08 06:48:00 +02:00
|
|
|
pub enum Message {
|
|
|
|
Text(String),
|
2018-01-10 19:12:34 +01:00
|
|
|
Binary(Binary),
|
2017-10-08 06:48:00 +02:00
|
|
|
Ping(String),
|
|
|
|
Pong(String),
|
2018-02-26 22:58:23 +01:00
|
|
|
Close(CloseCode),
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
2017-11-29 23:12:27 +01:00
|
|
|
/// Do websocket handshake and start actor
|
2018-02-25 09:21:45 +01:00
|
|
|
pub fn start<A, S>(req: HttpRequest<S>, actor: A) -> Result<HttpResponse, Error>
|
2018-02-27 19:09:24 +01:00
|
|
|
where A: Actor<Context=WebsocketContext<A, S>> + StreamHandler<Message, WsError>,
|
2017-11-29 19:31:24 +01:00
|
|
|
S: 'static
|
|
|
|
{
|
2018-01-01 02:26:32 +01:00
|
|
|
let mut resp = handshake(&req)?;
|
2018-02-27 00:26:27 +01:00
|
|
|
let stream = WsStream::new(req.clone());
|
2018-01-01 02:26:32 +01:00
|
|
|
|
2018-01-10 19:12:34 +01:00
|
|
|
let mut ctx = WebsocketContext::new(req, actor);
|
2018-02-27 19:09:24 +01:00
|
|
|
ctx.add_stream(stream);
|
2018-01-01 02:26:32 +01:00
|
|
|
|
|
|
|
Ok(resp.body(ctx)?)
|
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.
|
2018-01-01 02:26:32 +01:00
|
|
|
pub fn handshake<S>(req: &HttpRequest<S>) -> Result<HttpResponseBuilder, 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())
|
2018-01-01 02:26:32 +01:00
|
|
|
.take())
|
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
|
2018-02-26 22:58:23 +01:00
|
|
|
pub struct WsStream<S> {
|
|
|
|
rx: PayloadHelper<S>,
|
2017-10-14 01:33:23 +02:00
|
|
|
closed: bool,
|
2018-02-27 19:09:24 +01:00
|
|
|
max_size: usize,
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
|
2018-02-26 22:58:23 +01:00
|
|
|
impl<S> WsStream<S> where S: Stream<Item=Bytes, Error=PayloadError> {
|
2018-02-27 19:09:24 +01:00
|
|
|
/// Create new websocket frames stream
|
2018-02-26 22:58:23 +01:00
|
|
|
pub fn new(stream: S) -> WsStream<S> {
|
|
|
|
WsStream { rx: PayloadHelper::new(stream),
|
2018-02-27 19:09:24 +01:00
|
|
|
closed: false,
|
|
|
|
max_size: 65_536,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set max frame size
|
|
|
|
///
|
|
|
|
/// By default max size is set to 64kb
|
|
|
|
pub fn max_size(mut self, size: usize) -> Self {
|
|
|
|
self.max_size = size;
|
|
|
|
self
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-26 22:58:23 +01:00
|
|
|
impl<S> Stream for WsStream<S> where S: Stream<Item=Bytes, Error=PayloadError> {
|
2017-10-08 06:48:00 +02:00
|
|
|
type Item = Message;
|
2018-02-27 19:09:24 +01:00
|
|
|
type Error = WsError;
|
2017-10-08 06:48:00 +02:00
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
|
2018-02-26 22:58:23 +01:00
|
|
|
if self.closed {
|
|
|
|
return Ok(Async::Ready(None))
|
2017-10-09 05:16:48 +02:00
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2018-02-27 19:09:24 +01:00
|
|
|
match Frame::parse(&mut self.rx, true, self.max_size) {
|
2018-02-26 22:58:23 +01:00
|
|
|
Ok(Async::Ready(Some(frame))) => {
|
2018-02-27 19:09:24 +01:00
|
|
|
let (finished, opcode, payload) = frame.unpack();
|
|
|
|
|
|
|
|
// continuation is not supported
|
|
|
|
if !finished {
|
|
|
|
self.closed = true;
|
|
|
|
return Err(WsError::NoContinuation)
|
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2018-02-26 22:58:23 +01:00
|
|
|
match opcode {
|
|
|
|
OpCode::Continue => unimplemented!(),
|
2018-02-27 19:09:24 +01:00
|
|
|
OpCode::Bad => {
|
|
|
|
self.closed = true;
|
|
|
|
Err(WsError::BadOpCode)
|
|
|
|
}
|
2018-02-26 22:58:23 +01:00
|
|
|
OpCode::Close => {
|
|
|
|
self.closed = true;
|
|
|
|
let code = NetworkEndian::read_uint(payload.as_ref(), 2) as u16;
|
|
|
|
Ok(Async::Ready(
|
|
|
|
Some(Message::Close(CloseCode::from(code)))))
|
|
|
|
},
|
|
|
|
OpCode::Ping =>
|
|
|
|
Ok(Async::Ready(Some(
|
|
|
|
Message::Ping(
|
|
|
|
String::from_utf8_lossy(payload.as_ref()).into())))),
|
|
|
|
OpCode::Pong =>
|
|
|
|
Ok(Async::Ready(Some(
|
|
|
|
Message::Pong(String::from_utf8_lossy(payload.as_ref()).into())))),
|
|
|
|
OpCode::Binary =>
|
|
|
|
Ok(Async::Ready(Some(Message::Binary(payload)))),
|
|
|
|
OpCode::Text => {
|
|
|
|
let tmp = Vec::from(payload.as_ref());
|
|
|
|
match String::from_utf8(tmp) {
|
|
|
|
Ok(s) =>
|
|
|
|
Ok(Async::Ready(Some(Message::Text(s)))),
|
2018-02-27 19:09:24 +01:00
|
|
|
Err(_) => {
|
|
|
|
self.closed = true;
|
|
|
|
Err(WsError::BadEncoding)
|
|
|
|
}
|
2017-10-14 01:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
2018-02-26 22:58:23 +01:00
|
|
|
Ok(Async::Ready(None)) => Ok(Async::Ready(None)),
|
|
|
|
Ok(Async::NotReady) => Ok(Async::NotReady),
|
2018-02-27 19:09:24 +01:00
|
|
|
Err(e) => {
|
2018-02-26 22:58:23 +01:00
|
|
|
self.closed = true;
|
2018-02-27 19:09:24 +01:00
|
|
|
Err(e)
|
2018-02-26 22:58:23 +01:00
|
|
|
}
|
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;
|
|
|
|
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(),
|
2017-12-13 17:00:25 +01:00
|
|
|
Version::HTTP_11, HeaderMap::new(), None);
|
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(),
|
2017-12-13 17:00:25 +01:00
|
|
|
Version::HTTP_11, HeaderMap::new(), None);
|
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(),
|
2017-12-13 17:00:25 +01:00
|
|
|
Version::HTTP_11, headers, None);
|
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(),
|
2017-12-13 17:00:25 +01:00
|
|
|
Version::HTTP_11, headers, None);
|
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(),
|
2017-12-13 17:00:25 +01:00
|
|
|
Version::HTTP_11, headers, None);
|
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(),
|
2017-12-13 17:00:25 +01:00
|
|
|
Version::HTTP_11, headers, None);
|
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(),
|
2017-12-13 17:00:25 +01:00
|
|
|
Version::HTTP_11, headers, None);
|
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(),
|
2017-12-13 17:00:25 +01:00
|
|
|
Version::HTTP_11, headers, None);
|
2018-01-01 02:26:32 +01:00
|
|
|
assert_eq!(StatusCode::SWITCHING_PROTOCOLS,
|
|
|
|
handshake(&req).unwrap().finish().unwrap().status());
|
2017-10-23 02:33:24 +02:00
|
|
|
}
|
2018-02-27 19:09:24 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_wserror_http_response() {
|
|
|
|
let resp: HttpResponse = WsHandshakeError::GetMethodRequired.error_response();
|
|
|
|
assert_eq!(resp.status(), StatusCode::METHOD_NOT_ALLOWED);
|
|
|
|
let resp: HttpResponse = WsHandshakeError::NoWebsocketUpgrade.error_response();
|
|
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
|
|
let resp: HttpResponse = WsHandshakeError::NoConnectionUpgrade.error_response();
|
|
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
|
|
let resp: HttpResponse = WsHandshakeError::NoVersionHeader.error_response();
|
|
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
|
|
let resp: HttpResponse = WsHandshakeError::UnsupportedVersion.error_response();
|
|
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
|
|
let resp: HttpResponse = WsHandshakeError::BadWebsocketKey.error_response();
|
|
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
|
|
}
|
2017-10-23 02:33:24 +02:00
|
|
|
}
|