Fix shared related item

This commit is contained in:
Panagiotis Karatakis 2022-11-25 12:01:58 +02:00
parent 085091c7df
commit f3910c329b
2 changed files with 69 additions and 4 deletions

View File

@ -65,7 +65,7 @@ where
let data = stmt.all(db).await?;
let mut hashmap: HashMap<String, <R as EntityTrait>::Model> = data.into_iter().fold(
let hashmap: HashMap<String, <R as EntityTrait>::Model> = data.into_iter().fold(
HashMap::<String, <R as EntityTrait>::Model>::new(),
|mut acc: HashMap<String, <R as EntityTrait>::Model>,
value: <R as EntityTrait>::Model| {
@ -81,7 +81,11 @@ where
let result: Vec<Option<<R as EntityTrait>::Model>> = keys
.iter()
.map(|key| hashmap.remove(&format!("{:?}", key)))
.map(|key| {
hashmap
.get(&format!("{:?}", key))
.and_then(|val| Some(val.clone()))
})
.collect();
Ok(result)
@ -138,8 +142,9 @@ where
.iter()
.map(|key: &ValueTuple| {
hashmap
.remove(&format!("{:?}", key))
.expect("Failed to convert key to owned")
.get(&format!("{:?}", key))
.and_then(|val| Some(val.clone()))
.unwrap_or_else(|| vec![])
})
.collect();

View File

@ -63,6 +63,66 @@ async fn loader_load_one() -> Result<(), DbErr> {
Ok(())
}
#[sea_orm_macros::test]
#[cfg(any(
feature = "sqlx-mysql",
feature = "sqlx-sqlite",
feature = "sqlx-postgres"
))]
async fn loader_load_one_complex() -> Result<(), DbErr> {
let ctx = TestContext::new("loader_test_load_one").await;
create_tables(&ctx.db).await?;
let bakery = bakery::ActiveModel {
name: Set("SeaSide Bakery".to_owned()),
profit_margin: Set(10.4),
..Default::default()
}
.insert(&ctx.db)
.await
.expect("could not insert bakery");
let baker_1 = baker::ActiveModel {
name: Set("Baker 1".to_owned()),
contact_details: Set(serde_json::json!({
"mobile": "+61424000000",
"home": "0395555555",
"address": "12 Test St, Testville, Vic, Australia"
})),
bakery_id: Set(Some(bakery.id)),
..Default::default()
}
.insert(&ctx.db)
.await
.expect("could not insert baker");
let baker_2 = baker::ActiveModel {
name: Set("Baker 2".to_owned()),
contact_details: Set(serde_json::json!({})),
bakery_id: Set(Some(bakery.id)),
..Default::default()
}
.insert(&ctx.db)
.await
.expect("could not insert baker");
let bakers = baker::Entity::find()
.all(&ctx.db)
.await
.expect("Should load bakers");
let bakeries = bakers
.load_one(bakery::Entity::find(), &ctx.db)
.await
.expect("Should load bakeries");
assert_eq!(bakers, vec![baker_1, baker_2]);
assert_eq!(bakeries, vec![Some(bakery.clone()), Some(bakery.clone())]);
Ok(())
}
#[sea_orm_macros::test]
#[cfg(any(
feature = "sqlx-mysql",