1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
|
import logging
from datetime import datetime, timezone, timedelta
from decimal import Decimal
from uuid import uuid4
import pytest
from generalresearch.managers.thl.ledger_manager.exceptions import (
LedgerTransactionFlagAlreadyExistsError,
LedgerTransactionConditionFailedError,
)
from generalresearch.models.thl.user import User
from generalresearch.models.thl.wallet import PayoutType
from generalresearch.models.thl.payout import UserPayoutEvent
from test_utils.managers.ledger.conftest import create_main_accounts
class TestLedgerManagerAMT:
def test_create_transaction_amt_ass_request(
self,
user_factory,
product_amt_true,
create_main_accounts,
thl_lm,
lm,
delete_ledger_db,
):
delete_ledger_db()
create_main_accounts()
user: User = user_factory(product=product_amt_true)
# debit_account_uuid nothing checks they match the ledger ... todo?
pe = UserPayoutEvent(
uuid=uuid4().hex,
payout_type=PayoutType.AMT_HIT,
amount=5,
cashout_method_uuid=uuid4().hex,
debit_account_uuid=uuid4().hex,
)
flag_key = f"test:user_payout:{pe.uuid}:request"
flag_name = f"ledger-manager:transaction_flag:{flag_key}"
lm.redis_client.delete(flag_name)
# User has $0 in their wallet. They are allowed amt_assignment payouts until -$1.00
thl_lm.create_tx_user_payout_request(user=user, payout_event=pe)
with pytest.raises(expected_exception=LedgerTransactionFlagAlreadyExistsError):
thl_lm.create_tx_user_payout_request(
user=user, payout_event=pe, skip_flag_check=False
)
with pytest.raises(expected_exception=LedgerTransactionConditionFailedError):
thl_lm.create_tx_user_payout_request(
user=user, payout_event=pe, skip_flag_check=True
)
pe2 = UserPayoutEvent(
uuid=uuid4().hex,
payout_type=PayoutType.AMT_HIT,
amount=96,
cashout_method_uuid=uuid4().hex,
debit_account_uuid=uuid4().hex,
)
flag_key = f"test:user_payout:{pe2.uuid}:request"
flag_name = f"ledger-manager:transaction_flag:{flag_key}"
lm.redis_client.delete(flag_name)
# 96 cents would put them over the -$1.00 limit
with pytest.raises(expected_exception=LedgerTransactionConditionFailedError):
thl_lm.create_tx_user_payout_request(user, payout_event=pe2)
# But they could do 0.95 cents
pe2.amount = 95
thl_lm.create_tx_user_payout_request(
user, payout_event=pe2, skip_flag_check=True
)
cash = thl_lm.get_account_cash()
bp_wallet_account = thl_lm.get_account_or_create_bp_wallet(user.product)
bp_pending_account = thl_lm.get_or_create_bp_pending_payout_account(
product=user.product
)
user_wallet_account = thl_lm.get_account_or_create_user_wallet(user=user)
assert 0 == lm.get_account_balance(account=bp_wallet_account)
assert 0 == lm.get_account_balance(account=cash)
assert 100 == lm.get_account_balance(account=bp_pending_account)
assert -100 == lm.get_account_balance(account=user_wallet_account)
assert thl_lm.check_ledger_balanced()
assert -5 == thl_lm.get_account_filtered_balance(
account=user_wallet_account,
metadata_key="payoutevent",
metadata_value=pe.uuid,
)
assert -95 == thl_lm.get_account_filtered_balance(
account=user_wallet_account,
metadata_key="payoutevent",
metadata_value=pe2.uuid,
)
def test_create_transaction_amt_ass_complete(
self,
user_factory,
product_amt_true,
create_main_accounts,
thl_lm,
lm,
delete_ledger_db,
):
delete_ledger_db()
create_main_accounts()
user: User = user_factory(product=product_amt_true)
pe = UserPayoutEvent(
uuid=uuid4().hex,
payout_type=PayoutType.AMT_HIT,
amount=5,
cashout_method_uuid=uuid4().hex,
debit_account_uuid=uuid4().hex,
)
flag = f"ledger-manager:transaction_flag:test:user_payout:{pe.uuid}:request"
lm.redis_client.delete(flag)
flag = f"ledger-manager:transaction_flag:test:user_payout:{pe.uuid}:complete"
lm.redis_client.delete(flag)
# User has $0 in their wallet. They are allowed amt_assignment payouts until -$1.00
thl_lm.create_tx_user_payout_request(user, payout_event=pe)
thl_lm.create_tx_user_payout_complete(user, payout_event=pe)
cash = thl_lm.get_account_cash()
bp_wallet_account = thl_lm.get_account_or_create_bp_wallet(user.product)
bp_pending_account = thl_lm.get_or_create_bp_pending_payout_account(
user.product
)
bp_amt_expense_account = thl_lm.get_account_or_create_bp_expense(
user.product, expense_name="amt"
)
user_wallet_account = thl_lm.get_account_or_create_user_wallet(user)
# BP wallet pays the 1cent fee
assert -1 == thl_lm.get_account_balance(bp_wallet_account)
assert -5 == thl_lm.get_account_balance(cash)
assert -1 == thl_lm.get_account_balance(bp_amt_expense_account)
assert 0 == thl_lm.get_account_balance(bp_pending_account)
assert -5 == lm.get_account_balance(user_wallet_account)
assert thl_lm.check_ledger_balanced()
def test_create_transaction_amt_bonus(
self,
user_factory,
product_amt_true,
create_main_accounts,
thl_lm,
lm,
delete_ledger_db,
):
delete_ledger_db()
create_main_accounts()
user: User = user_factory(product=product_amt_true)
pe = UserPayoutEvent(
uuid=uuid4().hex,
payout_type=PayoutType.AMT_BONUS,
amount=34,
cashout_method_uuid=uuid4().hex,
debit_account_uuid=uuid4().hex,
)
flag = f"ledger-manager:transaction_flag:test:user_payout:{pe.uuid}:request"
lm.redis_client.delete(flag)
flag = f"ledger-manager:transaction_flag:test:user_payout:{pe.uuid}:complete"
lm.redis_client.delete(flag)
with pytest.raises(expected_exception=LedgerTransactionConditionFailedError):
# User has $0 in their wallet. No amt bonus allowed
thl_lm.create_tx_user_payout_request(user, payout_event=pe)
thl_lm.create_tx_user_bonus(
user,
amount=Decimal(5),
ref_uuid="e703830dec124f17abed2d697d8d7701",
description="Bribe",
skip_flag_check=True,
)
pe.amount = 101
thl_lm.create_tx_user_payout_request(
user, payout_event=pe, skip_flag_check=False
)
thl_lm.create_tx_user_payout_complete(
user, payout_event=pe, skip_flag_check=False
)
with pytest.raises(expected_exception=LedgerTransactionFlagAlreadyExistsError):
# duplicate, even if amount changed
pe.amount = 200
thl_lm.create_tx_user_payout_complete(
user, payout_event=pe, skip_flag_check=False
)
with pytest.raises(expected_exception=LedgerTransactionConditionFailedError):
# duplicate
thl_lm.create_tx_user_payout_complete(
user, payout_event=pe, skip_flag_check=True
)
pe.uuid = "533364150de4451198e5774e221a2acb"
pe.amount = 9900
with pytest.raises(expected_exception=ValueError):
# Trying to complete payout with no pending tx
thl_lm.create_tx_user_payout_complete(
user, payout_event=pe, skip_flag_check=True
)
with pytest.raises(expected_exception=LedgerTransactionConditionFailedError):
# trying to payout $99 with only a $5 balance
thl_lm.create_tx_user_payout_request(
user, payout_event=pe, skip_flag_check=True
)
cash = thl_lm.get_account_cash()
bp_wallet_account = thl_lm.get_account_or_create_bp_wallet(user.product)
bp_pending_account = thl_lm.get_or_create_bp_pending_payout_account(
user.product
)
bp_amt_expense_account = thl_lm.get_account_or_create_bp_expense(
user.product, expense_name="amt"
)
user_wallet_account = thl_lm.get_account_or_create_user_wallet(user)
assert -500 + round(-101 * 0.20) == thl_lm.get_account_balance(
bp_wallet_account
)
assert -101 == lm.get_account_balance(cash)
assert -20 == lm.get_account_balance(bp_amt_expense_account)
assert 0 == lm.get_account_balance(bp_pending_account)
assert 500 - 101 == lm.get_account_balance(user_wallet_account)
assert lm.check_ledger_balanced() is True
def test_create_transaction_amt_bonus_cancel(
self,
user_factory,
product_amt_true,
create_main_accounts,
caplog,
thl_lm,
lm,
delete_ledger_db,
):
delete_ledger_db()
create_main_accounts()
now = datetime.now(timezone.utc) - timedelta(hours=1)
user: User = user_factory(product=product_amt_true)
pe = UserPayoutEvent(
uuid=uuid4().hex,
payout_type=PayoutType.AMT_BONUS,
amount=101,
cashout_method_uuid=uuid4().hex,
debit_account_uuid=uuid4().hex,
)
thl_lm.create_tx_user_bonus(
user,
amount=Decimal(5),
ref_uuid="c44f4da2db1d421ebc6a5e5241ca4ce6",
description="Bribe",
skip_flag_check=True,
)
thl_lm.create_tx_user_payout_request(
user, payout_event=pe, skip_flag_check=True
)
thl_lm.create_tx_user_payout_cancelled(
user, payout_event=pe, skip_flag_check=True
)
with pytest.raises(expected_exception=LedgerTransactionConditionFailedError):
with caplog.at_level(logging.WARNING):
thl_lm.create_tx_user_payout_complete(
user, payout_event=pe, skip_flag_check=True
)
assert "trying to complete payout that was already cancelled" in caplog.text
cash = thl_lm.get_account_cash()
bp_wallet_account = thl_lm.get_account_or_create_bp_wallet(user.product)
bp_pending_account = thl_lm.get_or_create_bp_pending_payout_account(
user.product
)
bp_amt_expense_account = thl_lm.get_account_or_create_bp_expense(
user.product, expense_name="amt"
)
user_wallet_account = thl_lm.get_account_or_create_user_wallet(user)
assert -500 == thl_lm.get_account_balance(account=bp_wallet_account)
assert 0 == thl_lm.get_account_balance(account=cash)
assert 0 == thl_lm.get_account_balance(account=bp_amt_expense_account)
assert 0 == thl_lm.get_account_balance(account=bp_pending_account)
assert 500 == thl_lm.get_account_balance(account=user_wallet_account)
assert thl_lm.check_ledger_balanced()
pe2 = UserPayoutEvent(
uuid=uuid4().hex,
payout_type=PayoutType.AMT_BONUS,
amount=200,
cashout_method_uuid=uuid4().hex,
debit_account_uuid=uuid4().hex,
)
thl_lm.create_tx_user_payout_request(
user, payout_event=pe2, skip_flag_check=True
)
thl_lm.create_tx_user_payout_complete(
user, payout_event=pe2, skip_flag_check=True
)
with pytest.raises(expected_exception=LedgerTransactionConditionFailedError):
with caplog.at_level(logging.WARNING):
thl_lm.create_tx_user_payout_cancelled(
user, payout_event=pe2, skip_flag_check=True
)
assert "trying to cancel payout that was already completed" in caplog.text
class TestLedgerManagerTango:
def test_create_transaction_tango_request(
self,
user_factory,
product_amt_true,
create_main_accounts,
thl_lm,
lm,
delete_ledger_db,
):
delete_ledger_db()
create_main_accounts()
user: User = user_factory(product=product_amt_true)
# debit_account_uuid nothing checks they match the ledger ... todo?
pe = UserPayoutEvent(
uuid=uuid4().hex,
payout_type=PayoutType.TANGO,
amount=500,
cashout_method_uuid=uuid4().hex,
debit_account_uuid=uuid4().hex,
)
flag_key = f"test:user_payout:{pe.uuid}:request"
flag_name = f"ledger-manager:transaction_flag:{flag_key}"
lm.redis_client.delete(flag_name)
thl_lm.create_tx_user_bonus(
user,
amount=Decimal(6),
ref_uuid="e703830dec124f17abed2d697d8d7701",
description="Bribe",
skip_flag_check=True,
)
thl_lm.create_tx_user_payout_request(
user, payout_event=pe, skip_flag_check=True
)
cash = thl_lm.get_account_cash()
bp_wallet_account = thl_lm.get_account_or_create_bp_wallet(user.product)
bp_pending_account = thl_lm.get_or_create_bp_pending_payout_account(
user.product
)
bp_tango_expense_account = thl_lm.get_account_or_create_bp_expense(
user.product, expense_name="tango"
)
user_wallet_account = thl_lm.get_account_or_create_user_wallet(user)
assert -600 == thl_lm.get_account_balance(bp_wallet_account)
assert 0 == thl_lm.get_account_balance(cash)
assert 0 == thl_lm.get_account_balance(bp_tango_expense_account)
assert 500 == thl_lm.get_account_balance(bp_pending_account)
assert 600 - 500 == thl_lm.get_account_balance(user_wallet_account)
assert thl_lm.check_ledger_balanced()
thl_lm.create_tx_user_payout_complete(
user, payout_event=pe, skip_flag_check=True
)
assert -600 - round(500 * 0.035) == thl_lm.get_account_balance(
bp_wallet_account
)
assert -500, thl_lm.get_account_balance(cash)
assert round(-500 * 0.035) == thl_lm.get_account_balance(
bp_tango_expense_account
)
assert 0 == lm.get_account_balance(bp_pending_account)
assert 100 == lm.get_account_balance(user_wallet_account)
assert lm.check_ledger_balanced()
class TestLedgerManagerPaypal:
def test_create_transaction_paypal_request(
self,
user_factory,
product_amt_true,
create_main_accounts,
thl_lm,
lm,
delete_ledger_db,
):
delete_ledger_db()
create_main_accounts()
now = datetime.now(tz=timezone.utc) - timedelta(hours=1)
user: User = user_factory(product=product_amt_true)
# debit_account_uuid nothing checks they match the ledger ... todo?
pe = UserPayoutEvent(
uuid=uuid4().hex,
payout_type=PayoutType.PAYPAL,
amount=500,
cashout_method_uuid=uuid4().hex,
debit_account_uuid=uuid4().hex,
)
flag_key = f"test:user_payout:{pe.uuid}:request"
flag_name = f"ledger-manager:transaction_flag:{flag_key}"
lm.redis_client.delete(flag_name)
thl_lm.create_tx_user_bonus(
user=user,
amount=Decimal(6),
ref_uuid="e703830dec124f17abed2d697d8d7701",
description="Bribe",
skip_flag_check=True,
)
thl_lm.create_tx_user_payout_request(
user, payout_event=pe, skip_flag_check=True
)
cash = thl_lm.get_account_cash()
bp_wallet_account = thl_lm.get_account_or_create_bp_wallet(user.product)
bp_pending_account = thl_lm.get_or_create_bp_pending_payout_account(
product=user.product
)
bp_paypal_expense_account = thl_lm.get_account_or_create_bp_expense(
product=user.product, expense_name="paypal"
)
user_wallet_account = thl_lm.get_account_or_create_user_wallet(user=user)
assert -600 == lm.get_account_balance(account=bp_wallet_account)
assert 0 == lm.get_account_balance(account=cash)
assert 0 == lm.get_account_balance(account=bp_paypal_expense_account)
assert 500 == lm.get_account_balance(account=bp_pending_account)
assert 600 - 500 == lm.get_account_balance(account=user_wallet_account)
assert thl_lm.check_ledger_balanced()
thl_lm.create_tx_user_payout_complete(
user=user, payout_event=pe, skip_flag_check=True, fee_amount=Decimal("0.50")
)
assert -600 - 50 == thl_lm.get_account_balance(bp_wallet_account)
assert -500 == thl_lm.get_account_balance(cash)
assert -50 == thl_lm.get_account_balance(bp_paypal_expense_account)
assert 0 == thl_lm.get_account_balance(bp_pending_account)
assert 100 == thl_lm.get_account_balance(user_wallet_account)
assert thl_lm.check_ledger_balanced()
class TestLedgerManagerBonus:
def test_create_transaction_bonus(
self,
user_factory,
product_user_wallet_yes,
create_main_accounts,
thl_lm,
lm,
delete_ledger_db,
):
delete_ledger_db()
create_main_accounts()
user: User = user_factory(product=product_user_wallet_yes)
thl_lm.create_tx_user_bonus(
user=user,
amount=Decimal(5),
ref_uuid="8d0aaf612462448a9ebdd57fab0fc660",
description="Bribe",
skip_flag_check=True,
)
cash = thl_lm.get_account_cash()
bp_wallet_account = thl_lm.get_account_or_create_bp_wallet(user.product)
bp_pending_account = thl_lm.get_or_create_bp_pending_payout_account(
product=user.product
)
bp_amt_expense_account = thl_lm.get_account_or_create_bp_expense(
user.product, expense_name="amt"
)
user_wallet_account = thl_lm.get_account_or_create_user_wallet(user=user)
assert -500 == lm.get_account_balance(account=bp_wallet_account)
assert 0 == lm.get_account_balance(account=cash)
assert 0 == lm.get_account_balance(account=bp_amt_expense_account)
assert 0 == lm.get_account_balance(account=bp_pending_account)
assert 500 == lm.get_account_balance(account=user_wallet_account)
assert thl_lm.check_ledger_balanced()
with pytest.raises(expected_exception=LedgerTransactionFlagAlreadyExistsError):
thl_lm.create_tx_user_bonus(
user=user,
amount=Decimal(5),
ref_uuid="8d0aaf612462448a9ebdd57fab0fc660",
description="Bribe",
skip_flag_check=False,
)
with pytest.raises(expected_exception=LedgerTransactionConditionFailedError):
thl_lm.create_tx_user_bonus(
user=user,
amount=Decimal(5),
ref_uuid="8d0aaf612462448a9ebdd57fab0fc660",
description="Bribe",
skip_flag_check=True,
)
|