pub struct TcpServerMocker { /* private fields */ }
Expand description
A TCP server mocker
Can be used to mock a TCP server if the application you want to test uses TCP sockets to connect to a server.
Only 1 client can be connected to the mocked server. When the connection is closed, the mocked server will stop.
Trait Implementations
sourceimpl ServerMocker for TcpServerMocker
impl ServerMocker for TcpServerMocker
TcpServerMocker implementation
Example
use std::io::Write;
use std::net::TcpStream;
use socket_server_mocker::server_mocker::ServerMocker;
use socket_server_mocker::server_mocker_instruction::{ServerMockerInstructionsList, ServerMockerInstruction};
use socket_server_mocker::tcp_server_mocker::TcpServerMocker;
let tcp_server_mocker = TcpServerMocker::new(1234);
let mut client = TcpStream::connect("127.0.0.1:1234").unwrap();
tcp_server_mocker.add_mock_instructions_list(ServerMockerInstructionsList::new_with_instructions([
ServerMockerInstruction::ReceiveMessage,
ServerMockerInstruction::StopExchange,
].as_slice()));
client.write_all(&[1, 2, 3]).unwrap();
let mock_server_received_message = tcp_server_mocker.pop_received_message();
assert_eq!(Some(vec![1, 2, 3]), mock_server_received_message);
sourcefn listening_port(&self) -> u16
fn listening_port(&self) -> u16
Returns the port on which the mock server is listening Read more
sourcefn add_mock_instructions_list(
&self,
instructions_list: ServerMockerInstructionsList
)
fn add_mock_instructions_list(
&self,
instructions_list: ServerMockerInstructionsList
)
Adds a list of instructions to the server mocker Read more
sourcefn pop_received_message(&self) -> Option<BinaryMessage>
fn pop_received_message(&self) -> Option<BinaryMessage>
Return first message received by the mock server on the messages queue Read more
sourceconst DEFAULT_NET_TIMEOUT_MS: u64 = 100u64
const DEFAULT_NET_TIMEOUT_MS: u64 = 100u64
Default timeout in milliseconds for the server to wait for a message from the client.
sourceconst DEFAULT_THREAD_RECEIVER_TIMEOUT_MS: u64 = 100u64
const DEFAULT_THREAD_RECEIVER_TIMEOUT_MS: u64 = 100u64
Timeout if no more instruction is available and ServerMockerInstruction::StopExchange hasn’t been sent
sourcefn add_mock_instructions(&self, instructions: &[ServerMockerInstruction])
fn add_mock_instructions(&self, instructions: &[ServerMockerInstruction])
Adds a slice of instructions to the server mocker Read more
Auto Trait Implementations
impl !RefUnwindSafe for TcpServerMocker
impl Send for TcpServerMocker
impl !Sync for TcpServerMocker
impl Unpin for TcpServerMocker
impl !UnwindSafe for TcpServerMocker
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more