-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix behavior when connecting wss url without TLS support (#437)
* Fail before connecting if TLS support is not present * Add test for wss:// explicit failure when TLS support is not compiled in * Fix: do not compile irrelevant test when feature is not enabled
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#![cfg(all(feature = "handshake", not(any(feature = "native-tls", feature = "__rustls-tls"))))] | ||
|
||
use tungstenite::{connect, error::UrlError, Error}; | ||
|
||
#[test] | ||
fn wss_url_fails_when_no_tls_support() { | ||
let ws = connect("wss://127.0.0.1/ws"); | ||
eprintln!("{:?}", ws); | ||
assert!(matches!(ws, Err(Error::Url(UrlError::TlsFeatureNotEnabled)))) | ||
} |