#[serial_test::serial]
#[tokio::test]
async fn test_delete_204_success_all_params() {
let mut client = sideko_rest_api::SidekoClient::default()
.with_api_key_auth("API_KEY")
.with_cookie_auth("API_KEY")
.with_environment(sideko_rest_api::Environment::MockServer);
let res = client
.asset()
.delete(sideko_rest_api::resources::asset::DeleteRequest {
id: "3e4666bf-d5e5-4aa7-b8ce-cefe41c7568a".to_string(),
})
.await;
println!("{res:?}");
assert!(res.is_ok());
}
#[serial_test::serial]
#[tokio::test]
async fn test_list_200_success_all_params() {
let mut client = sideko_rest_api::SidekoClient::default()
.with_api_key_auth("API_KEY")
.with_cookie_auth("API_KEY")
.with_environment(sideko_rest_api::Environment::MockServer);
let res = client
.asset()
.list(sideko_rest_api::resources::asset::ListRequest {
name: Some("string".to_string()),
page: Some(123),
})
.await;
println!("{res:?}");
assert!(res.is_ok());
}
#[serial_test::serial]
#[tokio::test]
async fn test_list_200_success_required_only() {
let mut client = sideko_rest_api::SidekoClient::default()
.with_api_key_auth("API_KEY")
.with_cookie_auth("API_KEY")
.with_environment(sideko_rest_api::Environment::MockServer);
let res = client
.asset()
.list(sideko_rest_api::resources::asset::ListRequest {
..Default::default()
})
.await;
println!("{res:?}");
assert!(res.is_ok());
}
#[serial_test::serial]
#[tokio::test]
async fn test_patch_200_success_all_params() {
let mut client = sideko_rest_api::SidekoClient::default()
.with_api_key_auth("API_KEY")
.with_cookie_auth("API_KEY")
.with_environment(sideko_rest_api::Environment::MockServer);
let res = client
.asset()
.patch(sideko_rest_api::resources::asset::PatchRequest {
name: Some("string".to_string()),
id: "3e4666bf-d5e5-4aa7-b8ce-cefe41c7568a".to_string(),
})
.await;
println!("{res:?}");
assert!(res.is_ok());
}
#[serial_test::serial]
#[tokio::test]
async fn test_create_201_success_all_params() {
let mut client = sideko_rest_api::SidekoClient::default()
.with_api_key_auth("API_KEY")
.with_cookie_auth("API_KEY")
.with_environment(sideko_rest_api::Environment::MockServer);
let res = client
.asset()
.create(sideko_rest_api::resources::asset::CreateRequest {
file: sideko_rest_api::UploadFile {
file_name: "test.pdf".into(),
content: bytes::Bytes::from_static(b"123"),
},
})
.await;
println!("{res:?}");
assert!(res.is_ok());
}