mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Fix unsupported web ws handling
This commit is contained in:
parent
c56bd776d2
commit
1c635a6b55
8 changed files with 44 additions and 6 deletions
|
@ -208,7 +208,10 @@ impl From<&str> for ByteString {
|
|||
impl<'a> From<borrow::Cow<'a, str>> for ByteString {
|
||||
#[inline]
|
||||
fn from(value: borrow::Cow<'a, str>) -> Self {
|
||||
Self::from(value.to_owned())
|
||||
match value {
|
||||
borrow::Cow::Owned(s) => Self::from(s),
|
||||
borrow::Cow::Borrowed(s) => Self::from(s),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -340,7 +343,7 @@ mod test {
|
|||
|
||||
#[test]
|
||||
fn test_basics() {
|
||||
let s = ByteString::from_static("test");
|
||||
let mut s = ByteString::from_static("test");
|
||||
s.trimdown();
|
||||
assert_eq!(s, "test");
|
||||
assert_eq!(s, *"test");
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.5.15] - 2022-02-xx
|
||||
|
||||
* web: Fix unsupported web ws handling
|
||||
|
||||
## [0.5.14] - 2022-01-30
|
||||
|
||||
* Update ntex-io to 0.1.7
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex"
|
||||
version = "0.5.14"
|
||||
version = "0.5.15"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Framework for composable network services"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -177,6 +177,7 @@ where
|
|||
let item = if let Some(item) = msg.head().take_io() {
|
||||
item
|
||||
} else {
|
||||
log::trace!("Handler service consumed io, exit");
|
||||
return Poll::Ready(Ok(()));
|
||||
};
|
||||
|
||||
|
|
|
@ -126,7 +126,7 @@ impl WebResponse {
|
|||
impl From<WebResponse> for Response<Body> {
|
||||
fn from(mut res: WebResponse) -> Response<Body> {
|
||||
let head = res.response.head_mut();
|
||||
if head.upgrade() {
|
||||
if res.request.head().upgrade() {
|
||||
head.set_io(res.request.head());
|
||||
}
|
||||
res.response
|
||||
|
|
|
@ -768,6 +768,14 @@ impl<F: Filter> WsConnection<F> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<F> fmt::Debug for WsConnection<F> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
f.debug_struct("WsConnection")
|
||||
.field("response", &self.res)
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
|
|
@ -71,7 +71,7 @@ mod danger {
|
|||
#[ntex::test]
|
||||
async fn test_openssl_string() {
|
||||
use ntex::server::openssl;
|
||||
use ntex_tls::{openssl::PeerCert, types::HttpProtocol};
|
||||
use ntex_tls::{openssl::PeerCert, openssl::PeerCertChain, types::HttpProtocol};
|
||||
use tls_openssl::{
|
||||
ssl::{SslConnector, SslMethod, SslVerifyMode},
|
||||
x509::X509,
|
||||
|
@ -109,6 +109,7 @@ async fn test_openssl_string() {
|
|||
io.query::<PeerCert>().as_ref().unwrap().0.to_der().unwrap(),
|
||||
cert.to_der().unwrap()
|
||||
);
|
||||
assert_eq!(io.query::<PeerCertChain>().as_ref().unwrap().0.len(), 1);
|
||||
let item = io.recv(&BytesCodec).await.unwrap().unwrap();
|
||||
assert_eq!(item, Bytes::from_static(b"test"));
|
||||
}
|
||||
|
|
|
@ -3,7 +3,8 @@ use std::io;
|
|||
use ntex::http::StatusCode;
|
||||
use ntex::service::{fn_factory_with_config, fn_service};
|
||||
use ntex::util::{ByteString, Bytes};
|
||||
use ntex::web::{self, test, ws, App, HttpRequest};
|
||||
use ntex::web::{self, test, ws, App, HttpRequest, HttpResponse};
|
||||
use ntex::ws::error::WsClientError;
|
||||
|
||||
async fn service(msg: ws::Frame) -> Result<Option<ws::Message>, io::Error> {
|
||||
let msg = match msg {
|
||||
|
@ -65,6 +66,26 @@ async fn web_ws() {
|
|||
assert_eq!(item, ws::Frame::Close(Some(ws::CloseCode::Away.into())));
|
||||
}
|
||||
|
||||
#[ntex::test]
|
||||
async fn web_no_ws() {
|
||||
let srv = test::server(|| {
|
||||
App::new()
|
||||
.service(web::resource("/").route(web::to(|| async { HttpResponse::Ok() })))
|
||||
.service(web::resource("/ws_error").route(web::to(|| async {
|
||||
Err::<HttpResponse, _>(io::Error::new(io::ErrorKind::Other, "test"))
|
||||
})))
|
||||
});
|
||||
|
||||
assert!(matches!(
|
||||
srv.ws().await.err().unwrap(),
|
||||
WsClientError::InvalidResponseStatus(StatusCode::OK)
|
||||
));
|
||||
assert!(matches!(
|
||||
srv.ws_at("/ws_error").await.err().unwrap(),
|
||||
WsClientError::InvalidResponseStatus(StatusCode::INTERNAL_SERVER_ERROR)
|
||||
));
|
||||
}
|
||||
|
||||
#[ntex::test]
|
||||
async fn web_ws_client() {
|
||||
let srv = test::server(|| {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue