#![cfg(test)]
pub use super::datastore::RocksdbDatastore;
pub use super::super::tests;
pub use super::super::util::generate_random_secret;
pub use std::env;
use std::path::Path;
fn get_options() -> (String, i32) {
let test_rdb_directory = env::var("TEST_RDB_DIRECTORY").unwrap_or("/tmp/test-rdb".to_string());
let unique = generate_random_secret(8);
let path = Path::new(&test_rdb_directory[..]).join(unique);
let max_open_files_str = env::var("ROCKSDB_MAX_OPEN_FILES").unwrap_or("512".to_string());
let max_open_files = max_open_files_str.parse::<i32>().unwrap();
(path.to_str().unwrap().to_string(), max_open_files)
}
full_test_impl!({
let (path, max_open_files) = get_options();
RocksdbDatastore::new(&path[..], Some(max_open_files), false).unwrap()
});
#[test]
fn should_repair() {
let (path, max_open_files) = get_options();
RocksdbDatastore::repair(&path[..], Some(max_open_files)).unwrap()
}