Got backend using errors.
This commit is contained in:
parent
cb9bac9d8a
commit
55ffa538e8
@ -9,7 +9,7 @@ use std::{
|
|||||||
};
|
};
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
const RESPONS_TO: [MsgType; 2] = [MsgType::Document, MsgType::SessionValidated];
|
const RESPONS_TO: [MsgType; 3] = [MsgType::Document, MsgType::Error, MsgType::SessionValidated];
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct ClientChannel {
|
pub struct ClientChannel {
|
||||||
|
@ -31,11 +31,18 @@ impl Document {
|
|||||||
fn listen(&mut self) {
|
fn listen(&mut self) {
|
||||||
loop {
|
loop {
|
||||||
let msg = self.rx.recv().unwrap();
|
let msg = self.rx.recv().unwrap();
|
||||||
let mut reply = msg.reply(MsgType::Document);
|
let mut reply = match msg.get_data("name") {
|
||||||
if msg.get_data("name").is_some() {
|
Some(name) => {
|
||||||
reply = msg.reply(MsgType::Error);
|
if name.to_string() == "root" {
|
||||||
reply.add_data("error_type", ErrorType::DocumentNotFound);
|
msg.reply(MsgType::Document)
|
||||||
}
|
} else {
|
||||||
|
let mut output = msg.reply(MsgType::Error);
|
||||||
|
output.add_data("error_type", ErrorType::DocumentNotFound);
|
||||||
|
output
|
||||||
|
}
|
||||||
|
},
|
||||||
|
None => msg.reply(MsgType::Document),
|
||||||
|
};
|
||||||
reply.add_data("doc", "Something goes hwew");
|
reply.add_data("doc", "Something goes hwew");
|
||||||
self.queue.send(reply).unwrap();
|
self.queue.send(reply).unwrap();
|
||||||
}
|
}
|
||||||
@ -95,4 +102,18 @@ pub mod documents {
|
|||||||
None => unreachable!("should contain error type"),
|
None => unreachable!("should contain error type"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn root_always_exists() {
|
||||||
|
let (queue, rx) = setup_document();
|
||||||
|
let name = format!("name-{}", Uuid::new_v4());
|
||||||
|
let mut msg = Message::new(MsgType::DocumentRequest);
|
||||||
|
msg.add_data("name", "root");
|
||||||
|
queue.send(msg);
|
||||||
|
let reply = rx.recv().unwrap();
|
||||||
|
match reply.get_msg_type() {
|
||||||
|
MsgType::Document => {},
|
||||||
|
_ => unreachable!("Got '{:?}': should have been a document", reply.get_msg_type()),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
131
src/lib.rs
131
src/lib.rs
@ -13,11 +13,94 @@ use queue::{Message, MsgType, Queue};
|
|||||||
use session::Session;
|
use session::Session;
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
|
pub enum ActionType {
|
||||||
|
Get,
|
||||||
|
Add,
|
||||||
|
Update,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
pub enum ErrorType {
|
pub enum ErrorType {
|
||||||
DocumentNotFound,
|
DocumentNotFound,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub struct MTTReply {
|
||||||
|
document: String,
|
||||||
|
error_type: Option<ErrorType>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl MTTReply {
|
||||||
|
fn new(msg: Message) -> Self {
|
||||||
|
Self {
|
||||||
|
document: match msg.get_data("doc") {
|
||||||
|
Some(doc) => doc.to_string(),
|
||||||
|
None => "".to_string(),
|
||||||
|
},
|
||||||
|
error_type: match msg.get_data("error_type") {
|
||||||
|
Some(err) => Some(err.to_error_type().unwrap()),
|
||||||
|
None => None,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_document(&self) -> String {
|
||||||
|
self.document.clone()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_error(&self) -> Option<ErrorType> {
|
||||||
|
self.error_type.clone()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod mtt_replies {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn create_reply_with_no_error() {
|
||||||
|
let mut msg = Message::new(MsgType::Document);
|
||||||
|
let content = format!("content-{}", Uuid::new_v4());
|
||||||
|
msg.add_data("doc", content.to_string());
|
||||||
|
let reply = MTTReply::new(msg);
|
||||||
|
assert!(reply.get_error().is_none());
|
||||||
|
assert_eq!(reply.get_document(), content);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn create_reply_with_error() {
|
||||||
|
let mut msg = Message::new(MsgType::Error);
|
||||||
|
msg.add_data("error_type", ErrorType::DocumentNotFound);
|
||||||
|
let reply = MTTReply::new(msg);
|
||||||
|
match reply.get_error() {
|
||||||
|
Some(err) => match err {
|
||||||
|
ErrorType::DocumentNotFound => {},
|
||||||
|
},
|
||||||
|
None => unreachable!("should return an error type"),
|
||||||
|
}
|
||||||
|
assert_eq!(reply.get_document(), "");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn no_error() {
|
||||||
|
let msg = Message::new(MsgType::Document);
|
||||||
|
let reply = MTTReply::new(msg);
|
||||||
|
assert!(reply.get_error().is_none());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn some_error() {
|
||||||
|
let mut msg = Message::new(MsgType::Error);
|
||||||
|
msg.add_data("error_type", ErrorType::DocumentNotFound);
|
||||||
|
let reply = MTTReply::new(msg);
|
||||||
|
match reply.get_error() {
|
||||||
|
Some(err) => match err {
|
||||||
|
ErrorType::DocumentNotFound => {},
|
||||||
|
},
|
||||||
|
None => unreachable!("should return an error type"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct MoreThanText {
|
pub struct MoreThanText {
|
||||||
client_channel: ClientChannel,
|
client_channel: ClientChannel,
|
||||||
@ -48,11 +131,55 @@ impl MoreThanText {
|
|||||||
reply.get_data("sess_id").unwrap().to_uuid().unwrap()
|
reply.get_data("sess_id").unwrap().to_uuid().unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_document(&self, sess_id: Uuid) -> String {
|
pub fn get_document<S>(&self, sess_id: Uuid, action: ActionType, doc_name: S) -> MTTReply where S: Into<String> {
|
||||||
let mut msg = Message::new(MsgType::DocumentRequest);
|
let mut msg = Message::new(MsgType::DocumentRequest);
|
||||||
msg.add_data("sess_id", sess_id);
|
msg.add_data("sess_id", sess_id);
|
||||||
|
msg.add_data("name", doc_name.into());
|
||||||
let rx = self.client_channel.send(msg);
|
let rx = self.client_channel.send(msg);
|
||||||
let reply = rx.recv().unwrap();
|
let reply = rx.recv().unwrap();
|
||||||
reply.get_data("doc").unwrap().to_string()
|
MTTReply::new(reply)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod mtt {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn session_id_is_unique() {
|
||||||
|
let mut mtt = MoreThanText::new();
|
||||||
|
let input: Option<String> = None;
|
||||||
|
let mut ids: Vec<Uuid> = Vec::new();
|
||||||
|
for _ in 0..10 {
|
||||||
|
let id = mtt.validate_session(input.clone());
|
||||||
|
assert!(!ids.contains(&id));
|
||||||
|
ids.push(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn reuse_existing_session() {
|
||||||
|
let mut mtt = MoreThanText::new();
|
||||||
|
let initial: Option<String> = None;
|
||||||
|
let id = mtt.validate_session(initial);
|
||||||
|
let output = mtt.validate_session(Some(id.clone()));
|
||||||
|
assert_eq!(output, id);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn get_root_document_with_str() {
|
||||||
|
let mut mtt = MoreThanText::new();
|
||||||
|
let id = mtt.validate_session(Some(Uuid::new_v4()));
|
||||||
|
let output = mtt.get_document(id, ActionType::Get, "root");
|
||||||
|
assert!(output.get_error().is_none());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn get_root_document_with_string() {
|
||||||
|
let mut mtt = MoreThanText::new();
|
||||||
|
let id = mtt.validate_session(Some(Uuid::new_v4()));
|
||||||
|
let output = mtt.get_document(id, ActionType::Get, "root".to_string());
|
||||||
|
assert!(output.get_error().is_none());
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
16
src/main.rs
16
src/main.rs
@ -1,12 +1,12 @@
|
|||||||
use axum::{
|
use axum::{
|
||||||
extract::{Extension, FromRequestParts, State},
|
extract::{Extension, FromRequestParts, State},
|
||||||
http::request::Parts,
|
http::{request::Parts, StatusCode},
|
||||||
response::IntoResponse,
|
response::IntoResponse,
|
||||||
routing::{get, post},
|
routing::{get, post},
|
||||||
RequestPartsExt, Router,
|
RequestPartsExt, Router,
|
||||||
};
|
};
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
use morethantext::MoreThanText;
|
use morethantext::{ActionType, MoreThanText};
|
||||||
use std::convert::Infallible;
|
use std::convert::Infallible;
|
||||||
use tokio::{spawn, sync::mpsc::channel};
|
use tokio::{spawn, sync::mpsc::channel};
|
||||||
use tower_cookies::{Cookie, CookieManagerLayer, Cookies};
|
use tower_cookies::{Cookie, CookieManagerLayer, Cookies};
|
||||||
@ -83,10 +83,14 @@ where
|
|||||||
async fn mtt_conn(sess_id: SessionID, state: State<MoreThanText>) -> impl IntoResponse {
|
async fn mtt_conn(sess_id: SessionID, state: State<MoreThanText>) -> impl IntoResponse {
|
||||||
let (tx, mut rx) = channel(1);
|
let (tx, mut rx) = channel(1);
|
||||||
spawn(async move {
|
spawn(async move {
|
||||||
tx.send(state.get_document(sess_id.0)).await.unwrap();
|
tx.send(state.get_document(sess_id.0, ActionType::Get, "root")).await.unwrap();
|
||||||
});
|
});
|
||||||
let content = rx.recv().await.unwrap();
|
let reply = rx.recv().await.unwrap();
|
||||||
content
|
let status = match reply.get_error() {
|
||||||
|
Some(_) => StatusCode::NOT_FOUND,
|
||||||
|
None => StatusCode::OK,
|
||||||
|
};
|
||||||
|
(status, reply.get_document())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
@ -97,7 +101,7 @@ mod servers {
|
|||||||
http::{
|
http::{
|
||||||
header::{COOKIE, SET_COOKIE},
|
header::{COOKIE, SET_COOKIE},
|
||||||
Method,
|
Method,
|
||||||
Request, StatusCode,
|
Request,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
use tower::ServiceExt;
|
use tower::ServiceExt;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user