|
@@ -193,7 +193,12 @@ pub trait Batch<'a> {
|
|
|
|
|
|
/// Sets the tags for a given transaction. Any tag not included in this
|
|
|
/// vector should be removed
|
|
|
- async fn tag_transaction(&mut self, transaction_id: &TxId, tags: &[Tag]) -> Result<(), Error>;
|
|
|
+ async fn tag_transaction(
|
|
|
+ &mut self,
|
|
|
+ transaction_id: &TxId,
|
|
|
+ base_tx: &BaseTx,
|
|
|
+ tags: &[Tag],
|
|
|
+ ) -> Result<(), Error>;
|
|
|
|
|
|
/// Creates a relationship between an account and a transaction.
|
|
|
///
|
|
@@ -317,7 +322,7 @@ pub mod test {
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
use super::*;
|
|
|
- use crate::{config::Config, status::StatusManager, Transaction};
|
|
|
+ use crate::{config::Config, status::StatusManager, Ledger, Transaction};
|
|
|
use rand::Rng;
|
|
|
|
|
|
#[macro_export]
|
|
@@ -342,6 +347,7 @@ pub mod test {
|
|
|
$crate::storage_unit_test!(does_not_spend_unspendable_payments);
|
|
|
$crate::storage_unit_test!(spend_spendable_payments);
|
|
|
$crate::storage_unit_test!(relate_account_to_transaction);
|
|
|
+ $crate::storage_unit_test!(find_transactions_by_tags);
|
|
|
$crate::storage_unit_test!(not_spendable_new_payments_not_spendable);
|
|
|
};
|
|
|
}
|
|
@@ -585,6 +591,94 @@ pub mod test {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ pub async fn find_transactions_by_tags<T>(storage: T)
|
|
|
+ where
|
|
|
+ T: Storage + Send + Sync,
|
|
|
+ {
|
|
|
+ let ledger = Ledger::new(Config {
|
|
|
+ storage,
|
|
|
+ status: Default::default(),
|
|
|
+ });
|
|
|
+
|
|
|
+ for i in 0..10 {
|
|
|
+ let usd: Asset = "USD/2".parse().expect("valid asset");
|
|
|
+ let account = format!("account-{}", i).parse().expect("valid account");
|
|
|
+
|
|
|
+ let deposit = ledger
|
|
|
+ .deposit(
|
|
|
+ &account,
|
|
|
+ usd.from_human("100.99").expect("valid amount"),
|
|
|
+ "settled".into(),
|
|
|
+ format!("test deposit {}", i),
|
|
|
+ )
|
|
|
+ .await
|
|
|
+ .expect("valid deposit");
|
|
|
+
|
|
|
+ if i % 2 == 0 {
|
|
|
+ ledger
|
|
|
+ .set_tags(
|
|
|
+ deposit.revision_id,
|
|
|
+ vec![
|
|
|
+ "even".parse().expect("valid tag"),
|
|
|
+ "even".parse().expect("valid tag"),
|
|
|
+ "all".parse().expect("valid tag"),
|
|
|
+ ],
|
|
|
+ "add tags".to_owned(),
|
|
|
+ )
|
|
|
+ .await
|
|
|
+ .expect("tag tx");
|
|
|
+ } else {
|
|
|
+ ledger
|
|
|
+ .set_tags(
|
|
|
+ deposit.revision_id,
|
|
|
+ vec![
|
|
|
+ "odd".parse().expect("valid tag"),
|
|
|
+ "all".parse().expect("valid tag"),
|
|
|
+ ],
|
|
|
+ "add tags".to_owned(),
|
|
|
+ )
|
|
|
+ .await
|
|
|
+ .expect("tag tx");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ assert_eq!(
|
|
|
+ 5,
|
|
|
+ ledger
|
|
|
+ .get_transactions(Filter {
|
|
|
+ tags: vec!["even".parse().expect("valid tag")],
|
|
|
+ ..Default::default()
|
|
|
+ })
|
|
|
+ .await
|
|
|
+ .expect("valid filter")
|
|
|
+ .len()
|
|
|
+ );
|
|
|
+
|
|
|
+ assert_eq!(
|
|
|
+ 5,
|
|
|
+ ledger
|
|
|
+ .get_transactions(Filter {
|
|
|
+ tags: vec!["odd".parse().expect("valid tag")],
|
|
|
+ ..Default::default()
|
|
|
+ })
|
|
|
+ .await
|
|
|
+ .expect("valid filter")
|
|
|
+ .len()
|
|
|
+ );
|
|
|
+
|
|
|
+ assert_eq!(
|
|
|
+ 10,
|
|
|
+ ledger
|
|
|
+ .get_transactions(Filter {
|
|
|
+ tags: vec!["all".parse().expect("valid tag")],
|
|
|
+ ..Default::default()
|
|
|
+ })
|
|
|
+ .await
|
|
|
+ .expect("valid filter")
|
|
|
+ .len()
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
pub async fn spend_spendable_payments<T>(storage: T)
|
|
|
where
|
|
|
T: Storage + Send + Sync,
|