2018-12-09 10:59:32 +00:00
|
|
|
extern crate apitest;
|
|
|
|
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
use apitest::api3;
|
2018-12-10 12:36:52 +00:00
|
|
|
use apitest::cli::command::*;
|
2018-12-10 12:28:38 +00:00
|
|
|
|
2018-12-10 12:40:10 +00:00
|
|
|
fn datastore_commands() -> CommandLineInterface {
|
2018-12-09 10:59:32 +00:00
|
|
|
|
2018-12-10 12:51:10 +00:00
|
|
|
let mut cmd_def = HashMap::<String, CommandLineInterface>::new();
|
2018-12-09 10:59:32 +00:00
|
|
|
|
2018-12-11 10:12:13 +00:00
|
|
|
use apitest::api3::config::datastore;
|
|
|
|
|
|
|
|
cmd_def.insert("list".to_owned(), CliCommand::new(datastore::get()).into());
|
|
|
|
|
|
|
|
cmd_def.insert("create".to_owned(),
|
|
|
|
CliCommand::new(datastore::post())
|
|
|
|
.arg_param(vec!["name", "path"])
|
|
|
|
.into());
|
|
|
|
|
|
|
|
cmd_def.insert("remove".to_owned(),
|
|
|
|
CliCommand::new(api3::config::datastore::delete())
|
|
|
|
.arg_param(vec!["name"])
|
|
|
|
.into());
|
2018-12-10 12:28:38 +00:00
|
|
|
|
2018-12-10 12:51:10 +00:00
|
|
|
cmd_def.into()
|
2018-12-10 12:28:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
|
|
|
let mut cmd_def = HashMap::new();
|
|
|
|
|
|
|
|
cmd_def.insert("datastore".to_owned(), datastore_commands());
|
2018-12-09 15:52:32 +00:00
|
|
|
|
2018-12-10 12:40:10 +00:00
|
|
|
if let Err(err) = run_cli_command(&CommandLineInterface::Nested(cmd_def)) {
|
2018-12-09 10:59:32 +00:00
|
|
|
eprintln!("Error: {}", err);
|
|
|
|
print_cli_usage();
|
|
|
|
std::process::exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|