Cesar Rodas 10 hónapja
szülő
commit
c9ce57175c
2 módosított fájl, 24 hozzáadás és 1 törlés
  1. 2 1
      utxo/tests/deposit.feature
  2. 22 0
      utxo/tests/negative_balance.feature

+ 2 - 1
utxo/tests/deposit.feature

@@ -6,7 +6,8 @@ Feature: Deposits
 
   Scenario: User deposit funds and it confirms
     Given a pending deposit @tx1 of 10000 USD/2 for @account1
-    And update @tx1 set status to settled
+    Then @account1 has no balance
+    Given update @tx1 set status to settled
     Then @account1 has balance of 10000 USD/2
 
   Scenario: User deposit funds and it fails

+ 22 - 0
utxo/tests/negative_balance.feature

@@ -0,0 +1,22 @@
+Feature: Transactions with negative balance
+
+  Scenario: User with negative deposit cannot transact
+    Given a settled deposit @tx1 of 10000 USD/2 for @account1
+    And a settled deposit @tx2 of -11000 USD/2 for @account1
+    Then @account1 has balance of -1000 USD/2
+    Given a new transaction
+    And spend 1000 USD/2 from @account1
+    And receive 1000 USD/2 in @account2
+    When commit transaction @tx2 as settled
+    Then @tx2 has failed
+    Then @account1 has balance of -1000 USD/2
+    Then @account2 has no balance
+
+  Scenario: User with negative deposit cannot withdraw
+    Given a settled deposit @tx1 of 10000 USD/2 for @account1
+    And a settled deposit @tx2 of -11000 USD/2 for @account1
+    And a settled deposit @tx3 of 1.1 BTC/8 for @account1
+    Then @account1 has balance of -1000 USD/2
+    Then @account1 has balance of 1.1 BTC/8
+    Then withdraw 0.5 BTC/8
+    Then it fails