Compare commits

...

2 commits

3 changed files with 24 additions and 20 deletions

View file

@ -4,6 +4,7 @@ version = "0.1.2"
edition = "2024" edition = "2024"
description = "Rust library crate featuring an API wrapper of the CKAN Action v3 API." description = "Rust library crate featuring an API wrapper of the CKAN Action v3 API."
repository = "https://github.com/dathere/ckanaction" repository = "https://github.com/dathere/ckanaction"
homepage = "https://ckanaction.dathere.com"
license = "Unlicense" license = "Unlicense"
keywords = ["ckan"] keywords = ["ckan"]
categories = ["api-bindings", "asynchronous"] categories = ["api-bindings", "asynchronous"]

View file

@ -8,6 +8,7 @@ use bon::bon;
use serde_json::json; use serde_json::json;
use std::{collections::HashMap, path::PathBuf}; use std::{collections::HashMap, path::PathBuf};
#[derive(Debug)]
pub struct CKAN { pub struct CKAN {
url: String, url: String,
token: Option<String>, token: Option<String>,

View file

@ -10,24 +10,26 @@ pub async fn get_ckan_builder() -> CKAN {
.build() .build()
} }
#[cfg(test)] #[tokio::test]
mod tests { #[ignore = "Set values for const at top of tests file locally."]
use super::*; async fn status_show() -> Result<(), Box<dyn std::error::Error>> {
let ckan = get_ckan_builder().await;
#[tokio::test] let response = ckan.status_show().await?;
#[ignore = "Set values for const at top of tests file locally."] assert!(response.is_object());
async fn status_show() -> Result<(), Box<dyn std::error::Error>> { let success = response
let ckan = get_ckan_builder().await; .as_object()
let response = ckan.status_show().await?; .unwrap()
assert!(response.is_object()); .get("success")
let success = response .unwrap()
.as_object() .as_bool()
.unwrap() .unwrap();
.get("success") assert!(success);
.unwrap() Ok(())
.as_bool() }
.unwrap();
assert!(success); #[tokio::test]
Ok(()) async fn print_ckan_struct_with_debug() -> Result<(), Box<dyn std::error::Error>> {
} let ckan = get_ckan_builder().await;
assert_eq!(format!("{ckan:?}"), r#"CKAN { url: "", token: Some("") }"#);
Ok(())
} }