mirror of
https://github.com/dathere/ckanaction.git
synced 2025-12-27 13:26:59 +00:00
chore: add Debug to CKAN struct and test with refactor
As per https://rust-lang.github.io/api-guidelines/debuggability.html#c-debug.
This commit is contained in:
parent
baf875e177
commit
614ebfbc05
2 changed files with 23 additions and 20 deletions
|
|
@ -8,6 +8,7 @@ use bon::bon;
|
|||
use serde_json::json;
|
||||
use std::{collections::HashMap, path::PathBuf};
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct CKAN {
|
||||
url: String,
|
||||
token: Option<String>,
|
||||
|
|
|
|||
|
|
@ -10,24 +10,26 @@ pub async fn get_ckan_builder() -> CKAN {
|
|||
.build()
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[tokio::test]
|
||||
#[ignore = "Set values for const at top of tests file locally."]
|
||||
async fn status_show() -> Result<(), Box<dyn std::error::Error>> {
|
||||
let ckan = get_ckan_builder().await;
|
||||
let response = ckan.status_show().await?;
|
||||
assert!(response.is_object());
|
||||
let success = response
|
||||
.as_object()
|
||||
.unwrap()
|
||||
.get("success")
|
||||
.unwrap()
|
||||
.as_bool()
|
||||
.unwrap();
|
||||
assert!(success);
|
||||
Ok(())
|
||||
}
|
||||
#[tokio::test]
|
||||
#[ignore = "Set values for const at top of tests file locally."]
|
||||
async fn status_show() -> Result<(), Box<dyn std::error::Error>> {
|
||||
let ckan = get_ckan_builder().await;
|
||||
let response = ckan.status_show().await?;
|
||||
assert!(response.is_object());
|
||||
let success = response
|
||||
.as_object()
|
||||
.unwrap()
|
||||
.get("success")
|
||||
.unwrap()
|
||||
.as_bool()
|
||||
.unwrap();
|
||||
assert!(success);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[tokio::test]
|
||||
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(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue