axum-test 20.0.0

Easy E2E testing for Axum
Documentation
use crate::multipart::Part;
use axum::body::Body as AxumBody;
use rust_multipart_rfc7578_2::client::multipart::Body as CommonMultipartBody;
use rust_multipart_rfc7578_2::client::multipart::Form;
use std::fmt::Display;
use std::io::Cursor;

#[derive(Debug)]
pub struct MultipartForm {
    inner: Form<'static>,
}

impl MultipartForm {
    pub fn new() -> Self {
        Default::default()
    }

    /// Creates a text part, and adds it to be sent.
    pub fn add_text<N, T>(mut self, name: N, text: T) -> Self
    where
        N: Display,
        T: ToString,
    {
        self.inner.add_text(name, text.to_string());
        self
    }

    /// Adds a new section to this multipart form to be sent.
    ///
    /// See [`Part`](crate::multipart::Part).
    pub fn add_part<N>(mut self, name: N, part: Part) -> Self
    where
        N: Display,
    {
        let reader = Cursor::new(part.bytes);
        self.inner.add_reader_2(
            name,
            reader,
            part.file_name,
            Some(part.mime_type),
            part.headers,
        );

        self
    }

    /// Returns the content type this form will use when it is sent.
    pub fn content_type(&self) -> String {
        self.inner.content_type()
    }
}

impl Default for MultipartForm {
    fn default() -> Self {
        Self {
            inner: Default::default(),
        }
    }
}

impl From<MultipartForm> for AxumBody {
    fn from(multipart: MultipartForm) -> Self {
        let inner_body: CommonMultipartBody = multipart.inner.into();
        AxumBody::from_stream(inner_body)
    }
}