#[macro_use]
mod utils;
#[cfg(test)]
mod ftx_spot {
use crypto_ws_client::{FtxWSClient, WSClient};
#[tokio::test(flavor = "multi_thread")]
async fn subscribe() {
gen_test_code!(FtxWSClient, subscribe, &[("trades".to_string(), "BTC/USD".to_string())]);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_raw_json() {
gen_test_code!(
FtxWSClient,
send,
&[r#"{"op":"subscribe","channel":"trades","market":"BTC/USD"}"#.to_string()]
);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_trade() {
gen_test_code!(FtxWSClient, subscribe_trade, &["BTC/USD".to_string()]);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_bbo() {
gen_test_code!(FtxWSClient, subscribe_bbo, &["BTC/USD".to_string()]);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_orderbook() {
gen_test_code!(FtxWSClient, subscribe_orderbook, &["BTC/USD".to_string()]);
}
}
#[cfg(test)]
mod ftx_linear_swap {
use crypto_ws_client::{FtxWSClient, WSClient};
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_trade() {
gen_test_code!(FtxWSClient, subscribe_trade, &["BTC-PERP".to_string()]);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_bbo() {
gen_test_code!(FtxWSClient, subscribe_bbo, &["BTC-PERP".to_string()]);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_orderbook() {
gen_test_code!(
FtxWSClient,
subscribe_orderbook,
&["BTC-PERP".to_string(), "ETH-PERP".to_string()]
);
}
}
#[cfg(test)]
mod ftx_linear_future {
use crypto_ws_client::{FtxWSClient, WSClient};
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_trade() {
gen_test_code!(
FtxWSClient,
subscribe_trade,
&["BTC-1230".to_string(), "ETH-1230".to_string()]
);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_bbo() {
gen_test_code!(
FtxWSClient,
subscribe_bbo,
&["BTC-1230".to_string(), "ETH-1230".to_string()]
);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_orderbook() {
gen_test_code!(FtxWSClient, subscribe_orderbook, &["BTC-1230".to_string()]);
}
}
#[cfg(test)]
mod ftx_move {
use crypto_ws_client::{FtxWSClient, WSClient};
#[test]
#[ignore]
fn subscribe_trade() {
gen_test_code!(FtxWSClient, subscribe_trade, &["BTC-MOVE-2022Q4".to_string()]);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_bbo() {
gen_test_code!(FtxWSClient, subscribe_bbo, &["BTC-MOVE-2022Q4".to_string()]);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_orderbook() {
gen_test_code!(FtxWSClient, subscribe_orderbook, &["BTC-MOVE-2022Q4".to_string()]);
}
}
#[cfg(test)]
mod ftx_bvol {
use crypto_ws_client::{FtxWSClient, WSClient};
#[test]
#[ignore]
fn subscribe_trade() {
gen_test_code!(FtxWSClient, subscribe_trade, &["BVOL/USD".to_string()]);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_bbo() {
gen_test_code!(FtxWSClient, subscribe_bbo, &["BVOL/USD".to_string()]);
}
#[tokio::test(flavor = "multi_thread")]
async fn subscribe_orderbook() {
gen_test_code!(FtxWSClient, subscribe_orderbook, &["BVOL/USD".to_string()]);
}
}