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::fetch;
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_fetch_str_minimal() -> Result<()> {
    let client = Client::default();
    let response = fetch!("https://jsonplaceholder.typicode.com/posts", &client);
    assert!(response
        .status()
        .is_success());
    Ok(())
}

#[tokio::test]
async fn test_fetch_str_minimal_headers() -> Result<()> {
    let client = Client::default();
    let headers = vec![("User-Agent", "deboa")];
    let response = fetch!("https://jsonplaceholder.typicode.com/posts", headers, &client);
    assert!(response
        .status()
        .is_success());
    Ok(())
}

#[tokio::test]
async fn test_fetch_str() -> Result<()> {
    let client = Client::default();
    let response =
        fetch!("https://jsonplaceholder.typicode.com/posts", &client, JsonBody, Vec<Post>);
    assert_eq!(response.len(), 100);
    Ok(())
}

#[tokio::test]
async fn test_fetch_ident() -> Result<()> {
    let client = Client::default();
    let url = "https://jsonplaceholder.typicode.com/posts";
    let response = fetch!(url, &client, JsonBody, Vec<Post>);
    assert_eq!(response.len(), 100);
    Ok(())
}

#[tokio::test]
async fn test_fetch_ident_with_headers() -> Result<()> {
    let client = Client::default();
    let url = "https://jsonplaceholder.typicode.com/posts";
    let headers = vec![("User-Agent", "deboa")];
    let response = fetch!(url, headers, &client, JsonBody, Vec<Post>);
    assert_eq!(response.len(), 100);
    Ok(())
}