2022-08-11 07:30:22 -04:00
|
|
|
pub mod fieldtype;
|
2022-08-06 12:03:47 -04:00
|
|
|
pub mod error;
|
|
|
|
|
|
|
|
use async_std::sync::{Arc, RwLock};
|
|
|
|
use error::MTTError;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2022-07-18 17:24:45 -04:00
|
|
|
#[derive(Clone)]
|
2022-08-06 12:03:47 -04:00
|
|
|
pub struct MoreThanText {
|
|
|
|
tables: Arc<RwLock<HashMap<String, Table>>>,
|
|
|
|
}
|
2022-07-12 16:55:20 -04:00
|
|
|
|
2022-07-18 17:24:45 -04:00
|
|
|
impl MoreThanText {
|
2022-07-12 16:55:20 -04:00
|
|
|
pub async fn new() -> Self {
|
2022-08-06 12:03:47 -04:00
|
|
|
Self {
|
|
|
|
tables: Arc::new(RwLock::new(HashMap::new())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-06 12:38:58 -04:00
|
|
|
pub async fn new_table<S>(&self, tname: S) -> Result<Table, MTTError>
|
|
|
|
where
|
|
|
|
S: Into<String>,
|
|
|
|
{
|
2022-08-06 12:03:47 -04:00
|
|
|
let mut tables = self.tables.write().await;
|
2022-08-06 12:38:58 -04:00
|
|
|
let name = tname.into();
|
|
|
|
match tables.get(&name) {
|
2022-08-06 12:03:47 -04:00
|
|
|
Some(_) => Err(MTTError::new(format!("table {} already exists", name))),
|
|
|
|
None => {
|
2022-08-07 09:29:08 -04:00
|
|
|
let table = Table::new().await;
|
|
|
|
tables.insert(name, table.clone());
|
|
|
|
Ok(table)
|
2022-08-06 12:03:47 -04:00
|
|
|
}
|
|
|
|
}
|
2022-07-12 16:55:20 -04:00
|
|
|
}
|
2022-08-07 09:29:08 -04:00
|
|
|
|
|
|
|
pub async fn get_table(&self, name: &str) -> Option<Table> {
|
|
|
|
let tables = self.tables.read().await;
|
|
|
|
match tables.get(name) {
|
|
|
|
Some(tbl) => Some(tbl.clone()),
|
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
2022-07-12 16:55:20 -04:00
|
|
|
}
|
|
|
|
|
2022-08-07 09:29:08 -04:00
|
|
|
#[derive(Clone)]
|
2022-08-06 12:03:47 -04:00
|
|
|
pub struct Table;
|
2022-08-05 16:47:01 -04:00
|
|
|
|
|
|
|
impl Table {
|
2022-08-06 12:03:47 -04:00
|
|
|
pub async fn new() -> Self {
|
2022-08-05 16:47:01 -04:00
|
|
|
Self {}
|
|
|
|
}
|
2022-08-08 07:53:35 -04:00
|
|
|
|
|
|
|
async fn new_column(&self, _name: &str, _type: &str) {
|
|
|
|
}
|
2022-08-05 16:47:01 -04:00
|
|
|
}
|
|
|
|
|
2022-07-12 16:55:20 -04:00
|
|
|
#[cfg(test)]
|
2022-08-05 08:32:38 -04:00
|
|
|
mod database {
|
2022-07-12 16:55:20 -04:00
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[async_std::test]
|
2022-08-06 12:38:58 -04:00
|
|
|
async fn create_table_with_str() {
|
2022-08-06 12:03:47 -04:00
|
|
|
let db = MoreThanText::new().await;
|
|
|
|
db.new_table("william").await.unwrap();
|
|
|
|
}
|
|
|
|
|
2022-08-06 12:38:58 -04:00
|
|
|
#[async_std::test]
|
|
|
|
async fn create_table_with_string() {
|
|
|
|
let db = MoreThanText::new().await;
|
|
|
|
db.new_table("marvin".to_string()).await.unwrap();
|
|
|
|
}
|
|
|
|
|
2022-08-06 12:03:47 -04:00
|
|
|
#[async_std::test]
|
|
|
|
async fn table_names_are_unique() -> Result<(), String> {
|
|
|
|
let db = MoreThanText::new().await;
|
|
|
|
let name = "alexandar";
|
|
|
|
let msg = format!("table {} already exists", name);
|
|
|
|
db.new_table(name).await.unwrap();
|
|
|
|
match db.new_table(name).await {
|
|
|
|
Ok(_) => Err("Duplicate table names are not allowed.".to_string()),
|
|
|
|
Err(err) => {
|
|
|
|
if err.to_string() == msg {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(format!(
|
|
|
|
"Error message is incorrect: Got: '{}' Want: '{}'",
|
|
|
|
err.to_string(),
|
|
|
|
msg
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-07-12 16:55:20 -04:00
|
|
|
}
|
2022-08-07 09:29:08 -04:00
|
|
|
|
|
|
|
#[async_std::test]
|
|
|
|
async fn get_non_existant_table() {
|
|
|
|
let db = MoreThanText::new().await;
|
|
|
|
let table = db.get_table("missing").await;
|
|
|
|
assert!(table.is_none(), "There should be no table.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_std::test]
|
|
|
|
async fn get_a_table() {
|
|
|
|
let db = MoreThanText::new().await;
|
|
|
|
let name = "here";
|
|
|
|
db.new_table(name).await.unwrap();
|
|
|
|
let table = db.get_table(name).await;
|
|
|
|
assert!(table.is_some(), "Table should be found.");
|
|
|
|
}
|
2022-07-12 16:55:20 -04:00
|
|
|
}
|
2022-08-05 16:47:01 -04:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod table {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[async_std::test]
|
2022-08-08 07:53:35 -04:00
|
|
|
async fn add_column() {
|
|
|
|
let tbl = Table::new().await;
|
|
|
|
tbl.new_column("fred", "StaticString").await;
|
2022-08-05 16:47:01 -04:00
|
|
|
}
|
|
|
|
}
|