-
-
Notifications
You must be signed in to change notification settings - Fork 523
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
182 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
pub use super::*; | ||
use rust_decimal_macros::dec; | ||
|
||
pub async fn test_create_lineitem(db: &DbConn) { | ||
// Bakery | ||
let seaside_bakery = bakery::ActiveModel { | ||
name: Set("SeaSide Bakery".to_owned()), | ||
profit_margin: Set(10.4), | ||
..Default::default() | ||
}; | ||
let bakery_insert_res: InsertResult = Bakery::insert(seaside_bakery) | ||
.exec(db) | ||
.await | ||
.expect("could not insert bakery"); | ||
|
||
// Baker | ||
let baker_bob = baker::ActiveModel { | ||
name: Set("Baker Bob".to_owned()), | ||
bakery_id: Set(Some(bakery_insert_res.last_insert_id as i32)), | ||
..Default::default() | ||
}; | ||
let baker_insert_res: InsertResult = Baker::insert(baker_bob) | ||
.exec(db) | ||
.await | ||
.expect("could not insert baker"); | ||
|
||
// Cake | ||
let mud_cake = cake::ActiveModel { | ||
name: Set("Mud Cake".to_owned()), | ||
price: Set(10.25), | ||
gluten_free: Set(false), | ||
bakery_id: Set(Some(bakery_insert_res.last_insert_id as i32)), | ||
..Default::default() | ||
}; | ||
|
||
let cake_insert_res: InsertResult = Cake::insert(mud_cake) | ||
.exec(db) | ||
.await | ||
.expect("could not insert cake"); | ||
|
||
// Cake_Baker | ||
let cake_baker = cakes_bakers::ActiveModel { | ||
cake_id: Set(cake_insert_res.last_insert_id as i32), | ||
baker_id: Set(baker_insert_res.last_insert_id as i32), | ||
..Default::default() | ||
}; | ||
let _cake_baker_res: InsertResult = CakesBakers::insert(cake_baker) | ||
.exec(db) | ||
.await | ||
.expect("could not insert cake_baker"); | ||
|
||
// Customer | ||
let customer_kate = customer::ActiveModel { | ||
name: Set("Kate".to_owned()), | ||
notes: Set("Loves cheese cake".to_owned()), | ||
..Default::default() | ||
}; | ||
let customer_insert_res: InsertResult = Customer::insert(customer_kate) | ||
.exec(db) | ||
.await | ||
.expect("could not insert customer"); | ||
|
||
// Order | ||
let order_1 = order::ActiveModel { | ||
bakery_id: Set(Some(bakery_insert_res.last_insert_id as i32)), | ||
customer_id: Set(Some(customer_insert_res.last_insert_id as i32)), | ||
placed_at: Set("placeholder".to_string()), | ||
..Default::default() | ||
}; | ||
let order_insert_res: InsertResult = Order::insert(order_1) | ||
.exec(db) | ||
.await | ||
.expect("could not insert order"); | ||
|
||
// Lineitem | ||
let lineitem_1 = lineitem::ActiveModel { | ||
cake_id: Set(Some(cake_insert_res.last_insert_id as i32)), | ||
order_id: Set(Some(order_insert_res.last_insert_id as i32)), | ||
price: Set(dec!(7.55)), | ||
..Default::default() | ||
}; | ||
let lineitem_insert_res: InsertResult = Lineitem::insert(lineitem_1) | ||
.exec(db) | ||
.await | ||
.expect("could not insert lineitem"); | ||
|
||
let lineitem: Option<lineitem::Model> = | ||
Lineitem::find_by_id(lineitem_insert_res.last_insert_id) | ||
.one(db) | ||
.await | ||
.expect("could not find lineitem"); | ||
|
||
assert!(lineitem.is_some()); | ||
let lineitem_model = lineitem.unwrap(); | ||
// assert_eq!(lineitem_model.price, dec!(7.55)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters