mangadex_api/v5/custom_list/
post.rsuse derive_builder::Builder;
use serde::Serialize;
use uuid::Uuid;
use crate::HttpClientRef;
use mangadex_api_schema::v5::CustomListResponse;
use mangadex_api_types::CustomListVisibility;
#[cfg_attr(
feature = "deserializable-endpoint",
derive(serde::Deserialize, getset::Getters, getset::Setters)
)]
#[derive(Debug, Serialize, Clone, Builder)]
#[serde(rename_all = "camelCase")]
#[builder(
setter(into, strip_option),
build_fn(error = "mangadex_api_types::error::BuilderError")
)]
#[cfg_attr(feature = "non_exhaustive", non_exhaustive)]
pub struct CreateCustomList {
#[doc(hidden)]
#[serde(skip)]
#[builder(pattern = "immutable")]
#[cfg_attr(feature = "deserializable-endpoint", getset(set = "pub", get = "pub"))]
pub http_client: HttpClientRef,
pub name: String,
#[serde(skip_serializing_if = "Option::is_none")]
#[builder(default)]
pub visibility: Option<CustomListVisibility>,
#[serde(skip_serializing_if = "Vec::is_empty")]
#[builder(setter(each = "add_manga_id"), default)]
pub manga: Vec<Uuid>,
#[serde(skip_serializing_if = "Option::is_none")]
#[builder(default)]
pub version: Option<u32>,
}
endpoint! {
POST ("/list"),
#[body auth] CreateCustomList,
#[flatten_result] CustomListResponse,
CreateCustomListBuilder
}
#[cfg(test)]
mod tests {
use fake::faker::name::en::Name;
use fake::Fake;
use serde_json::json;
use url::Url;
use uuid::Uuid;
use wiremock::matchers::{body_json, header, method, path};
use wiremock::{Mock, MockServer, ResponseTemplate};
use crate::v5::AuthTokens;
use crate::{HttpClient, MangaDexClient};
#[tokio::test]
async fn create_custom_list_fires_a_request_to_base_url() -> anyhow::Result<()> {
let mock_server = MockServer::start().await;
let http_client = HttpClient::builder()
.base_url(Url::parse(&mock_server.uri())?)
.auth_tokens(AuthTokens {
session: "sessiontoken".to_string(),
refresh: "refreshtoken".to_string(),
})
.build()?;
let mangadex_client = MangaDexClient::new_with_http_client(http_client);
let custom_list_id = Uuid::new_v4();
let custom_list_name: String = Name().fake();
let expected_body = json!({
"name": custom_list_name,
"version": 1
});
let response_body = json!({
"result": "ok",
"response": "entity",
"data": {
"id": custom_list_id,
"type": "custom_list",
"attributes": {
"name": custom_list_name,
"visibility": "private",
"version": 1
},
"relationships": []
}
});
Mock::given(method("POST"))
.and(path(r"/list"))
.and(header("Authorization", "Bearer sessiontoken"))
.and(header("Content-Type", "application/json"))
.and(body_json(expected_body))
.respond_with(ResponseTemplate::new(200).set_body_json(response_body))
.expect(1)
.mount(&mock_server)
.await;
let _ = mangadex_client
.custom_list()
.post()
.name(custom_list_name.as_str())
.version(1u32)
.send()
.await?;
Ok(())
}
}