deboa-macros 0.0.9

Request macros for the deboa HTTP client
Documentation
use deboa::{Client, Result};
use deboa_extras::http::serde::json::JsonBody;
use deboa_macros::post;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug)]
pub struct Post {
    pub id: u32,
    pub title: String,
    pub body: String,
}

#[tokio::test]
async fn test_only_post_minimal() -> Result<()> {
    let client = Client::default();
    let data: Post = Post { id: 1, title: "title".to_string(), body: "body".to_string() };
    let response = post!(data, "https://jsonplaceholder.typicode.com/posts", &client);
    assert_eq!(response.status(), 201);
    Ok(())
}

#[tokio::test]
async fn test_only_post_minimal_headers() -> Result<()> {
    let client = Client::default();
    let data: Post = Post { id: 1, title: "title".to_string(), body: "body".to_string() };
    let headers = vec![("Content-Type", "application/json")];
    let response = post!(data, "https://jsonplaceholder.typicode.com/posts", headers, &client);
    assert_eq!(response.status(), 201);
    Ok(())
}

#[tokio::test]
async fn test_only_post() -> Result<()> {
    let client = Client::default();
    let data: Post = Post { id: 1, title: "title".to_string(), body: "body".to_string() };
    let response = post!(data, JsonBody, "https://jsonplaceholder.typicode.com/posts", &client);
    assert_eq!(response.status(), 201);
    Ok(())
}

#[tokio::test]
async fn test_post_with_headers() -> Result<()> {
    let client = Client::default();
    let data: Post = Post { id: 1, title: "title".to_string(), body: "body".to_string() };
    let headers = vec![("Content-Type", "application/json")];
    let response =
        post!(data, JsonBody, "https://jsonplaceholder.typicode.com/posts", headers, &client);
    assert_eq!(response.status(), 201);
    Ok(())
}