You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/tests/stress_tests.rs

32 lines
583 B
Rust

use assert_fs::prelude::*;
use predicates::prelude::*;
use rstest::*;
mod common;
use common::fixtures::*;
#[rstest]
#[test_log::test]
fn should_handle_large_volume_of_requests(ctx: DistantManagerCtx) {
todo!();
}
#[rstest]
#[test_log::test]
fn should_handle_wide_spread_of_clients(ctx: DistantManagerCtx) {
todo!();
}
#[rstest]
#[test_log::test]
fn should_handle_abrupt_client_disconnects(ctx: DistantManagerCtx) {
todo!();
}
#[rstest]
#[test_log::test]
fn should_handle_badly_killing_client_shell_with_interactive_process(ctx: DistantManagerCtx) {
todo!();
}