rename test modules

This commit is contained in:
Namekuji 2023-05-27 06:52:15 -04:00
parent 6bbfe1a6b4
commit 6698c00f78
No known key found for this signature in database
GPG Key ID: B541BD6E646CABC7
8 changed files with 77 additions and 71 deletions

View File

@ -17,12 +17,12 @@ pub fn get_database() -> Result<&'static DatabaseConnection, Error> {
} }
#[cfg(test)] #[cfg(test)]
mod tests { mod unit_test {
use super::get_database; use super::get_database;
use crate::error::Error; use crate::error::Error;
#[test] #[test]
fn unit_lib_error_uninitialized() { fn error_uninitialized() {
assert_eq!(get_database().unwrap_err(), Error::Uninitialized); assert_eq!(get_database().unwrap_err(), Error::Uninitialized);
} }
} }

View File

@ -60,7 +60,7 @@ pub static VALIDATOR: Lazy<JSONSchema> = Lazy::new(|| Antenna::validator());
// ---- // ----
#[cfg(test)] #[cfg(test)]
mod tests { mod unit_test {
use serde_json::json; use serde_json::json;
use crate::{entity::sea_orm_active_enums::AntennaSrcEnum, schema::antenna::AntennaSrc}; use crate::{entity::sea_orm_active_enums::AntennaSrcEnum, schema::antenna::AntennaSrc};
@ -68,13 +68,13 @@ mod tests {
use super::VALIDATOR; use super::VALIDATOR;
#[test] #[test]
fn unit_schema_src_from_active_enum() { fn src_from_active_enum() {
let src = AntennaSrc::try_from(AntennaSrcEnum::All).unwrap(); let src = AntennaSrc::try_from(AntennaSrcEnum::All).unwrap();
assert_eq!(src, AntennaSrc::All); assert_eq!(src, AntennaSrc::All);
} }
#[test] #[test]
fn unit_schema_antenna_valid() { fn antenna_valid() {
let instance = json!({ let instance = json!({
"id": "9f4x0bkx1u", "id": "9f4x0bkx1u",
"createdAt": "2023-05-24T06:56:14.323Z", "createdAt": "2023-05-24T06:56:14.323Z",
@ -98,7 +98,7 @@ mod tests {
} }
#[test] #[test]
fn unit_schema_antenna_invalid() { fn antenna_invalid() {
let instance = json!({ let instance = json!({
// "id" is required // "id" is required
"id": null, "id": null,

View File

@ -94,14 +94,14 @@ impl Schema<Self> for App {}
pub static VALIDATOR: Lazy<JSONSchema> = Lazy::new(|| App::validator()); pub static VALIDATOR: Lazy<JSONSchema> = Lazy::new(|| App::validator());
#[cfg(test)] #[cfg(test)]
mod tests { mod unit_test {
#[test] #[test]
fn unit_schema_app_valid() { fn valid() {
todo!(); todo!();
} }
#[test] #[test]
fn unit_shcmea_app_invalid() { fn invalid() {
todo!(); todo!();
} }
} }

View File

@ -81,8 +81,12 @@ async fn setup_model(db: &DatabaseConnection) {
.expect("Unable to setup predefined models"); .expect("Unable to setup predefined models");
} }
mod it_test {
use super::{cleanup, prepare};
#[tokio::test] #[tokio::test]
async fn inte_common_prepare_and_cleanup() { async fn can_prepare_and_cleanup() {
prepare().await; prepare().await;
cleanup().await; cleanup().await;
} }
}

View File

@ -1,3 +1,4 @@
mod it_test {
use model::{ use model::{
entity::{antenna, user}, entity::{antenna, user},
repository::Repository, repository::Repository,
@ -8,7 +9,7 @@ use sea_orm::{ColumnTrait, EntityTrait, QueryFilter};
use crate::{cleanup, prepare}; use crate::{cleanup, prepare};
#[tokio::test] #[tokio::test]
async fn inte_repository_antenna_can_pack() { async fn can_pack() {
prepare().await; prepare().await;
let db = database::get_database().unwrap(); let db = database::get_database().unwrap();
@ -58,3 +59,4 @@ async fn inte_repository_antenna_can_pack() {
cleanup().await; cleanup().await;
} }
}

View File

@ -21,13 +21,13 @@ pub fn create_id() -> Result<String, ErrorUninitialized> {
} }
#[cfg(test)] #[cfg(test)]
mod tests { mod unit_test {
use std::thread; use std::thread;
use crate::id; use crate::id;
#[test] #[test]
fn unit_id_can_generate() { fn can_generate_unique_ids() {
assert_eq!(id::create_id(), Err(id::ErrorUninitialized)); assert_eq!(id::create_id(), Err(id::ErrorUninitialized));
id::init_id(12); id::init_id(12);
assert_eq!(id::create_id().unwrap().len(), 12); assert_eq!(id::create_id().unwrap().len(), 12);

View File

@ -9,13 +9,13 @@ pub fn gen_string(length: u16) -> String {
} }
#[cfg(test)] #[cfg(test)]
mod tests { mod unit_test {
use std::thread; use std::thread;
use super::gen_string; use super::gen_string;
#[test] #[test]
fn unit_random_can_generate_string() { fn can_generate_unique_strings() {
assert_eq!(gen_string(16).len(), 16); assert_eq!(gen_string(16).len(), 16);
assert_ne!(gen_string(16), gen_string(16)); assert_ne!(gen_string(16), gen_string(16));
let s1 = thread::spawn(|| gen_string(16)); let s1 = thread::spawn(|| gen_string(16));

View File

@ -40,7 +40,7 @@
"test": "ava", "test": "ava",
"universal": "napi universal", "universal": "napi universal",
"version": "napi version", "version": "napi version",
"cargo:unit": "cargo test --workspace unit", "cargo:unit": "cargo test --workspace unit_test",
"cargo:integration": "cargo test --workspace inte -- --test-threads=1" "cargo:integration": "cargo test --workspace it_test -- --test-threads=1"
} }
} }