use std::collections::HashMap; use chrono::{SubsecRound, Utc}; use laboratory::{expect, SpecContext}; use mongodb::bson::{doc, DateTime, Document}; use serde::{Deserialize, Serialize}; use serde_json::{Map, Value}; use sylvia_iot_broker::models::{network::QueryCond, Model}; use super::{super::common::network as common_test, TestState, STATE}; /// MongoDB schema. #[derive(Debug, Deserialize, Serialize)] struct Schema { #[serde(rename = "networkId")] network_id: String, code: String, #[serde(rename = "unitId")] unit_id: Option, #[serde(rename = "unitCode")] unit_code: Option, #[serde(rename = "createdAt")] created_at: DateTime, #[serde(rename = "modifiedAt")] modified_at: DateTime, #[serde(rename = "hostUri")] host_uri: String, name: String, info: Document, } const COL_NAME: &'static str = "network"; pub fn after_each_fn(state: &mut HashMap<&'static str, TestState>) -> () { let state = state.get_mut(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let conn = state.mongodb.as_ref().unwrap().get_connection(); let _ = runtime.block_on(async { conn.collection::(COL_NAME) .delete_many(Document::new()) .await }); } /// Test table initialization. pub fn init(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); let result = runtime.block_on(async { model.init().await }); expect(result.is_ok()).to_equal(true) } /// Test `get()` by specifying a network ID. pub fn get_by_network_id(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let conn = state.mongodb.as_ref().unwrap().get_connection(); let model = state.mongodb.as_ref().unwrap().network(); let now = Utc::now().trunc_subsecs(3); let item = Schema { network_id: "network_id_get_none".to_string(), code: "code_get_none".to_string(), unit_id: None, unit_code: None, created_at: now.into(), modified_at: now.into(), host_uri: "host_uri_get".to_string(), name: "".to_string(), info: Document::new(), }; if let Err(e) = runtime.block_on(async { conn.collection::(COL_NAME).insert_one(item).await }) { return Err(format!("insert_one() none error: {}", e)); } let cond = QueryCond { network_id: Some("network_id_not_exist"), ..Default::default() }; match runtime.block_on(async { model.get(&cond).await }) { Err(e) => return Err(format!("model.get() error: {}", e)), Ok(network) => match network { None => (), Some(_) => return Err(format!("should not get not-exist one")), }, }; let cond = QueryCond { network_id: Some("network_id_get_none"), ..Default::default() }; let network = match runtime.block_on(async { model.get(&cond).await }) { Err(e) => return Err(format!("model.get() none error: {}", e)), Ok(network) => match network { None => return Err("should get none one".to_string()), Some(network) => network, }, }; expect(network.network_id).to_equal("network_id_get_none".to_string())?; expect(network.code).to_equal("code_get_none".to_string())?; expect(network.unit_id).to_equal(None)?; expect(network.unit_code).to_equal(None)?; expect(network.created_at).to_equal(now)?; expect(network.modified_at).to_equal(now)?; expect(network.host_uri).to_equal("host_uri_get".to_string())?; expect(network.name).to_equal("".to_string())?; expect(network.info).to_equal(Map::::new())?; let item = Schema { network_id: "network_id_get_some".to_string(), code: "code_get_some".to_string(), unit_id: Some("unit_id_get".to_string()), unit_code: Some("unit_code_get".to_string()), created_at: now.into(), modified_at: now.into(), host_uri: "host_uri_get".to_string(), name: "name_get".to_string(), info: doc! { "boolean": false, "string": "string", "number": 1, "object": { "array": ["array"] } }, }; if let Err(e) = runtime.block_on(async { conn.collection::(COL_NAME).insert_one(item).await }) { return Err(format!("insert_one() some error: {}", e)); } let cond = QueryCond { network_id: Some("network_id_get_some"), ..Default::default() }; let network = match runtime.block_on(async { model.get(&cond).await }) { Err(e) => return Err(format!("model.get() some error: {}", e)), Ok(network) => match network { None => return Err("should get some one".to_string()), Some(network) => network, }, }; expect(network.network_id).to_equal("network_id_get_some".to_string())?; expect(network.code).to_equal("code_get_some".to_string())?; expect(network.unit_id).to_equal(Some("unit_id_get".to_string()))?; expect(network.unit_code).to_equal(Some("unit_code_get".to_string()))?; expect(network.created_at).to_equal(now)?; expect(network.modified_at).to_equal(now)?; expect(network.host_uri).to_equal("host_uri_get".to_string())?; expect(network.name).to_equal("name_get".to_string())?; match network.info.get("boolean") { Some(Value::Bool(v)) => match *v { false => (), true => return Err("wrong info.boolean value".to_string()), }, _ => return Err("wrong info.boolean type".to_string()), } match network.info.get("string") { Some(Value::String(v)) => match v.as_str() { "string" => (), _ => return Err("wrong info.string value".to_string()), }, _ => return Err("wrong info.string type".to_string()), } match network.info.get("number") { Some(Value::Number(v)) => match v.as_i64() { Some(1) => (), _ => return Err("wrong info.number value".to_string()), }, _ => return Err("wrong info.number type".to_string()), } match network.info.get("object") { Some(Value::Object(v)) => { if v.len() != 1 { return Err("wrong info.object key length not 1".to_string()); } match v.get("array") { Some(Value::Array(v)) => { if v.len() != 1 { return Err("wrong info.object.array length not 1".to_string()); } match v.get(0) { Some(Value::String(v)) => match v.as_str() { "array" => (), _ => return Err("wrong info.object.array content value".to_string()), }, _ => return Err("wrong info.object.array content type".to_string()), } } _ => return Err("wrong info.object.array type".to_string()), } } _ => return Err("wrong info.object type".to_string()), } Ok(()) } /// Test `get()` by specifying a network code. pub fn get_by_code(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let conn = state.mongodb.as_ref().unwrap().get_connection(); let model = state.mongodb.as_ref().unwrap().network(); let now = Utc::now().trunc_subsecs(3); let item = Schema { network_id: "network_id_get".to_string(), code: "code_get".to_string(), unit_id: None, unit_code: None, created_at: now.into(), modified_at: now.into(), host_uri: "host_uri_get".to_string(), name: "name_get".to_string(), info: Document::new(), }; if let Err(e) = runtime.block_on(async { conn.collection::(COL_NAME).insert_one(item).await }) { return Err(format!("insert_one() error: {}", e)); } let cond = QueryCond { code: Some("code_not_exist"), ..Default::default() }; match runtime.block_on(async { model.get(&cond).await }) { Err(e) => return Err(format!("model.get() error: {}", e)), Ok(network) => match network { None => (), Some(_) => return Err(format!("should not get not-exist one")), }, }; let cond = QueryCond { code: Some("code_get"), ..Default::default() }; let network = match runtime.block_on(async { model.get(&cond).await }) { Err(e) => return Err(format!("model.get() error: {}", e)), Ok(network) => match network { None => return Err("should get one".to_string()), Some(network) => network, }, }; expect(network.network_id).to_equal("network_id_get".to_string())?; expect(network.code).to_equal("code_get".to_string())?; expect(network.unit_id).to_equal(None)?; expect(network.unit_code).to_equal(None)?; expect(network.created_at).to_equal(now)?; expect(network.modified_at).to_equal(now)?; expect(network.host_uri).to_equal("host_uri_get".to_string())?; expect(network.name).to_equal("name_get".to_string())?; expect(network.info).to_equal(Map::::new()) } /// Test `get()` by specifying a pair of unit ID and network ID. pub fn get_by_unit_network(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let conn = state.mongodb.as_ref().unwrap().get_connection(); let model = state.mongodb.as_ref().unwrap().network(); let now = Utc::now().trunc_subsecs(3); let network_id_get_none = "network_id_get_none"; let network_id_get_some = "network_id_get_some"; let network_id_not_get = "network_id_not_get"; let network_id_get_other = "network_id_get_other"; let item = Schema { network_id: network_id_get_none.to_string(), code: "code_get".to_string(), unit_id: None, unit_code: None, created_at: now.into(), modified_at: now.into(), host_uri: "host_uri_get".to_string(), name: "name_get".to_string(), info: Document::new(), }; if let Err(e) = runtime.block_on(async { conn.collection::(COL_NAME).insert_one(item).await }) { return Err(format!("insert_one() none error: {}", e)); } let item = Schema { network_id: network_id_get_some.to_string(), code: "code_get".to_string(), unit_id: Some("unit_id_get".to_string()), unit_code: Some("unit_code_get".to_string()), created_at: now.into(), modified_at: now.into(), host_uri: "host_uri_get".to_string(), name: "name_get".to_string(), info: Document::new(), }; if let Err(e) = runtime.block_on(async { conn.collection::(COL_NAME).insert_one(item).await }) { return Err(format!("insert_one() some error: {}", e)); } let item = Schema { network_id: network_id_not_get.to_string(), code: "code_not_get".to_string(), unit_id: Some("unit_id_get".to_string()), unit_code: Some("unit_code_get".to_string()), created_at: now.into(), modified_at: now.into(), host_uri: "host_uri_get".to_string(), name: "name_get".to_string(), info: Document::new(), }; if let Err(e) = runtime.block_on(async { conn.collection::(COL_NAME).insert_one(item).await }) { return Err(format!("insert_one() not-get error: {}", e)); } let item = Schema { network_id: network_id_get_other.to_string(), code: "code_get".to_string(), unit_id: Some("unit_id_get_other".to_string()), unit_code: Some("unit_code_get_other".to_string()), created_at: now.into(), modified_at: now.into(), host_uri: "host_uri_get".to_string(), name: "name_get".to_string(), info: Document::new(), }; if let Err(e) = runtime.block_on(async { conn.collection::(COL_NAME).insert_one(item).await }) { return Err(format!("insert_one() other error: {}", e)); } let cond = QueryCond { network_id: Some(network_id_get_none), unit_id: Some(None), ..Default::default() }; let network = match runtime.block_on(async { model.get(&cond).await }) { Err(e) => return Err(format!("model.get() none error: {}", e)), Ok(network) => match network { None => return Err("should get none one".to_string()), Some(network) => network, }, }; if network.network_id.as_str() != network_id_get_none { return Err("get wrong network".to_string()); } let cond = QueryCond { network_id: Some(network_id_get_some), unit_id: Some(Some("unit_id_get")), ..Default::default() }; let network = match runtime.block_on(async { model.get(&cond).await }) { Err(e) => return Err(format!("model.get() some error: {}", e)), Ok(network) => match network { None => return Err("should get some one".to_string()), Some(network) => network, }, }; if network.network_id.as_str() != network_id_get_some { return Err("get wrong network".to_string()); } let cond = QueryCond { network_id: Some(network_id_get_other), unit_id: Some(Some("unit_id_get")), ..Default::default() }; match runtime.block_on(async { model.get(&cond).await }) { Err(e) => return Err(format!("model.get() other error: {}", e)), Ok(network) => match network { None => (), Some(_) => return Err("should not get other one".to_string()), }, } Ok(()) } /// Test `add()`. pub fn add(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::add(runtime, model) } /// Test `add()` with duplicate key. pub fn add_dup(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::add_dup(runtime, model) } /// Test `del()` by specifying a network ID. pub fn del_by_network_id(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::del_by_network_id(runtime, model) } /// Test `del()` twice. pub fn del_twice(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::del_twice(runtime, model) } /// Test `del()` by specifying a unit ID. pub fn del_by_unit_id(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::del_by_unit_id(runtime, model) } /// Test `del()` by specifying a pair of unit ID and network ID. pub fn del_by_unit_network(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::del_by_unit_network(runtime, model) } /// Test `update()`. pub fn update(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::update(runtime, model) } /// Test `update()` with a non-exist condition. pub fn update_not_exist(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::update_not_exist(runtime, model) } /// Test `update()` with invalid update content. pub fn update_invalid(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::update_invalid(runtime, model) } /// Test `count()`. pub fn count(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::count(runtime, model) } /// Test `list()`. pub fn list(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::list(runtime, model) } /// Test `list()` with sorting. pub fn list_sort(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::list_sort(runtime, model) } /// Test `list()` with offset/limit. pub fn list_offset_limit(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::list_offset_limit(runtime, model) } /// Test `list()` with cursors. pub fn list_cursor(context: &mut SpecContext) -> Result<(), String> { let state = context.state.borrow(); let state = state.get(STATE).unwrap(); let runtime = state.runtime.as_ref().unwrap(); let model = state.mongodb.as_ref().unwrap().network(); common_test::list_cursor(runtime, model) }