123 lines
3.6 KiB
Rust
123 lines
3.6 KiB
Rust
#![allow(unused_imports, dead_code)]
|
|
|
|
pub mod common;
|
|
|
|
pub use common::{TestContext, features::*, setup::*};
|
|
use pretty_assertions::assert_eq;
|
|
use sea_orm::{DatabaseConnection, IntoActiveModel, Set, entity::prelude::*};
|
|
|
|
#[sea_orm_macros::test]
|
|
#[cfg(not(feature = "sync"))]
|
|
async fn main() -> Result<(), DbErr> {
|
|
let ctx = TestContext::new("features_parallel_tests").await;
|
|
create_metadata_table(&ctx.db).await?;
|
|
crud_in_parallel(&ctx.db).await?;
|
|
ctx.delete().await;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(not(feature = "sync"))]
|
|
pub async fn crud_in_parallel(db: &DatabaseConnection) -> Result<(), DbErr> {
|
|
let metadata = [
|
|
metadata::Model {
|
|
uuid: Uuid::new_v4(),
|
|
ty: "Type".to_owned(),
|
|
key: "markup".to_owned(),
|
|
value: "1.18".to_owned(),
|
|
bytes: vec![1, 2, 3],
|
|
date: Some(Date::from_ymd_opt(2021, 9, 27).unwrap()),
|
|
time: Some(Time::from_hms_opt(11, 32, 55).unwrap()),
|
|
},
|
|
metadata::Model {
|
|
uuid: Uuid::new_v4(),
|
|
ty: "Type".to_owned(),
|
|
key: "exchange_rate".to_owned(),
|
|
value: "0.78".to_owned(),
|
|
bytes: vec![1, 2, 3],
|
|
date: Some(Date::from_ymd_opt(2021, 9, 27).unwrap()),
|
|
time: Some(Time::from_hms_opt(11, 32, 55).unwrap()),
|
|
},
|
|
metadata::Model {
|
|
uuid: Uuid::new_v4(),
|
|
ty: "Type".to_owned(),
|
|
key: "service_charge".to_owned(),
|
|
value: "1.1".to_owned(),
|
|
bytes: vec![1, 2, 3],
|
|
date: None,
|
|
time: None,
|
|
},
|
|
];
|
|
|
|
let _insert_res = futures_util::future::try_join_all([
|
|
metadata[0].clone().into_active_model().insert(db),
|
|
metadata[1].clone().into_active_model().insert(db),
|
|
metadata[2].clone().into_active_model().insert(db),
|
|
])
|
|
.await?;
|
|
|
|
let find_res = futures_util::future::try_join_all([
|
|
Metadata::find_by_id(metadata[0].uuid).one(db),
|
|
Metadata::find_by_id(metadata[1].uuid).one(db),
|
|
Metadata::find_by_id(metadata[2].uuid).one(db),
|
|
])
|
|
.await?;
|
|
|
|
assert_eq!(
|
|
metadata,
|
|
[
|
|
find_res[0].clone().unwrap(),
|
|
find_res[1].clone().unwrap(),
|
|
find_res[2].clone().unwrap(),
|
|
]
|
|
);
|
|
|
|
let mut active_models = (
|
|
find_res[0].clone().unwrap().into_active_model(),
|
|
find_res[1].clone().unwrap().into_active_model(),
|
|
find_res[2].clone().unwrap().into_active_model(),
|
|
);
|
|
|
|
active_models.0.bytes = Set(vec![0]);
|
|
active_models.1.bytes = Set(vec![1]);
|
|
active_models.2.bytes = Set(vec![2]);
|
|
|
|
let _update_res = futures_util::future::try_join_all([
|
|
active_models.0.clone().update(db),
|
|
active_models.1.clone().update(db),
|
|
active_models.2.clone().update(db),
|
|
])
|
|
.await?;
|
|
|
|
let find_res = futures_util::future::try_join_all([
|
|
Metadata::find_by_id(metadata[0].uuid).one(db),
|
|
Metadata::find_by_id(metadata[1].uuid).one(db),
|
|
Metadata::find_by_id(metadata[2].uuid).one(db),
|
|
])
|
|
.await?;
|
|
|
|
assert_eq!(
|
|
[
|
|
active_models.0.bytes.clone().unwrap(),
|
|
active_models.1.bytes.clone().unwrap(),
|
|
active_models.2.bytes.clone().unwrap(),
|
|
],
|
|
[
|
|
find_res[0].clone().unwrap().bytes,
|
|
find_res[1].clone().unwrap().bytes,
|
|
find_res[2].clone().unwrap().bytes,
|
|
]
|
|
);
|
|
|
|
let _delete_res = futures_util::future::try_join_all([
|
|
active_models.0.delete(db),
|
|
active_models.1.delete(db),
|
|
active_models.2.delete(db),
|
|
])
|
|
.await?;
|
|
|
|
assert_eq!(Metadata::find().all(db).await?, []);
|
|
|
|
Ok(())
|
|
}
|