|
@@ -86,6 +86,31 @@ fn spend(world: &mut LedgerWorld, amount: String, asset: String, account: String
|
|
|
.push((account.parse().expect("valid account"), amount));
|
|
|
}
|
|
|
|
|
|
+#[then(expr = "withdraw from {word} {word} {word}")]
|
|
|
+async fn withdraw(world: &mut LedgerWorld, account: String, amount: String, asset: String) {
|
|
|
+ let asset = asset.parse::<Asset>().expect("valid asset");
|
|
|
+ let amount = asset.from_human(&amount).expect("valid amount");
|
|
|
+ let account = account.parse().expect("valid account");
|
|
|
+
|
|
|
+ world.variables.insert(
|
|
|
+ "latest".to_owned(),
|
|
|
+ world
|
|
|
+ .ledger
|
|
|
+ .withdrawal(&account, amount, "settled".into(), "test".to_owned(), None)
|
|
|
+ .await
|
|
|
+ .map(|x| x.revision_id)
|
|
|
+ .into(),
|
|
|
+ );
|
|
|
+}
|
|
|
+
|
|
|
+#[then("it fails")]
|
|
|
+async fn it_fails(world: &mut LedgerWorld) {
|
|
|
+ match world.variables.get("latest").expect("latest") {
|
|
|
+ Variable::RevIdResult(Err(_)) => {}
|
|
|
+ latest => panic!("expected error found: {:?}", latest),
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
#[given(expr = "receive {word} {word} in {word}")]
|
|
|
fn receive(world: &mut LedgerWorld, amount: String, asset: String, account: String) {
|
|
|
let asset = asset.parse::<Asset>().expect("valid asset");
|
|
@@ -98,20 +123,6 @@ fn receive(world: &mut LedgerWorld, amount: String, asset: String, account: Stri
|
|
|
.push((account.parse().expect("valid account"), amount));
|
|
|
}
|
|
|
|
|
|
-#[when(expr = "commit transaction {word} it fails")]
|
|
|
-async fn commit_transaction_and_expect_to_fail(world: &mut LedgerWorld, status: String) {
|
|
|
- let status = status.parse::<verax::Status>().expect("valid status");
|
|
|
-
|
|
|
- let spend = world.spend.take().expect("has spend");
|
|
|
- let receive = world.receive.take().expect("has receive");
|
|
|
-
|
|
|
- assert!(world
|
|
|
- .ledger
|
|
|
- .new_transaction("Transaction".to_owned(), status, spend, receive, None)
|
|
|
- .await
|
|
|
- .is_err());
|
|
|
-}
|
|
|
-
|
|
|
#[when(expr = "commit transaction {word} as {word}")]
|
|
|
async fn commit_transaction(world: &mut LedgerWorld, name: String, status: String) {
|
|
|
let status = status.parse::<verax::Status>().expect("valid status");
|