You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
Rust
51 lines
1.4 KiB
Rust
use super::super::common;
|
|
use hydrus_api::wrapper::builders::import_builder::FileImport;
|
|
use hydrus_api::wrapper::page::PageIdentifier;
|
|
use hydrus_api::wrapper::service::ServiceName;
|
|
use hydrus_api::wrapper::tag::Tag;
|
|
use hydrus_api::wrapper::url::UrlType;
|
|
|
|
#[tokio::test]
|
|
async fn it_imports_file_paths() {
|
|
let hydrus = common::get_hydrus();
|
|
let result = hydrus
|
|
.import()
|
|
.file(FileImport::path("/does/not/exist/sadly"))
|
|
.run()
|
|
.await;
|
|
|
|
assert!(result.is_err()) // file does not exist
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn it_imports_binary_files() {
|
|
let hydrus = common::get_hydrus();
|
|
let bytes = [0u8, 0u8, 0u8, 0u8];
|
|
let result = hydrus
|
|
.import()
|
|
.file(FileImport::binary(&mut &bytes[..]))
|
|
.run()
|
|
.await;
|
|
|
|
assert!(result.is_err()) // return status should be 4
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn it_imports_urls() {
|
|
let hydrus = common::get_hydrus();
|
|
|
|
let result = hydrus
|
|
.import()
|
|
.url("https://www.pixiv.net/member_illust.php?illust_id=83406361&mode=medium")
|
|
.page(PageIdentifier::name("Rusty Import"))
|
|
.show_page(true)
|
|
.add_additional_tag(ServiceName::my_tags(), Tag::from("ark mage"))
|
|
.add_additional_tag(ServiceName::my_tags(), Tag::from("character:megumin"))
|
|
.run()
|
|
.await
|
|
.unwrap();
|
|
|
|
assert!(result.normalised_url.len() > 0);
|
|
assert_eq!(result.url_type, UrlType::Post)
|
|
}
|