Publicize Connect trait access (#422)

This commit is contained in:
jamescarterbell 2024-09-18 11:18:49 -04:00 committed by GitHub
parent 69f150e3f6
commit 16bc0d61a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 24 additions and 13 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex" name = "ntex"
version = "2.4.0" version = "2.4.1"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services" description = "Framework for composable network services"
readme = "README.md" readme = "README.md"

View file

@ -55,6 +55,18 @@ impl ClientBuilder {
self self
} }
/// Use custom connection. Mainly used for mocking connections.
/// # Note
/// This overrides anything set with [`Self::connector`].
#[doc(hidden)]
pub fn connection(
mut self,
connection: impl super::connect::Connect + 'static,
) -> Self {
self.config.connector = Box::new(connection);
self
}
/// Set request timeout. /// Set request timeout.
/// ///
/// Request timeout is the total time before a response must be received. /// Request timeout is the total time before a response must be received.

View file

@ -20,7 +20,8 @@ where
} }
} }
pub(super) trait Connect: fmt::Debug { #[doc(hidden)]
pub trait Connect: fmt::Debug {
fn send_request( fn send_request(
&self, &self,
head: RequestHeadType, head: RequestHeadType,

View file

@ -19,7 +19,7 @@
use std::rc::Rc; use std::rc::Rc;
mod builder; mod builder;
mod connect; pub mod connect;
mod connection; mod connection;
mod connector; mod connector;
pub mod error; pub mod error;
@ -74,12 +74,13 @@ pub struct Connect {
pub struct Client(Rc<ClientConfig>); pub struct Client(Rc<ClientConfig>);
#[derive(Debug)] #[derive(Debug)]
pub(crate) struct ClientConfig { #[doc(hidden)]
pub struct ClientConfig {
pub(self) connector: Box<dyn HttpConnect>, pub(self) connector: Box<dyn HttpConnect>,
pub(self) headers: HeaderMap, pub headers: HeaderMap,
pub(self) timeout: Millis, pub timeout: Millis,
pub(self) response_pl_limit: usize, pub response_pl_limit: usize,
pub(self) response_pl_timeout: Millis, pub response_pl_timeout: Millis,
} }
impl Default for ClientConfig { impl Default for ClientConfig {

View file

@ -59,11 +59,8 @@ impl HttpMessage for ClientResponse {
impl ClientResponse { impl ClientResponse {
/// Create new client response instance /// Create new client response instance
pub(crate) fn new( #[doc(hidden)]
head: ResponseHead, pub fn new(head: ResponseHead, payload: Payload, config: Rc<ClientConfig>) -> Self {
payload: Payload,
config: Rc<ClientConfig>,
) -> Self {
ClientResponse { ClientResponse {
head, head,
payload, payload,