Struct aws_smithy_runtime::client::http::test_util::StaticReplayClient
source · pub struct StaticReplayClient { /* private fields */ }client and test-util only.Expand description
Request/response replaying client for use in tests.
This mock client takes a list of request/response pairs named ReplayEvent. While the client
is in use, the responses will be given in the order they appear in the list regardless of what
the actual request was. The actual request is recorded, but otherwise not validated against what
is in the ReplayEvent. Later, after the client is finished being used, the
assert_requests_match method can be used to validate the requests.
This utility is simpler than DVR, and thus, is good for tests that don’t need to record and replay real traffic.
§Example
use aws_smithy_runtime::client::http::test_util::{ReplayEvent, StaticReplayClient};
use aws_smithy_types::body::SdkBody;
let http_client = StaticReplayClient::new(vec![
// Event that covers the first request/response
ReplayEvent::new(
// If `assert_requests_match` is called later, then this request will be matched
// against the actual request that was made.
http_02x::Request::builder().uri("http://localhost:1234/foo").body(SdkBody::empty()).unwrap(),
// This response will be given to the first request regardless of whether it matches the request above.
http_02x::Response::builder().status(200).body(SdkBody::empty()).unwrap(),
),
// The next ReplayEvent covers the second request/response pair...
]);
let config = my_generated_client::Config::builder()
.http_client(http_client.clone())
.build();
let client = my_generated_client::Client::from_conf(config);
// Do stuff with client...
// When you're done, assert the requests match what you expected
http_client.assert_requests_match(&[]);Implementations§
source§impl StaticReplayClient
impl StaticReplayClient
sourcepub fn new(data: Vec<ReplayEvent>) -> Self
pub fn new(data: Vec<ReplayEvent>) -> Self
Creates a new event connector.
sourcepub fn actual_requests(&self) -> impl Iterator<Item = &HttpRequest> + '_
pub fn actual_requests(&self) -> impl Iterator<Item = &HttpRequest> + '_
Returns an iterator over the actual requests that were made.
sourcepub fn assert_requests_match(&self, ignore_headers: &[&str])
pub fn assert_requests_match(&self, ignore_headers: &[&str])
Asserts the expected requests match the actual requests.
The expected requests are given as the connection events when the EventConnector
is created. The EventConnector will record the actual requests and assert that
they match the expected requests.
A list of headers that should be ignored when comparing requests can be passed for cases where headers are non-deterministic or are irrelevant to the test.
sourcepub fn relaxed_requests_match(&self)
pub fn relaxed_requests_match(&self)
Convenience method for assert_requests_match that excludes the pre-defined headers to
be ignored
The pre-defined headers to be ignored:
- x-amz-user-agent
- authorization
Trait Implementations§
source§impl Clone for StaticReplayClient
impl Clone for StaticReplayClient
source§fn clone(&self) -> StaticReplayClient
fn clone(&self) -> StaticReplayClient
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StaticReplayClient
impl Debug for StaticReplayClient
source§impl HttpClient for StaticReplayClient
impl HttpClient for StaticReplayClient
source§fn http_connector(
&self,
_: &HttpConnectorSettings,
_: &RuntimeComponents,
) -> SharedHttpConnector
fn http_connector( &self, _: &HttpConnectorSettings, _: &RuntimeComponents, ) -> SharedHttpConnector
source§fn connector_metadata(&self) -> Option<ConnectorMetadata>
fn connector_metadata(&self) -> Option<ConnectorMetadata>
source§impl HttpConnector for StaticReplayClient
impl HttpConnector for StaticReplayClient
source§fn call(&self, request: HttpRequest) -> HttpConnectorFuture
fn call(&self, request: HttpRequest) -> HttpConnectorFuture
Auto Trait Implementations§
impl Freeze for StaticReplayClient
impl RefUnwindSafe for StaticReplayClient
impl Send for StaticReplayClient
impl Sync for StaticReplayClient
impl Unpin for StaticReplayClient
impl UnwindSafe for StaticReplayClient
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more