예제 #1
0
 def test_get_for_user(self):
     self.add_money_for(self.user_id, 100)
     account = self.synchronize(accounts.get(self.connection, self.user_id))
     self.assertEqual(100, account.balance)
     record = self.synchronize(withdraw_queue.put(
         self.connection, self.user_id, 50, '{"wallet": "test wallet"}'
     ))
     records = self.synchronize(withdraw_queue.get_for_user(self.connection, self.user_id))
     self.assertIn(record.id, {x.id for x in records})
예제 #2
0
    def test_rollback_completed(self):
        self.add_money_for(self.user_id, 100)
        request = self.synchronize(withdraw_queue.put(self.connection, self.user_id, 20, '{}'))
        self.synchronize(withdraw_queue.complete(self.connection, request.id))

        self.synchronize(withdraw_queue.rollback(self.connection, request.id))
        account = self.synchronize(accounts.get(self.connection, self.user_id))
        self.assertEqual(80, account.balance)
        self.assertEqual(0, account.frozen)
예제 #3
0
 def test_withdraw_fail_if_not_enough_money(self):
     self.add_money_for(self.user_id, 10)
     account = self.synchronize(accounts.get(self.connection, self.user_id))
     self.assertEqual(10, account.balance)
     with self.assertRaises(withdraw_queue.exceptions.NotEnoughMoney):
         self.synchronize(withdraw_queue.put(
             self.connection, self.user_id, 50, '{"wallet": "test wallet"}'
         ))
     account = self.synchronize(accounts.get(self.connection, self.user_id))
     self.assertEqual(10, account.balance)
예제 #4
0
 def test_get_all(self):
     self.add_money_for(self.user_id, 100)
     for _ in range(4):
         self.synchronize(withdraw_queue.put(
             self.connection, self.user_id, 10, '{"wallet": "test wallet"}'
         ))
     requests = self.synchronize(withdraw_queue.get_all(self.connection, max_count=2))
     self.assertEqual(2, len(requests))
     self.assertLess(requests[0].id, requests[1].id)
     requests2 = self.synchronize(withdraw_queue.get_all(self.connection, lower_bound=requests[-1].id, max_count=2))
     self.assertLess(requests[-1].id, requests2[0].id)
예제 #5
0
 def test_rollback_if_withdraw_completed(self):
     stats_before = self.synchronize(statistics.get_per_day(
         self.connection))
     payment = self.add_money_for(self.user_id, 100)
     request = self.synchronize(
         withdraw_queue.put(self.connection, self.user_id, 20, '{}'))
     self.synchronize(withdraw_queue.complete(self.connection, request.id))
     report = self.synchronize(
         actions.rollback_payment(self.connection, payment.id))
     self.assertEqual({'total': 100, 'actual': 80}, report[self.user_id])
     stats_after = self.synchronize(statistics.get_per_day(self.connection))
     self.assertEqual(stats_before.balance, stats_after.balance)
예제 #6
0
 def test_withdraw_round_algorithm(self, ):
     self.add_money_for(self.user_id, 200)
     for amount in (54, 55):
         withdraw_record = self.synchronize(withdraw_queue.put(
             self.connection, self.user_id, amount, '{"wallet": "test wallet"}'
         ))
         records = self.synchronize(journal.get_all(self.connection, self.user_id))
         # withdraw
         self.assertEqual(constants.BANK_USER_ID, records[0].other_user_id)
         self.assertEqual(journal.ObjectClass.withdraw.value, records[0].object_class)
         self.assertEqual(withdraw_record.id, records[0].object_id)
         self.assertEqual(-amount, records[0].amount)
         self.assertEqual(constants.JOURNAL_STATUS_IN_PROCESS, records[0].status)
예제 #7
0
    def test_rollback_active(self):
        self.add_money_for(self.user_id, 100)
        request = self.synchronize(withdraw_queue.put(self.connection, self.user_id, 20, '{}'))

        self.synchronize(withdraw_queue.rollback(self.connection, request.id))
        record = self.synchronize(journal.get_all(self.connection, self.user_id))[0]
        self.assertEqual(constants.JOURNAL_STATUS_ROLLBACK, record.status)
        self.assertEqual(journal.ObjectClass.withdraw.value, record.object_class)
        account = self.synchronize(accounts.get(self.connection, self.user_id))
        self.assertEqual(100, account.balance)
        self.assertEqual(0, account.frozen)
        request = self.synchronize(withdraw_queue.get_one(self.connection, request.id))
        self.assertEqual(constants.WITHDRAW_STATUS_ROLLBACK, request.status)
예제 #8
0
    def test_clean(self):
        self.add_money_for(self.user_id, 100)
        account = self.synchronize(accounts.get(self.connection, self.user_id))
        self.assertEqual(100, account.balance)
        record = self.synchronize(withdraw_queue.put(
            self.connection, self.user_id, 50, '{"wallet": "test wallet"}'
        ))
        self.synchronize(withdraw_queue.complete(self.connection, record.id))
        self.synchronize(withdraw_queue.clean(self.connection, -1))
        with self.assertRaises(withdraw_queue.exceptions.NotFound):
            self.synchronize(withdraw_queue.get_one(self.connection, record.id))

        records = self.synchronize(journal.get_all(self.connection, self.user_id))
        obj_ids = {x.object_id for x in records if x.object_class == journal.ObjectClass.withdraw.value}
        self.assertNotIn(record.id, obj_ids)
예제 #9
0
    def test_withdraw_money(self):
        stats1 = self.synchronize(statistics.get_per_day(self.connection))
        self.add_money_for(self.user_id, 100)
        account = self.synchronize(accounts.get(self.connection, self.user_id))
        self.assertEqual(100, account.balance)
        stats2 = self.synchronize(statistics.get_per_day(self.connection))
        withdraw_record = self.synchronize(withdraw_queue.put(
            self.connection, self.user_id, 50, '{"wallet": "test wallet"}'
        ))
        records = self.synchronize(journal.get_all(self.connection, self.user_id))
        # withdraw
        self.assertEqual(constants.BANK_USER_ID, records[0].other_user_id)
        self.assertEqual(journal.ObjectClass.withdraw.value, records[0].object_class)
        self.assertEqual(withdraw_record.id, records[0].object_id)
        self.assertEqual(-50, records[0].amount)
        self.assertEqual(constants.JOURNAL_STATUS_IN_PROCESS, records[0].status)

        stats3 = self.synchronize(statistics.get_per_day(self.connection))
        self.assertEqual(stats2.withdraw_queue.size + 1, stats3.withdraw_queue.size)
        self.assertEqual(stats1.balance.total + 100, stats2.balance.total)
        self.assertEqual(stats1.balance.debit, stats2.balance.debit)
        self.assertEqual(stats2.balance.total, stats3.balance.total)
        self.assertEqual(stats2.balance.debit, stats3.balance.debit)
        self.assertEqual(stats2.balance.credit + 50, stats3.balance.credit)
        account = self.synchronize(accounts.get(self.connection, self.user_id))
        self.assertEqual(50, account.balance)
        self.assertEqual(50, account.frozen)
        withdraw_record = self.synchronize(withdraw_queue.get_all(self.connection))[-1]

        self.synchronize(withdraw_queue.complete(self.connection, withdraw_record.id))
        records = self.synchronize(journal.get_all(self.connection, self.user_id))
        # withdraw
        self.assertEqual(withdraw_record.id, records[0].object_id)
        self.assertEqual(-50, records[0].amount)
        self.assertEqual(constants.BANK_USER_ID, records[0].other_user_id)
        self.assertEqual(journal.ObjectClass.withdraw.value, records[0].object_class)
        self.assertEqual(constants.JOURNAL_STATUS_SUCCESS, records[0].status)

        stats4 = self.synchronize(statistics.get_per_day(self.connection))
        self.assertEqual(stats3.withdraw_queue.size - 1, stats4.withdraw_queue.size)
        self.assertEqual(stats3.balance.total - 50, stats4.balance.total)
        self.assertEqual(stats3.balance.credit - 50, stats4.balance.credit)
        self.assertEqual(
            constants.WITHDRAW_STATUS_SUCCESS,
            self.synchronize(withdraw_queue.get_one(self.connection, withdraw_record.id)).status
        )
        withdraw_records = self.synchronize(withdraw_queue.get_all(self.connection))
        self.assertNotIn(withdraw_record.id, {x.id for x in withdraw_records})
예제 #10
0
 def test_get_all_payments(self):
     # no payments
     self.assertEqual([],
                      self.synchronize(
                          journal.get_all_payments(self.connection,
                                                   self.user_id)))
     request = self.synchronize(
         withdraw_queue.put(self.connection, self.user_id, 10, '{}'))
     records = self.synchronize(
         journal.get_all_payments(self.connection, self.user_id))
     # withdraw
     self.assertEqual(1, len(records))
     self.assertEqual(request.id, records[0].object_id)
     self.assertEqual(constants.JOURNAL_STATUS_IN_PROCESS,
                      records[0].status)
     self.synchronize(withdraw_queue.complete(self.connection, request.id))
     records = self.synchronize(
         journal.get_all_payments(self.connection, self.user_id))
     self.assertEqual(1, len(records))
     self.assertEqual(request.id, records[0].object_id)
     self.assertEqual(constants.JOURNAL_STATUS_SUCCESS, records[0].status)