You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
async-tungstenite/examples/autobahn-client.rs

69 lines
1.7 KiB

use async_tungstenite::{async_std::connect_async, tungstenite::Result};
use futures::{SinkExt, StreamExt};
use log::*;
use url::Url;
const AGENT: &str = "Tungstenite";
async fn get_case_count() -> Result<u32> {
let (mut socket, _) = connect_async(
Url::parse("ws://localhost:9001/getCaseCount").expect("Can't connect to case count URL"),
)
.await?;
let msg = socket.next().await.expect("Can't fetch case count")?;
socket.close(None).await?;
Ok(msg
.into_text()?
.parse::<u32>()
.expect("Can't parse case count"))
}
async fn update_reports() -> Result<()> {
let (mut socket, _) = connect_async(
Url::parse(&format!(
"ws://localhost:9001/updateReports?agent={}",
AGENT
))
.expect("Can't update reports"),
)
.await?;
socket.close(None).await?;
Ok(())
}
async fn run_test(case: u32) -> Result<()> {
info!("Running test case {}", case);
let case_url = Url::parse(&format!(
"ws://localhost:9001/runCase?case={}&agent={}",
case, AGENT
))
.expect("Bad testcase URL");
let (mut ws_stream, _) = connect_async(case_url).await?;
while let Some(msg) = ws_stream.next().await {
let msg = msg?;
if msg.is_text() || msg.is_binary() {
ws_stream.send(msg).await?;
}
}
Ok(())
}
async fn run() {
env_logger::init();
let total = get_case_count().await.expect("Error getting case count");
for case in 1..=total {
if let Err(err) = run_test(case).await {
error!("Testcase failed: {}", err);
}
}
update_reports().await.expect("Error updating reports");
}
fn main() {
async_std::task::block_on(run());
}