|
@@ -185,7 +185,7 @@ pub trait Storage<'a> {
|
|
|
#[cfg(test)]
|
|
|
pub mod test {
|
|
|
use super::*;
|
|
|
- use crate::{payment::SpentInfo, AssetDefinition, AssetManager};
|
|
|
+ use crate::{payment::SpentInfo, AssetManager};
|
|
|
use rand::Rng;
|
|
|
use strum::IntoEnumIterator;
|
|
|
|
|
@@ -236,13 +236,13 @@ pub mod test {
|
|
|
)
|
|
|
.expect("valid tx");
|
|
|
let mut storing = storage.begin().await.expect("valid tx");
|
|
|
- storing.store_transaction(&deposit).await;
|
|
|
- storing.rollback().await;
|
|
|
+ storing.store_transaction(&deposit).await.expect("store tx");
|
|
|
+ storing.rollback().await.expect("rollback");
|
|
|
assert!(storage.get_transaction(&deposit.id()).await.is_err());
|
|
|
|
|
|
let mut storing = storage.begin().await.expect("valid tx");
|
|
|
- storing.store_transaction(&deposit).await;
|
|
|
- storing.commit().await;
|
|
|
+ storing.store_transaction(&deposit).await.expect("store tx");
|
|
|
+ storing.commit().await.expect("commit");
|
|
|
assert!(storage.get_transaction(&deposit.id()).await.is_ok());
|
|
|
}
|
|
|
|
|
@@ -262,14 +262,14 @@ pub mod test {
|
|
|
)
|
|
|
.expect("valid tx");
|
|
|
let mut storing = storage.begin().await.expect("valid tx");
|
|
|
- storing.store_transaction(&deposit).await;
|
|
|
+ storing.store_transaction(&deposit).await.expect("store tx");
|
|
|
assert!(storage.get_transaction(&deposit.id()).await.is_err());
|
|
|
- storing.rollback().await;
|
|
|
+ storing.rollback().await.expect("rollback");
|
|
|
assert!(storage.get_transaction(&deposit.id()).await.is_err());
|
|
|
|
|
|
let mut storing = storage.begin().await.expect("valid tx");
|
|
|
- storing.store_transaction(&deposit).await;
|
|
|
- storing.commit().await;
|
|
|
+ storing.store_transaction(&deposit).await.expect("store tx");
|
|
|
+ storing.commit().await.expect("commit");
|
|
|
assert!(storage.get_transaction(&deposit.id()).await.is_ok());
|
|
|
}
|
|
|
|
|
@@ -423,7 +423,7 @@ pub mod test {
|
|
|
let target_inputs_per_account = 20;
|
|
|
|
|
|
for account in &accounts {
|
|
|
- for i in 0..target_inputs_per_account {
|
|
|
+ for _ in 0..target_inputs_per_account {
|
|
|
let amount = assets
|
|
|
.human_amount_by_name("USD", &format!("{}", rng.gen_range(-1000.0..1000.0)))
|
|
|
.expect("valid amount");
|
|
@@ -491,7 +491,7 @@ pub mod test {
|
|
|
.expect("valid tx");
|
|
|
|
|
|
let mut batch = storage.begin().await.expect("valid tx");
|
|
|
- batch.store_transaction(&deposit).await;
|
|
|
+ batch.store_transaction(&deposit).await.expect("is ok");
|
|
|
batch
|
|
|
.relate_account_to_transaction(&deposit, &account1)
|
|
|
.await
|
|
@@ -570,7 +570,7 @@ pub mod test {
|
|
|
.await
|
|
|
.expect("valid payment");
|
|
|
|
|
|
- writer.commit().await.is_ok();
|
|
|
+ writer.commit().await.expect("is ok");
|
|
|
|
|
|
assert!(storage
|
|
|
.get_balance(&account)
|