hydrus-api 0.10.2

A rust wrapper for the hydrus client api
Documentation
use super::super::common;
use hydrus_api::api_core::common::FileIdentifier;
use hydrus_api::wrapper::page::HydrusPage;

async fn get_page() -> HydrusPage {
    let hydrus = common::get_hydrus();

    hydrus.root_page().await.unwrap()
}

#[tokio::test]
async fn it_can_be_focused() {
    let page = get_page().await;
    page.focus().await.unwrap();
}

#[tokio::test]
async fn it_has_a_name() {
    let page = get_page().await;
    assert!(page.name.len() > 0)
}

#[tokio::test]
async fn it_has_a_key() {
    let page = get_page().await;
    assert!(page.key.len() > 0)
}

#[tokio::test]
async fn it_has_a_id() {
    let page = get_page().await;
    page.id();
}

#[tokio::test]
async fn it_can_have_files_assigned() {
    let page = get_page().await;
    let result = page
        .add_files(vec![FileIdentifier::hash(
            "0000000000000000000000000000000000000000000000000000000000000000",
        )])
        .await;
    assert!(result.is_err()) // root pages are not media pages
}