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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
|
from typing import TYPE_CHECKING, Callable
import pytest
from generalresearch.managers.base import Permission
from generalresearch.models import Source
from generalresearch.pg_helper import PostgresConfig
from generalresearch.redis_helper import RedisConfig
from generalresearch.sql_helper import SqlHelper
from test_utils.managers.cashout_methods import (
EXAMPLE_TANGO_CASHOUT_METHODS,
)
if TYPE_CHECKING:
from generalresearch.config import GRLBaseSettings
from generalresearch.grliq.managers.forensic_data import (
GrlIqDataManager,
)
from generalresearch.grliq.managers.forensic_events import (
GrlIqEventManager,
)
from generalresearch.grliq.managers.forensic_results import (
GrlIqCategoryResultsReader,
)
from generalresearch.managers.gr.authentication import (
GRTokenManager,
GRUserManager,
)
from generalresearch.managers.gr.business import (
BusinessAddressManager,
BusinessBankAccountManager,
BusinessManager,
)
from generalresearch.managers.gr.team import (
MembershipManager,
TeamManager,
)
from generalresearch.managers.thl.category import CategoryManager
from generalresearch.managers.thl.contest_manager import ContestManager
from generalresearch.managers.thl.ipinfo import (
GeoIpInfoManager,
IPGeonameManager,
IPInformationManager,
)
from generalresearch.managers.thl.ledger_manager.ledger import (
LedgerAccountManager,
LedgerManager,
LedgerTransactionManager,
)
from generalresearch.managers.thl.ledger_manager.thl_ledger import (
ThlLedgerManager,
)
from generalresearch.managers.thl.maxmind import MaxmindManager
from generalresearch.managers.thl.maxmind.basic import (
MaxmindBasicManager,
)
from generalresearch.managers.thl.payout import (
BrokerageProductPayoutEventManager,
BusinessPayoutEventManager,
PayoutEventManager,
UserPayoutEventManager,
)
from generalresearch.managers.thl.product import ProductManager
from generalresearch.managers.thl.session import SessionManager
from generalresearch.managers.thl.task_adjustment import (
TaskAdjustmentManager,
)
from generalresearch.managers.thl.user_manager.user_manager import (
UserManager,
)
from generalresearch.managers.thl.user_manager.user_metadata_manager import (
UserMetadataManager,
)
from generalresearch.managers.thl.userhealth import (
AuditLogManager,
IPGeonameManager,
IPInformationManager,
IPRecordManager,
UserIpHistoryManager,
)
from generalresearch.managers.thl.wall import (
WallCacheManager,
WallManager,
)
# === THL ===
@pytest.fixture(scope="session")
def ltxm(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "LedgerTransactionManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.ledger_manager.ledger import (
LedgerTransactionManager,
)
return LedgerTransactionManager(
sql_helper=thl_web_rw,
permissions=[Permission.CREATE, Permission.READ],
testing=True,
redis_config=thl_redis_config,
)
@pytest.fixture(scope="session")
def lam(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "LedgerAccountManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.ledger_manager.ledger import (
LedgerAccountManager,
)
return LedgerAccountManager(
pg_config=thl_web_rw,
permissions=[Permission.CREATE, Permission.READ],
testing=True,
redis_config=thl_redis_config,
)
@pytest.fixture(scope="session")
def lm(thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig) -> "LedgerManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.ledger_manager.ledger import (
LedgerManager,
)
return LedgerManager(
pg_config=thl_web_rw,
permissions=[
Permission.CREATE,
Permission.READ,
Permission.UPDATE,
Permission.DELETE,
],
testing=True,
redis_config=thl_redis_config,
)
@pytest.fixture(scope="session")
def thl_lm(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "ThlLedgerManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.ledger_manager.thl_ledger import (
ThlLedgerManager,
)
return ThlLedgerManager(
pg_config=thl_web_rw,
permissions=[
Permission.CREATE,
Permission.READ,
Permission.UPDATE,
Permission.DELETE,
],
testing=True,
redis_config=thl_redis_config,
)
@pytest.fixture(scope="session")
def payout_event_manager(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "PayoutEventManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.payout import PayoutEventManager
return PayoutEventManager(
pg_config=thl_web_rw,
permissions=[Permission.CREATE, Permission.READ],
redis_config=thl_redis_config,
)
@pytest.fixture(scope="session")
def user_payout_event_manager(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "UserPayoutEventManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.payout import UserPayoutEventManager
return UserPayoutEventManager(
pg_config=thl_web_rw,
permissions=[Permission.CREATE, Permission.READ],
redis_config=thl_redis_config,
)
@pytest.fixture(scope="session")
def brokerage_product_payout_event_manager(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "BrokerageProductPayoutEventManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.payout import (
BrokerageProductPayoutEventManager,
)
return BrokerageProductPayoutEventManager(
pg_config=thl_web_rw,
permissions=[Permission.CREATE, Permission.READ],
redis_config=thl_redis_config,
)
@pytest.fixture(scope="session")
def business_payout_event_manager(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "BusinessPayoutEventManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.payout import (
BusinessPayoutEventManager,
)
return BusinessPayoutEventManager(
pg_config=thl_web_rw,
permissions=[Permission.CREATE, Permission.READ],
redis_config=thl_redis_config,
)
@pytest.fixture(scope="session")
def product_manager(thl_web_rw: PostgresConfig) -> "ProductManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.product import ProductManager
return ProductManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def user_manager(
settings: "GRLBaseSettings", thl_web_rw: PostgresConfig, thl_web_rr: PostgresConfig
) -> "UserManager":
assert "/unittest-" in thl_web_rw.dsn.path
assert "/unittest-" in thl_web_rr.dsn.path
from generalresearch.managers.thl.user_manager.user_manager import (
UserManager,
)
return UserManager(
pg_config=thl_web_rw,
pg_config_rr=thl_web_rr,
redis=settings.redis,
)
@pytest.fixture(scope="session")
def user_metadata_manager(thl_web_rw: PostgresConfig) -> "UserMetadataManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.user_manager.user_metadata_manager import (
UserMetadataManager,
)
return UserMetadataManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def session_manager(thl_web_rw: PostgresConfig) -> "SessionManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.session import SessionManager
return SessionManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def wall_manager(thl_web_rw: PostgresConfig) -> "WallManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.wall import WallManager
return WallManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def wall_cache_manager(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "WallCacheManager":
# assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.wall import WallCacheManager
return WallCacheManager(pg_config=thl_web_rw, redis_config=thl_redis_config)
@pytest.fixture(scope="session")
def task_adjustment_manager(thl_web_rw: PostgresConfig) -> "TaskAdjustmentManager":
# assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.task_adjustment import (
TaskAdjustmentManager,
)
return TaskAdjustmentManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def contest_manager(thl_web_rw: PostgresConfig) -> "ContestManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.contest_manager import ContestManager
return ContestManager(
pg_config=thl_web_rw,
permissions=[
Permission.CREATE,
Permission.READ,
Permission.UPDATE,
Permission.DELETE,
],
)
@pytest.fixture(scope="session")
def category_manager(thl_web_rw: PostgresConfig) -> "CategoryManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.category import CategoryManager
return CategoryManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def buyer_manager(thl_web_rw: PostgresConfig):
# assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.buyer import BuyerManager
return BuyerManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def survey_manager(thl_web_rw: PostgresConfig):
# assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.survey import SurveyManager
return SurveyManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def surveystat_manager(thl_web_rw: PostgresConfig):
# assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.survey import SurveyStatManager
return SurveyStatManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def surveypenalty_manager(thl_redis_config):
from generalresearch.managers.thl.survey_penalty import SurveyPenaltyManager
return SurveyPenaltyManager(redis_config=thl_redis_config)
@pytest.fixture(scope="session")
def upk_schema_manager(thl_web_rw: PostgresConfig):
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.profiling.schema import (
UpkSchemaManager,
)
return UpkSchemaManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def user_upk_manager(thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig):
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.profiling.user_upk import (
UserUpkManager,
)
return UserUpkManager(pg_config=thl_web_rw, redis_config=thl_redis_config)
@pytest.fixture(scope="session")
def question_manager(thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig):
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.profiling.question import (
QuestionManager,
)
return QuestionManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def uqa_manager(thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig):
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.profiling.uqa import UQAManager
return UQAManager(redis_config=thl_redis_config, pg_config=thl_web_rw)
@pytest.fixture(scope="function")
def uqa_manager_clear_cache(uqa_manager, user):
# On successive py-test/jenkins runs, the cache may contain
# the previous run's info (keyed under the same user_id)
uqa_manager.clear_cache(user)
yield
uqa_manager.clear_cache(user)
@pytest.fixture(scope="session")
def audit_log_manager(thl_web_rw: PostgresConfig) -> "AuditLogManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.userhealth import AuditLogManager
return AuditLogManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def ip_geoname_manager(thl_web_rw: PostgresConfig) -> "IPGeonameManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.ipinfo import IPGeonameManager
return IPGeonameManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def ip_information_manager(thl_web_rw: PostgresConfig) -> "IPInformationManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.ipinfo import IPInformationManager
return IPInformationManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def ip_record_manager(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "IPRecordManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.userhealth import IPRecordManager
return IPRecordManager(pg_config=thl_web_rw, redis_config=thl_redis_config)
@pytest.fixture(scope="session")
def user_iphistory_manager(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "UserIpHistoryManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.userhealth import (
UserIpHistoryManager,
)
return UserIpHistoryManager(pg_config=thl_web_rw, redis_config=thl_redis_config)
@pytest.fixture(scope="function")
def user_iphistory_manager_clear_cache(user_iphistory_manager, user):
# On successive py-test/jenkins runs, the cache may contain
# the previous run's info (keyed under the same user_id)
user_iphistory_manager.delete_user_ip_history_cache(user_id=user.user_id)
yield
user_iphistory_manager.delete_user_ip_history_cache(user_id=user.user_id)
@pytest.fixture(scope="session")
def geoipinfo_manager(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "GeoIpInfoManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.ipinfo import GeoIpInfoManager
return GeoIpInfoManager(pg_config=thl_web_rw, redis_config=thl_redis_config)
@pytest.fixture(scope="session")
def maxmind_basic_manager() -> "MaxmindBasicManager":
from generalresearch.managers.thl.maxmind.basic import (
MaxmindBasicManager,
)
return MaxmindBasicManager(data_dir="/tmp/")
@pytest.fixture(scope="session")
def maxmind_manager(
thl_web_rw: PostgresConfig, thl_redis_config: RedisConfig
) -> "MaxmindManager":
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.maxmind import MaxmindManager
return MaxmindManager(pg_config=thl_web_rw, redis_config=thl_redis_config)
@pytest.fixture(scope="session")
def cashout_method_manager(thl_web_rw: PostgresConfig):
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.cashout_method import (
CashoutMethodManager,
)
return CashoutMethodManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def event_manager(thl_redis_config: RedisConfig):
from generalresearch.managers.events import EventManager
return EventManager(redis_config=thl_redis_config)
@pytest.fixture(scope="session")
def user_streak_manager(thl_web_rw: PostgresConfig):
assert "/unittest-" in thl_web_rw.dsn.path
from generalresearch.managers.thl.user_streak import (
UserStreakManager,
)
return UserStreakManager(pg_config=thl_web_rw)
@pytest.fixture(scope="session")
def uqa_db_index(thl_web_rw: PostgresConfig):
# There were some custom indices created not through django.
# Make sure the index used in the index hint exists
assert "/unittest-" in thl_web_rw.dsn.path
# query = f"""create index idx_user_id
# on `{thl_web_rw.db}`.marketplace_userquestionanswer (user_id);"""
# try:
# thl_web_rw.execute_sql_query(query, commit=True)
# except pymysql.OperationalError as e:
# if "Duplicate key name 'idx_user_id'" not in str(e):
# raise
return None
@pytest.fixture(scope="session")
def delete_cashoutmethod_db(thl_web_rw: PostgresConfig) -> Callable[..., None]:
def _delete_cashoutmethod_db():
thl_web_rw.execute_write(
query="DELETE FROM accounting_cashoutmethod;",
)
return _delete_cashoutmethod_db
@pytest.fixture(scope="session")
def setup_cashoutmethod_db(
settings: "GRLBaseSettings", cashout_method_manager, delete_cashoutmethod_db
):
delete_cashoutmethod_db()
for x in EXAMPLE_TANGO_CASHOUT_METHODS:
cashout_method_manager.create(x)
# TODO: convert these ids into instances to use.
# settings.amt_bonus_cashout_method_id
# settings.amt_assignment_cashout_method_id
# cashout_method_manager.create(AMT_ASSIGNMENT_CASHOUT_METHOD)
# cashout_method_manager.create(AMT_BONUS_CASHOUT_METHOD)
raise NotImplementedError("Need to implement setup_cashoutmethod_db")
return None
# === THL: Marketplaces ===
@pytest.fixture(scope="session")
def spectrum_manager(spectrum_rw: SqlHelper) -> "SpectrumSurveyManager":
from generalresearch.managers.spectrum.survey import (
SpectrumSurveyManager,
)
return SpectrumSurveyManager(sql_helper=spectrum_rw)
# === GR ===
@pytest.fixture(scope="session")
def business_manager(
gr_db: PostgresConfig, gr_redis_config: RedisConfig
) -> "BusinessManager":
from generalresearch.redis_helper import RedisConfig
assert "/unittest-" in gr_db.dsn.path
assert isinstance(gr_redis_config, RedisConfig)
from generalresearch.managers.gr.business import BusinessManager
return BusinessManager(
pg_config=gr_db,
redis_config=gr_redis_config,
)
@pytest.fixture(scope="session")
def business_address_manager(gr_db: PostgresConfig) -> "BusinessAddressManager":
assert "/unittest-" in gr_db.dsn.path
from generalresearch.managers.gr.business import BusinessAddressManager
return BusinessAddressManager(pg_config=gr_db)
@pytest.fixture(scope="session")
def business_bank_account_manager(
gr_db: PostgresConfig,
) -> "BusinessBankAccountManager":
assert "/unittest-" in gr_db.dsn.path
from generalresearch.managers.gr.business import (
BusinessBankAccountManager,
)
return BusinessBankAccountManager(pg_config=gr_db)
@pytest.fixture(scope="session")
def team_manager(gr_db: PostgresConfig, gr_redis_config: RedisConfig) -> "TeamManager":
assert "/unittest-" in gr_db.dsn.path
from generalresearch.managers.gr.team import TeamManager
return TeamManager(pg_config=gr_db, redis_config=gr_redis_config)
@pytest.fixture(scope="session")
def gr_um(gr_db: PostgresConfig, gr_redis_config: RedisConfig) -> "GRUserManager":
assert "/unittest-" in gr_db.dsn.path
from generalresearch.managers.gr.authentication import GRUserManager
return GRUserManager(pg_config=gr_db, redis_config=gr_redis_config)
@pytest.fixture(scope="session")
def gr_tm(gr_db: PostgresConfig) -> "GRTokenManager":
assert "/unittest-" in gr_db.dsn.path
from generalresearch.managers.gr.authentication import GRTokenManager
return GRTokenManager(pg_config=gr_db)
@pytest.fixture(scope="session")
def membership_manager(gr_db: PostgresConfig) -> "MembershipManager":
assert "/unittest-" in gr_db.dsn.path
from generalresearch.managers.gr.team import MembershipManager
return MembershipManager(pg_config=gr_db)
# === GRL IQ ===
@pytest.fixture(scope="session")
def grliq_dm(grliq_db: PostgresConfig) -> "GrlIqDataManager":
assert "/unittest-" in grliq_db.dsn.path
from generalresearch.grliq.managers.forensic_data import (
GrlIqDataManager,
)
return GrlIqDataManager(postgres_config=grliq_db)
@pytest.fixture(scope="session")
def grliq_em(grliq_db: PostgresConfig) -> "GrlIqEventManager":
assert "/unittest-" in grliq_db.dsn.path
from generalresearch.grliq.managers.forensic_events import (
GrlIqEventManager,
)
return GrlIqEventManager(postgres_config=grliq_db)
@pytest.fixture(scope="session")
def grliq_crr(grliq_db: PostgresConfig) -> "GrlIqCategoryResultsReader":
assert "/unittest-" in grliq_db.dsn.path
from generalresearch.grliq.managers.forensic_results import (
GrlIqCategoryResultsReader,
)
return GrlIqCategoryResultsReader(postgres_config=grliq_db)
@pytest.fixture(scope="session")
def delete_buyers_surveys(thl_web_rw: PostgresConfig, buyer_manager):
# assert "/unittest-" in thl_web_rw.dsn.path
thl_web_rw.execute_write(
"""
DELETE FROM marketplace_surveystat
WHERE survey_id IN (
SELECT id
FROM marketplace_survey
WHERE source = %(source)s
);""",
params={"source": Source.TESTING.value},
)
thl_web_rw.execute_write(
"""
DELETE FROM marketplace_survey
WHERE buyer_id IN (
SELECT id
FROM marketplace_buyer
WHERE source = %(source)s
);""",
params={"source": Source.TESTING.value},
)
thl_web_rw.execute_write(
"""
DELETE from marketplace_buyer
WHERE source=%(source)s;
""",
params={"source": Source.TESTING.value},
)
buyer_manager.populate_caches()
|