2023-04-04 09:59:29 -04:00
|
|
|
use async_std::{
|
2023-04-08 15:04:04 -04:00
|
|
|
channel::{unbounded, Receiver, Sender},
|
2023-04-04 09:59:29 -04:00
|
|
|
path::PathBuf,
|
|
|
|
task::spawn,
|
|
|
|
};
|
2023-04-08 15:04:04 -04:00
|
|
|
use std::{collections::HashMap, error::Error, fmt};
|
2023-04-04 09:59:29 -04:00
|
|
|
|
|
|
|
const ENTRY: &str = "EntryPoint";
|
|
|
|
|
2023-05-25 11:00:20 -04:00
|
|
|
trait Requests {
|
|
|
|
fn add(kind: &str, key: &str, value: Storage) -> Result<(), MTTError> {
|
|
|
|
Err(MTTError::new("not supported"))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get() -> Vec<Storage> {
|
|
|
|
Vec::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-04 12:36:10 -04:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum ErrorCode {
|
2023-04-18 09:02:18 -04:00
|
|
|
// General
|
2023-04-04 12:36:10 -04:00
|
|
|
Undefined(String),
|
2023-04-23 13:13:38 -04:00
|
|
|
// Cache
|
2023-04-18 09:02:18 -04:00
|
|
|
EntryNotFound(String),
|
2023-04-23 13:13:38 -04:00
|
|
|
InvalidCommitData,
|
|
|
|
// Store
|
|
|
|
DatabaseAlreadyExists(String),
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for ErrorCode {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
match self {
|
|
|
|
ErrorCode::Undefined(msg) => write!(f, "{}", msg),
|
2023-04-18 09:02:18 -04:00
|
|
|
ErrorCode::EntryNotFound(id) => write!(f, "entry '{}' was not found", id),
|
2023-04-23 13:13:38 -04:00
|
|
|
ErrorCode::InvalidCommitData => write!(f, "commit data was not a database store"),
|
|
|
|
ErrorCode::DatabaseAlreadyExists(name) => {
|
|
|
|
write!(f, "database '{}' already exists", name)
|
|
|
|
}
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod errorcodes {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
const ITEMS: [&str; 2] = ["one", "two"];
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn undefined_display() {
|
|
|
|
for item in ITEMS {
|
|
|
|
let err = ErrorCode::Undefined(item.to_string());
|
|
|
|
assert_eq!(err.to_string(), item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-04-18 09:02:18 -04:00
|
|
|
fn bad_entry() {
|
2023-04-04 12:36:10 -04:00
|
|
|
for item in ITEMS {
|
2023-04-18 09:02:18 -04:00
|
|
|
let err = ErrorCode::EntryNotFound(item.to_string());
|
|
|
|
assert_eq!(err.to_string(), format!("entry '{}' was not found", item));
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
}
|
2023-04-23 13:13:38 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_commit_data() {
|
|
|
|
let err = ErrorCode::InvalidCommitData;
|
|
|
|
assert_eq!(err.to_string(), "commit data was not a database store");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn database_already_exists() {
|
|
|
|
for item in ITEMS {
|
|
|
|
let err = ErrorCode::DatabaseAlreadyExists(item.to_string());
|
|
|
|
assert_eq!(
|
|
|
|
err.to_string(),
|
|
|
|
format!("database '{}' already exists", item)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
|
2023-04-04 09:59:29 -04:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct MTTError {
|
2023-04-04 12:36:10 -04:00
|
|
|
code: ErrorCode,
|
2023-04-04 09:59:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl MTTError {
|
2023-04-04 12:36:10 -04:00
|
|
|
fn new<S>(msg: S) -> Self
|
|
|
|
where
|
|
|
|
S: Into<String>,
|
|
|
|
{
|
2023-04-04 09:59:29 -04:00
|
|
|
let text = msg.into();
|
|
|
|
Self {
|
2023-04-04 12:36:10 -04:00
|
|
|
code: ErrorCode::Undefined(text),
|
2023-04-04 09:59:29 -04:00
|
|
|
}
|
|
|
|
}
|
2023-04-04 12:36:10 -04:00
|
|
|
|
|
|
|
fn from_code(code: ErrorCode) -> Self {
|
|
|
|
Self { code: code }
|
|
|
|
}
|
2023-04-04 09:59:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Error for MTTError {}
|
|
|
|
|
|
|
|
impl fmt::Display for MTTError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2023-04-04 12:36:10 -04:00
|
|
|
write!(f, "{}", self.code)
|
2023-04-04 09:59:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod errors {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create_with_str() {
|
|
|
|
let msgs = ["one", "two"];
|
|
|
|
for msg in msgs {
|
|
|
|
let err = MTTError::new(msg);
|
|
|
|
assert_eq!(err.to_string(), msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create_with_string() {
|
|
|
|
let msg = "three";
|
|
|
|
let err = MTTError::new(msg.to_string());
|
|
|
|
assert_eq!(err.to_string(), msg);
|
|
|
|
}
|
2023-04-04 12:36:10 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create_from_code() {
|
|
|
|
let code = ErrorCode::Undefined("oops".to_string());
|
|
|
|
let err = MTTError::from_code(code);
|
|
|
|
match err.code {
|
|
|
|
ErrorCode::Undefined(_) => (),
|
|
|
|
_ => assert!(false, "{:?} is not undefined", err.code),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-04-18 09:02:18 -04:00
|
|
|
fn create_missing_entry() {
|
|
|
|
let code = ErrorCode::EntryNotFound("an_id".to_string());
|
2023-04-04 12:36:10 -04:00
|
|
|
let err = MTTError::from_code(code);
|
|
|
|
match err.code {
|
2023-04-18 09:02:18 -04:00
|
|
|
ErrorCode::EntryNotFound(_) => (),
|
|
|
|
_ => assert!(false, "{:?} is not undefined", err.code),
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
}
|
2023-04-04 09:59:29 -04:00
|
|
|
}
|
|
|
|
|
2023-04-04 12:36:10 -04:00
|
|
|
#[derive(Clone, Debug)]
|
2023-04-23 13:13:38 -04:00
|
|
|
struct Storage {
|
|
|
|
id: Option<String>,
|
|
|
|
data: Option<DataType>,
|
|
|
|
// delete: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Storage {
|
|
|
|
fn from_id<S>(id: S) -> Self
|
|
|
|
where
|
|
|
|
S: Into<String>,
|
|
|
|
{
|
|
|
|
Self {
|
|
|
|
id: Some(id.into()),
|
|
|
|
data: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_datatype(dt: DataType) -> Self {
|
|
|
|
Self {
|
|
|
|
id: None,
|
|
|
|
data: Some(dt),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod storage {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_id_with_str() {
|
|
|
|
let ids = ["first", "second"];
|
|
|
|
for id in ids {
|
|
|
|
let output = Storage::from_id(id);
|
|
|
|
assert_eq!(output.id, Some(id.to_string()));
|
|
|
|
assert!(
|
|
|
|
output.data.is_none(),
|
|
|
|
"The storage data should have been Non."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_id_with_string() {
|
|
|
|
let id = "my_id".to_string();
|
|
|
|
let output = Storage::from_id(id.clone());
|
|
|
|
assert_eq!(output.id, Some(id));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_store() {
|
|
|
|
let output = Storage::from_datatype(DataType::new("store"));
|
|
|
|
assert!(output.id.is_none(), "id should be None.");
|
|
|
|
assert!(output.data.is_some(), "There should be data");
|
|
|
|
let result = output.data.unwrap();
|
|
|
|
match result {
|
|
|
|
DataType::DBMap(_) => (),
|
|
|
|
_ => assert!(false, "{:?} should have been DataType::DBMap.", result),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn from_database() {
|
|
|
|
let output = Storage::from_datatype(DataType::new("database"));
|
|
|
|
let result = output.data.unwrap();
|
|
|
|
match result {
|
|
|
|
DataType::TableMap(_) => (),
|
|
|
|
_ => assert!(false, "{:?} should have been DataType::TableMap.", result),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
struct Store {
|
|
|
|
data: HashMap<String, Storage>,
|
|
|
|
}
|
2023-04-04 09:59:29 -04:00
|
|
|
|
2023-04-04 12:36:10 -04:00
|
|
|
impl Store {
|
|
|
|
fn new() -> Self {
|
2023-04-23 13:13:38 -04:00
|
|
|
Self {
|
|
|
|
data: HashMap::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_new<S>(&mut self, name: S) -> Result<(), MTTError>
|
|
|
|
where
|
|
|
|
S: Into<String>,
|
|
|
|
{
|
|
|
|
let dbname = name.into();
|
|
|
|
match self.get(&dbname) {
|
|
|
|
Some(_) => Err(MTTError::from_code(ErrorCode::DatabaseAlreadyExists(
|
|
|
|
dbname,
|
|
|
|
))),
|
|
|
|
None => {
|
|
|
|
self.data
|
|
|
|
.insert(dbname, Storage::from_datatype(DataType::new("database")));
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get(&self, name: &str) -> Option<&Storage> {
|
|
|
|
self.data.get(name)
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod stores {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2023-04-23 13:13:38 -04:00
|
|
|
fn get_no_database() -> Result<(), MTTError> {
|
|
|
|
let store = Store::new();
|
|
|
|
match store.get("missing_name") {
|
|
|
|
Some(_) => Err(MTTError::new("should have returned None")),
|
|
|
|
None => Ok(()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn add_database_str() {
|
|
|
|
let mut store = Store::new();
|
|
|
|
let names = ["first", "second"];
|
|
|
|
for name in names {
|
|
|
|
store.add_new(name).unwrap();
|
|
|
|
let output = store.get(name).unwrap();
|
|
|
|
assert!(output.data.is_some(), "There should be a data type.");
|
|
|
|
match output.data.clone().unwrap() {
|
|
|
|
DataType::TableMap(_) => (),
|
|
|
|
_ => assert!(
|
|
|
|
false,
|
|
|
|
"{:?} should have been DataType::TableMap.",
|
|
|
|
output.data
|
|
|
|
),
|
|
|
|
}
|
|
|
|
assert!(output.id.is_none(), "Should not have an id.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn add_database_string() {
|
|
|
|
let mut store = Store::new();
|
|
|
|
let name = "third".to_string();
|
|
|
|
store.add_new(name.clone()).unwrap();
|
|
|
|
let output = store.get(&name).unwrap();
|
|
|
|
match output.data.clone().unwrap() {
|
|
|
|
DataType::TableMap(_) => (),
|
|
|
|
_ => assert!(
|
|
|
|
false,
|
|
|
|
"{:?} should have been DataType::TableMap.",
|
|
|
|
output.data
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_duplicate_database_names() -> Result<(), MTTError> {
|
|
|
|
let mut store = Store::new();
|
|
|
|
let name = "duplicate";
|
|
|
|
store.add_new(name).unwrap();
|
|
|
|
match store.add_new(name) {
|
|
|
|
Ok(_) => Err(MTTError::new("should have been an error")),
|
|
|
|
Err(err) => match err.code {
|
|
|
|
ErrorCode::DatabaseAlreadyExists(dbname) => {
|
|
|
|
assert_eq!(dbname, name);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
_ => Err(MTTError::new(format!(
|
|
|
|
"{:?} should have been DatabaseAlreadyExists.",
|
|
|
|
err.code
|
|
|
|
))),
|
|
|
|
},
|
|
|
|
}
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-10 07:52:53 -04:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
struct Database;
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod databases {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create() {
|
|
|
|
Database::new();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Database {
|
|
|
|
fn new() -> Self {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-04 12:36:10 -04:00
|
|
|
#[derive(Clone, Debug)]
|
2023-04-04 09:59:29 -04:00
|
|
|
enum DataType {
|
|
|
|
DBMap(Store),
|
2023-04-10 07:52:53 -04:00
|
|
|
TableMap(Database),
|
2023-04-04 09:59:29 -04:00
|
|
|
}
|
|
|
|
|
2023-04-04 12:36:10 -04:00
|
|
|
impl DataType {
|
2023-04-10 07:52:53 -04:00
|
|
|
fn new(dtype: &str) -> DataType {
|
2023-04-04 12:36:10 -04:00
|
|
|
match dtype {
|
2023-04-10 07:52:53 -04:00
|
|
|
"store" => Self::DBMap(Store::new()),
|
|
|
|
"database" => Self::TableMap(Database::new()),
|
|
|
|
_ => unreachable!(),
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod datatypes {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2023-04-10 07:52:53 -04:00
|
|
|
fn create_store() {
|
|
|
|
let dtype = DataType::new("store");
|
|
|
|
match dtype {
|
|
|
|
DataType::DBMap(_) => (),
|
|
|
|
_ => assert!(false, "{:?} is not incorrect data type", dtype),
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-04-10 07:52:53 -04:00
|
|
|
fn create_database() {
|
|
|
|
let dtype = DataType::new("database");
|
2023-04-04 12:36:10 -04:00
|
|
|
match dtype {
|
2023-04-10 07:52:53 -04:00
|
|
|
DataType::TableMap(_) => (),
|
2023-04-04 12:36:10 -04:00
|
|
|
_ => assert!(false, "{:?} is not incorrect data type", dtype),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-08 15:04:04 -04:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum FromCache {
|
2023-04-11 08:12:41 -04:00
|
|
|
Ok,
|
2023-04-08 15:04:04 -04:00
|
|
|
Data(HashMap<String, DataType>),
|
|
|
|
Error(MTTError),
|
|
|
|
}
|
|
|
|
|
|
|
|
struct CacheQuery {
|
|
|
|
ids: Vec<String>,
|
|
|
|
reply: Sender<FromCache>,
|
|
|
|
}
|
|
|
|
|
2023-04-11 08:12:41 -04:00
|
|
|
struct CacheCommit {
|
|
|
|
reply: Sender<FromCache>,
|
2023-05-11 08:46:44 -04:00
|
|
|
data: DataType,
|
2023-04-11 08:12:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CacheCommit {
|
2023-04-23 13:13:38 -04:00
|
|
|
fn new(data: DataType, channel: Sender<FromCache>) -> Result<Self, MTTError> {
|
|
|
|
match data {
|
|
|
|
DataType::DBMap(_) => (),
|
|
|
|
_ => return Err(MTTError::from_code(ErrorCode::InvalidCommitData)),
|
|
|
|
}
|
|
|
|
Ok(Self {
|
2023-05-11 08:46:44 -04:00
|
|
|
data: data,
|
2023-04-23 13:13:38 -04:00
|
|
|
reply: channel,
|
|
|
|
})
|
2023-04-11 08:12:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod commits {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2023-04-23 13:13:38 -04:00
|
|
|
fn create() -> Result<(), MTTError> {
|
2023-04-11 08:12:41 -04:00
|
|
|
let (s, _) = unbounded();
|
2023-04-23 13:13:38 -04:00
|
|
|
match CacheCommit::new(DataType::new("store"), s) {
|
2023-05-11 08:46:44 -04:00
|
|
|
Ok(output) => match output.data {
|
|
|
|
DataType::DBMap(_) => Ok(()),
|
|
|
|
_ => Err(MTTError::new(format!(
|
|
|
|
"{:?} should have been DBMap",
|
|
|
|
output.data
|
|
|
|
))),
|
|
|
|
},
|
2023-04-23 13:13:38 -04:00
|
|
|
Err(err) => Err(err),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bad_data_type() -> Result<(), MTTError> {
|
|
|
|
let (s, _) = unbounded();
|
|
|
|
match CacheCommit::new(DataType::new("database"), s) {
|
|
|
|
Ok(_) => Err(MTTError::new("CacheCommit::new did not return error")),
|
|
|
|
Err(err) => match err.code {
|
|
|
|
ErrorCode::InvalidCommitData => Ok(()),
|
|
|
|
_ => Err(MTTError::new(format!(
|
|
|
|
"{:?} is not the correct error",
|
|
|
|
err.code
|
|
|
|
))),
|
|
|
|
},
|
|
|
|
}
|
2023-04-11 08:12:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-08 15:04:04 -04:00
|
|
|
enum ToCache {
|
|
|
|
Query(CacheQuery),
|
2023-04-11 08:12:41 -04:00
|
|
|
Commit(CacheCommit),
|
2023-04-08 15:04:04 -04:00
|
|
|
}
|
|
|
|
|
2023-04-04 09:59:29 -04:00
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct MoreThanText {
|
|
|
|
session: Vec<String>,
|
2023-04-08 15:04:04 -04:00
|
|
|
cache: Sender<Vec<String>>,
|
2023-04-04 09:59:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl MoreThanText {
|
2023-04-08 15:04:04 -04:00
|
|
|
async fn new(cache: Sender<Vec<String>>) -> Result<Self, MTTError> {
|
|
|
|
Ok(Self {
|
|
|
|
session: [ENTRY.to_string()].to_vec(),
|
|
|
|
cache: cache,
|
|
|
|
})
|
2023-04-04 09:59:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-04 12:36:10 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod mtt {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[async_std::test]
|
|
|
|
async fn create() {
|
2023-04-08 15:04:04 -04:00
|
|
|
let (s, _) = unbounded();
|
|
|
|
let mtt = MoreThanText::new(s).await.unwrap();
|
|
|
|
assert_eq!(mtt.session, [ENTRY]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-15 10:18:56 -04:00
|
|
|
struct Cache;
|
2023-04-08 15:04:04 -04:00
|
|
|
|
|
|
|
impl Cache {
|
2023-04-15 10:18:56 -04:00
|
|
|
async fn new<P>(_dir: P) -> Result<Self, MTTError>
|
2023-04-08 15:04:04 -04:00
|
|
|
where
|
|
|
|
P: Into<PathBuf>,
|
|
|
|
{
|
2023-04-15 10:18:56 -04:00
|
|
|
Ok(Self {})
|
2023-04-08 15:04:04 -04:00
|
|
|
}
|
|
|
|
|
2023-04-15 09:47:48 -04:00
|
|
|
async fn query(&self, qry: &Vec<String>) -> Result<HashMap<String, DataType>, MTTError> {
|
|
|
|
let mut output = HashMap::new();
|
|
|
|
for id in qry {
|
2023-04-12 18:33:39 -04:00
|
|
|
if id == ENTRY {
|
2023-04-15 09:47:48 -04:00
|
|
|
output.insert(ENTRY.to_string(), DataType::new("store"));
|
2023-04-12 18:33:39 -04:00
|
|
|
} else {
|
2023-04-18 09:02:18 -04:00
|
|
|
return Err(MTTError::from_code(ErrorCode::EntryNotFound(
|
|
|
|
id.to_string(),
|
|
|
|
)));
|
2023-04-12 18:33:39 -04:00
|
|
|
}
|
|
|
|
}
|
2023-04-15 09:47:48 -04:00
|
|
|
Ok(output)
|
2023-04-12 18:33:39 -04:00
|
|
|
}
|
|
|
|
|
2023-04-15 09:47:48 -04:00
|
|
|
async fn commit(&self) -> Result<(), MTTError> {
|
|
|
|
Ok(())
|
2023-04-12 18:33:39 -04:00
|
|
|
}
|
|
|
|
|
2023-04-15 10:18:56 -04:00
|
|
|
async fn start(&self, listener: Receiver<ToCache>) {
|
2023-04-08 15:04:04 -04:00
|
|
|
loop {
|
2023-04-15 10:18:56 -04:00
|
|
|
match listener.recv().await.unwrap() {
|
2023-04-18 09:02:18 -04:00
|
|
|
ToCache::Query(qry) => match self.query(&qry.ids).await {
|
|
|
|
Ok(data) => qry.reply.send(FromCache::Data(data)).await.unwrap(),
|
|
|
|
Err(error) => qry.reply.send(FromCache::Error(error)).await.unwrap(),
|
2023-04-15 09:47:48 -04:00
|
|
|
},
|
2023-04-18 09:02:18 -04:00
|
|
|
ToCache::Commit(commit) => match self.commit().await {
|
|
|
|
Ok(_) => commit.reply.send(FromCache::Ok).await.unwrap(),
|
|
|
|
Err(error) => commit.reply.send(FromCache::Error(error)).await.unwrap(),
|
2023-04-15 09:47:48 -04:00
|
|
|
},
|
2023-04-08 15:04:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod caches {
|
|
|
|
use super::*;
|
|
|
|
use tempfile::tempdir;
|
|
|
|
|
|
|
|
async fn start_cache<P>(dir: P) -> Sender<ToCache>
|
|
|
|
where
|
|
|
|
P: Into<PathBuf>,
|
|
|
|
{
|
|
|
|
let (s, r) = unbounded();
|
|
|
|
let datadir = dir.into();
|
|
|
|
spawn(async move {
|
2023-04-15 10:18:56 -04:00
|
|
|
let cache = Cache::new(datadir).await.unwrap();
|
|
|
|
cache.start(r).await;
|
2023-04-08 15:04:04 -04:00
|
|
|
});
|
|
|
|
s
|
|
|
|
}
|
|
|
|
|
2023-04-09 09:45:39 -04:00
|
|
|
async fn send_request(data: Vec<&str>, channel: Sender<ToCache>) -> FromCache {
|
|
|
|
let mut ids = Vec::new();
|
|
|
|
for id in data.iter() {
|
|
|
|
ids.push(id.to_string());
|
|
|
|
}
|
|
|
|
let (s, r) = unbounded();
|
2023-04-11 08:12:41 -04:00
|
|
|
let msg = ToCache::Query(CacheQuery { ids: ids, reply: s });
|
2023-04-09 09:45:39 -04:00
|
|
|
channel.send(msg).await.unwrap();
|
|
|
|
r.recv().await.unwrap()
|
|
|
|
}
|
|
|
|
|
2023-04-08 15:04:04 -04:00
|
|
|
#[async_std::test]
|
|
|
|
async fn create() {
|
|
|
|
let dir = tempdir().unwrap();
|
|
|
|
let s_cache = start_cache(dir.path()).await;
|
2023-04-09 09:45:39 -04:00
|
|
|
let result = send_request(vec![ENTRY], s_cache).await;
|
2023-04-08 15:04:04 -04:00
|
|
|
match result {
|
|
|
|
FromCache::Data(data) => match data.get(ENTRY) {
|
|
|
|
Some(output) => match output {
|
|
|
|
DataType::DBMap(_) => (),
|
|
|
|
_ => assert!(false, "{:?} is not a database store.", output),
|
|
|
|
},
|
|
|
|
None => assert!(false, "Should contain entry point."),
|
|
|
|
},
|
|
|
|
_ => assert!(false, "{:?} should have been a store.", result),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_std::test]
|
|
|
|
async fn bad_entry() {
|
|
|
|
let dir = tempdir().unwrap();
|
|
|
|
let s_cache = start_cache(dir.path()).await;
|
2023-04-09 09:45:39 -04:00
|
|
|
let result = send_request(vec!["bad_id"], s_cache).await;
|
2023-04-08 15:04:04 -04:00
|
|
|
match result {
|
|
|
|
FromCache::Error(_) => (),
|
|
|
|
_ => assert!(false, "{:?} should have been an error.", result),
|
|
|
|
}
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
2023-04-11 08:12:41 -04:00
|
|
|
|
|
|
|
#[async_std::test]
|
|
|
|
async fn empty_commit() {
|
|
|
|
let dir = tempdir().unwrap();
|
|
|
|
let s_cache = start_cache(dir.path()).await;
|
|
|
|
let (s, r) = unbounded();
|
2023-04-23 13:13:38 -04:00
|
|
|
let msg = ToCache::Commit(CacheCommit::new(DataType::new("store"), s).unwrap());
|
2023-04-11 08:12:41 -04:00
|
|
|
s_cache.send(msg).await.unwrap();
|
|
|
|
let result = r.recv().await.unwrap();
|
|
|
|
match result {
|
|
|
|
FromCache::Ok => (),
|
2023-04-15 10:18:56 -04:00
|
|
|
_ => assert!(false, "{:?} should have been an Ok.", result),
|
2023-04-11 08:12:41 -04:00
|
|
|
}
|
|
|
|
}
|
2023-04-12 18:33:39 -04:00
|
|
|
|
|
|
|
#[async_std::test]
|
2023-04-18 09:02:18 -04:00
|
|
|
async fn get_store() {
|
|
|
|
let dir = tempdir().unwrap();
|
|
|
|
let cache = Cache::new(dir.path()).await.unwrap();
|
|
|
|
let output = cache.query(&[ENTRY.to_string()].to_vec()).await.unwrap();
|
|
|
|
let result = output.get(ENTRY).unwrap();
|
|
|
|
match result {
|
|
|
|
DataType::DBMap(_) => (),
|
|
|
|
_ => assert!(false, "{:?} should have been an Ok.", result),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_std::test]
|
|
|
|
async fn bad_get() {
|
|
|
|
let dir = tempdir().unwrap();
|
|
|
|
let cache = Cache::new(dir.path()).await.unwrap();
|
|
|
|
let bad_id = "really_bad_id";
|
|
|
|
match cache.query(&[bad_id.to_string()].to_vec()).await {
|
|
|
|
Ok(_) => assert!(false, "Should have produced an error."),
|
|
|
|
Err(err) => match err.code {
|
|
|
|
ErrorCode::EntryNotFound(id) => assert_eq!(id, bad_id),
|
|
|
|
_ => assert!(false, "{:?} should have been EntryNotFound.", err.code),
|
|
|
|
},
|
|
|
|
}
|
2023-04-12 18:33:39 -04:00
|
|
|
}
|
2023-04-04 12:36:10 -04:00
|
|
|
}
|
|
|
|
|
2023-04-08 15:04:04 -04:00
|
|
|
pub async fn start_db<P>(_dir: P) -> Result<MoreThanText, MTTError>
|
2023-04-04 09:59:29 -04:00
|
|
|
where
|
|
|
|
P: Into<PathBuf>,
|
|
|
|
{
|
|
|
|
let (s, r) = unbounded();
|
|
|
|
spawn(async move {
|
|
|
|
loop {
|
|
|
|
r.recv().await.unwrap();
|
|
|
|
}
|
|
|
|
});
|
2023-04-08 15:04:04 -04:00
|
|
|
Ok(MoreThanText::new(s).await.unwrap())
|
2023-04-04 09:59:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod db_start_up {
|
|
|
|
use super::*;
|
|
|
|
use tempfile::tempdir;
|
|
|
|
|
|
|
|
#[async_std::test]
|
|
|
|
async fn initial_session() {
|
|
|
|
let dir = tempdir().unwrap();
|
|
|
|
let mtt = start_db(dir.path()).await.unwrap();
|
|
|
|
assert_eq!(mtt.session, [ENTRY]);
|
|
|
|
}
|
|
|
|
}
|