@@ -22,7 +22,7 @@ pub async fn test_create_lineitem(db: &DbConn) {
22
22
"home" : "0395555555" ,
23
23
"address" : "12 Test St, Testville, Vic, Australia"
24
24
} ) ) ,
25
- bakery_id : Set ( Some ( bakery_insert_res. last_insert_id ) ) ,
25
+ bakery_id : Set ( bakery_insert_res. last_insert_id ) ,
26
26
..Default :: default ( )
27
27
} ;
28
28
let baker_insert_res = Baker :: insert ( baker_bob)
@@ -36,7 +36,7 @@ pub async fn test_create_lineitem(db: &DbConn) {
36
36
price : Set ( rust_dec ( 10.25 ) ) ,
37
37
gluten_free : Set ( false ) ,
38
38
serial : Set ( Uuid :: new_v4 ( ) ) ,
39
- bakery_id : Set ( Some ( bakery_insert_res. last_insert_id ) ) ,
39
+ bakery_id : Set ( bakery_insert_res. last_insert_id ) ,
40
40
..Default :: default ( )
41
41
} ;
42
42
@@ -47,16 +47,20 @@ pub async fn test_create_lineitem(db: &DbConn) {
47
47
48
48
// Cake_Baker
49
49
let cake_baker = cakes_bakers:: ActiveModel {
50
- cake_id : Set ( cake_insert_res. last_insert_id ) ,
51
- baker_id : Set ( baker_insert_res. last_insert_id ) ,
50
+ cake_id : Set ( cake_insert_res
51
+ . last_insert_id
52
+ . expect ( "could not get last insert id for cake" ) ) ,
53
+ baker_id : Set ( baker_insert_res
54
+ . last_insert_id
55
+ . expect ( "could not get last insert id for baker" ) ) ,
52
56
} ;
53
57
let cake_baker_res = CakesBakers :: insert ( cake_baker. clone ( ) )
54
58
. exec ( db)
55
59
. await
56
60
. expect ( "could not insert cake_baker" ) ;
57
61
assert_eq ! (
58
62
cake_baker_res. last_insert_id,
59
- ( cake_baker. cake_id. unwrap( ) , cake_baker. baker_id. unwrap( ) )
63
+ Some ( ( cake_baker. cake_id. unwrap( ) , cake_baker. baker_id. unwrap( ) ) )
60
64
) ;
61
65
62
66
// Customer
@@ -72,8 +76,12 @@ pub async fn test_create_lineitem(db: &DbConn) {
72
76
73
77
// Order
74
78
let order_1 = order:: ActiveModel {
75
- bakery_id : Set ( bakery_insert_res. last_insert_id ) ,
76
- customer_id : Set ( customer_insert_res. last_insert_id ) ,
79
+ bakery_id : Set ( bakery_insert_res
80
+ . last_insert_id
81
+ . expect ( "could not get last insert id for bakery" ) ) ,
82
+ customer_id : Set ( customer_insert_res
83
+ . last_insert_id
84
+ . expect ( "could not get last insert id for customer" ) ) ,
77
85
total : Set ( rust_dec ( 7.55 ) ) ,
78
86
placed_at : Set ( Utc :: now ( ) . naive_utc ( ) ) ,
79
87
..Default :: default ( )
@@ -85,8 +93,12 @@ pub async fn test_create_lineitem(db: &DbConn) {
85
93
86
94
// Lineitem
87
95
let lineitem_1 = lineitem:: ActiveModel {
88
- cake_id : Set ( cake_insert_res. last_insert_id ) ,
89
- order_id : Set ( order_insert_res. last_insert_id ) ,
96
+ cake_id : Set ( cake_insert_res
97
+ . last_insert_id
98
+ . expect ( "could not get last insert id for cake" ) ) ,
99
+ order_id : Set ( order_insert_res
100
+ . last_insert_id
101
+ . expect ( "could not get last insert id for order" ) ) ,
90
102
price : Set ( rust_dec ( 7.55 ) ) ,
91
103
quantity : Set ( 1 ) ,
92
104
..Default :: default ( )
@@ -96,11 +108,14 @@ pub async fn test_create_lineitem(db: &DbConn) {
96
108
. await
97
109
. expect ( "could not insert lineitem" ) ;
98
110
99
- let lineitem: Option < lineitem:: Model > =
100
- Lineitem :: find_by_id ( lineitem_insert_res. last_insert_id )
101
- . one ( db)
102
- . await
103
- . expect ( "could not find lineitem" ) ;
111
+ let lineitem: Option < lineitem:: Model > = Lineitem :: find_by_id (
112
+ lineitem_insert_res
113
+ . last_insert_id
114
+ . expect ( "could not get last insert id for lineitem" ) ,
115
+ )
116
+ . one ( db)
117
+ . await
118
+ . expect ( "could not find lineitem" ) ;
104
119
105
120
assert ! ( lineitem. is_some( ) ) ;
106
121
let lineitem_model = lineitem. unwrap ( ) ;
@@ -121,5 +136,8 @@ pub async fn test_create_lineitem(db: &DbConn) {
121
136
. expect ( "could not find order" ) ;
122
137
123
138
let order_model = order. unwrap ( ) ;
124
- assert_eq ! ( order_model. customer_id, customer_insert_res. last_insert_id) ;
139
+ assert_eq ! (
140
+ Some ( order_model. customer_id) ,
141
+ customer_insert_res. last_insert_id
142
+ ) ;
125
143
}
0 commit comments