forked from dj-stripe/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_account.py
1059 lines (930 loc) · 37.1 KB
/
test_account.py
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
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
dj-stripe Account Tests.
"""
from copy import deepcopy
from unittest.mock import call, patch
import pytest
import stripe
from django.conf import settings
from django.test.testcases import TestCase
from django.test.utils import override_settings
from djstripe.models import Account
from djstripe.models.api import APIKey
from djstripe.settings import djstripe_settings
from . import (
FAKE_ACCOUNT,
FAKE_CUSTOM_ACCOUNT,
FAKE_EXPRESS_ACCOUNT,
FAKE_FILEUPLOAD_ICON,
FAKE_FILEUPLOAD_LOGO,
FAKE_PLATFORM_ACCOUNT,
AssertStripeFksMixin,
)
from .conftest import CreateAccountMixin
pytestmark = pytest.mark.django_db
class TestAccount(CreateAccountMixin, AssertStripeFksMixin, TestCase):
@patch("stripe.Account.retrieve", autospec=True)
@patch(
"stripe.File.retrieve",
side_effect=[deepcopy(FAKE_FILEUPLOAD_ICON), deepcopy(FAKE_FILEUPLOAD_LOGO)],
autospec=True,
)
def test_get_default_account(self, file_retrieve_mock, account_retrieve_mock):
account_retrieve_mock.return_value = deepcopy(FAKE_ACCOUNT)
account = Account.get_default_account()
account_retrieve_mock.assert_called_once_with(
api_key=djstripe_settings.STRIPE_SECRET_KEY,
stripe_version=djstripe_settings.STRIPE_API_VERSION,
)
self.assertGreater(len(account.business_profile), 0)
self.assertGreater(len(account.settings), 0)
self.assertEqual(account.branding_icon.id, FAKE_FILEUPLOAD_ICON["id"])
self.assertEqual(account.branding_logo.id, FAKE_FILEUPLOAD_LOGO["id"])
self.assertEqual(account.settings["branding"]["icon"], account.branding_icon.id)
self.assertEqual(account.settings["branding"]["logo"], account.branding_logo.id)
self.assertNotEqual(account.branding_logo.id, account.branding_icon.id)
self.assert_fks(account, expected_blank_fks={})
self.assertEqual(account.business_url, "https://djstripe.com")
account.business_profile = None
self.assertEqual(account.business_url, "")
@patch(
"stripe.Account.retrieve",
autospec=True,
return_value=deepcopy(FAKE_ACCOUNT),
)
@patch(
"stripe.File.retrieve",
side_effect=[deepcopy(FAKE_FILEUPLOAD_ICON), deepcopy(FAKE_FILEUPLOAD_LOGO)],
autospec=True,
)
def test_sync_from_stripe_data(
self, fileupload_retrieve_mock, account_retrieve_mock
):
fake_account = deepcopy(FAKE_ACCOUNT)
account = Account.sync_from_stripe_data(fake_account)
self.assertGreater(len(account.business_profile), 0)
self.assertGreater(len(account.settings), 0)
self.assertEqual(account.branding_icon.id, FAKE_FILEUPLOAD_ICON["id"])
self.assertEqual(account.branding_logo.id, FAKE_FILEUPLOAD_LOGO["id"])
self.assertEqual(account.settings["branding"]["icon"], account.branding_icon.id)
self.assertEqual(account.settings["branding"]["logo"], account.branding_logo.id)
self.assertNotEqual(account.branding_logo.id, account.branding_icon.id)
self.assert_fks(account, expected_blank_fks={})
self.assertEqual(account.business_url, "https://djstripe.com")
@patch(
"stripe.Account.retrieve",
autospec=True,
return_value=deepcopy(FAKE_ACCOUNT),
)
@patch(
"stripe.File.retrieve",
side_effect=[deepcopy(FAKE_FILEUPLOAD_ICON), deepcopy(FAKE_FILEUPLOAD_LOGO)],
autospec=True,
)
def test__find_owner_account(self, fileupload_retrieve_mock, account_retrieve_mock):
fake_account = deepcopy(FAKE_ACCOUNT)
account = Account.sync_from_stripe_data(fake_account)
self.assertEqual(account.djstripe_owner_account.id, FAKE_PLATFORM_ACCOUNT["id"])
@patch(
"stripe.Account.retrieve",
autospec=True,
return_value=deepcopy(FAKE_ACCOUNT),
)
@patch(
"stripe.File.retrieve",
side_effect=[deepcopy(FAKE_FILEUPLOAD_ICON), deepcopy(FAKE_FILEUPLOAD_LOGO)],
autospec=True,
)
def test_business_url(self, fileupload_retrieve_mock, account_retrieve_mock):
fake_account = deepcopy(FAKE_ACCOUNT)
account = Account.sync_from_stripe_data(fake_account)
self.assertEqual(fake_account["business_profile"]["url"], account.business_url)
@patch(
"stripe.Account.retrieve",
autospec=True,
return_value=deepcopy(FAKE_ACCOUNT),
)
@patch(
"stripe.File.retrieve",
side_effect=[deepcopy(FAKE_FILEUPLOAD_ICON), deepcopy(FAKE_FILEUPLOAD_LOGO)],
autospec=True,
)
def test_branding_logo(self, fileupload_retrieve_mock, account_retrieve_mock):
fake_account = deepcopy(FAKE_ACCOUNT)
account = Account.sync_from_stripe_data(fake_account)
self.assertEqual(
fake_account["settings"]["branding"]["logo"], account.branding_logo.id
)
@patch(
"stripe.Account.retrieve",
autospec=True,
return_value=deepcopy(FAKE_ACCOUNT),
)
@patch(
"stripe.File.retrieve",
side_effect=[deepcopy(FAKE_FILEUPLOAD_ICON), deepcopy(FAKE_FILEUPLOAD_LOGO)],
autospec=True,
)
def test_branding_icon(self, fileupload_retrieve_mock, account_retrieve_mock):
fake_account = deepcopy(FAKE_ACCOUNT)
account = Account.sync_from_stripe_data(fake_account)
self.assertEqual(
fake_account["settings"]["branding"]["icon"], account.branding_icon.id
)
@patch("stripe.Account.retrieve", autospec=True)
@patch(
"stripe.File.retrieve",
return_value=deepcopy(FAKE_FILEUPLOAD_LOGO),
autospec=True,
)
def test__attach_objects_post_save_hook(
self, fileupload_retrieve_mock, account_retrieve_mock
):
fake_account = deepcopy(FAKE_ACCOUNT)
fake_account["settings"]["branding"]["icon"] = None
account_retrieve_mock.return_value = fake_account
account = Account.sync_from_stripe_data(fake_account)
assert account.livemode is False
fileupload_retrieve_mock.assert_called_with(
id=fake_account["settings"]["branding"]["logo"],
api_key=djstripe_settings.STRIPE_SECRET_KEY,
expand=[],
stripe_account=fake_account["id"],
stripe_version=djstripe_settings.STRIPE_API_VERSION,
)
@patch("stripe.Account.retrieve", autospec=True)
@patch(
"stripe.File.retrieve",
return_value=deepcopy(FAKE_FILEUPLOAD_LOGO),
autospec=True,
)
def test_get_default_account_null_logo(
self, fileupload_retrieve_mock, account_retrieve_mock
):
fake_account = deepcopy(FAKE_ACCOUNT)
fake_account["settings"]["branding"]["icon"] = None
fake_account["settings"]["branding"]["logo"] = None
account_retrieve_mock.return_value = fake_account
account = Account.get_default_account()
account_retrieve_mock.assert_called_once_with(
api_key=djstripe_settings.STRIPE_SECRET_KEY,
stripe_version=djstripe_settings.STRIPE_API_VERSION,
)
self.assert_fks(
account,
expected_blank_fks={
"djstripe.Account.branding_logo",
"djstripe.Account.branding_icon",
},
)
@patch(
"stripe.Account.retrieve",
autospec=True,
return_value=deepcopy(FAKE_ACCOUNT),
)
@patch(
"stripe.File.retrieve",
side_effect=[deepcopy(FAKE_FILEUPLOAD_ICON), deepcopy(FAKE_FILEUPLOAD_LOGO)],
autospec=True,
)
def test_get_stripe_dashboard_url(
self, fileupload_retrieve_mock, account_retrieve_mock
):
fake_account = deepcopy(FAKE_ACCOUNT)
account = Account.sync_from_stripe_data(fake_account)
self.assertEqual(
account.get_stripe_dashboard_url(),
(
f"https://dashboard.stripe.com/{account.id}/"
f"{'test/' if not account.livemode else ''}dashboard"
),
)
class TestAccountMethods:
@pytest.mark.parametrize(
(
"business_profile_update",
"settings_dashboard_update",
"expected_account_str",
),
(
({}, {}, "dj-stripe"),
({}, {"display_name": "some display name"}, "some display name"),
(
{"name": "some business name"},
{"display_name": ""},
"some business name",
),
({"name": ""}, {"display_name": ""}, "<id=acct_1032D82eZvKYlo2C>"),
),
)
@patch("stripe.Account.retrieve", autospec=True)
@patch(
"stripe.File.retrieve",
return_value=deepcopy(FAKE_FILEUPLOAD_LOGO),
autospec=True,
)
def test_account_str(
self,
fileupload_retrieve_mock,
account_retrieve_mock,
business_profile_update,
settings_dashboard_update,
expected_account_str,
):
fake_account = deepcopy(FAKE_ACCOUNT)
fake_account["business_profile"].update(business_profile_update)
fake_account["settings"]["dashboard"].update(settings_dashboard_update)
account_retrieve_mock.return_value = fake_account
account = Account.get_default_account()
assert str(account) == expected_account_str
@patch("stripe.Account.retrieve", autospec=True)
@patch(
"stripe.File.retrieve",
return_value=deepcopy(FAKE_FILEUPLOAD_LOGO),
autospec=True,
)
def test__str__null_settings_null_business_profile(
self,
fileupload_retrieve_mock,
account_retrieve_mock,
):
"""Test that __str__ doesn't crash when settings and business_profile are NULL."""
fake_account = deepcopy(FAKE_ACCOUNT)
fake_account["settings"] = None
fake_account["business_profile"] = None
account_retrieve_mock.return_value = fake_account
account = Account.sync_from_stripe_data(fake_account)
assert str(account) == "<id=acct_1032D82eZvKYlo2C>"
@override_settings(
STRIPE_SECRET_KEY="sk_live_XXXXXXXXXXXXXXXXXXXX5678",
STRIPE_LIVE_MODE=True,
)
@pytest.mark.parametrize(
"_account,is_platform",
[
(deepcopy(FAKE_ACCOUNT), False),
(deepcopy(FAKE_CUSTOM_ACCOUNT), False),
(deepcopy(FAKE_EXPRESS_ACCOUNT), False),
(deepcopy(FAKE_PLATFORM_ACCOUNT), True),
],
)
@patch("stripe.Account.retrieve", autospec=True)
@patch(
"stripe.File.retrieve",
return_value=deepcopy(FAKE_FILEUPLOAD_LOGO),
autospec=True,
)
def test_livemode_populates_correctly_for_livemode(
self,
fileupload_retrieve_mock,
account_retrieve_mock,
_account,
is_platform,
):
fake_account = _account
fake_account["settings"]["branding"]["icon"] = None
account_retrieve_mock.return_value = fake_account
platform_account = FAKE_PLATFORM_ACCOUNT.create()
# Account.get_or_retrieve_for_api_key is called and since the passed in api_key doesn't have an owner acount,
# key is refreshed and the current mocked _account is assigned as the owner account.
# This essentially turns all these cases into Platform Account cases.
# And that is why Account.get_or_retrieve_for_api_key is patched
with patch.object(
Account, "get_or_retrieve_for_api_key", return_value=platform_account
):
account = Account.sync_from_stripe_data(
fake_account, api_key=djstripe_settings.STRIPE_SECRET_KEY
)
assert account.djstripe_owner_account == platform_account
if is_platform is True:
assert account.livemode is None
else:
assert account.livemode is True
@override_settings(
STRIPE_SECRET_KEY="sk_test_XXXXXXXXXXXXXXXXXXXX5678",
STRIPE_LIVE_MODE=False,
)
@pytest.mark.parametrize(
"_account,is_platform",
[
(deepcopy(FAKE_ACCOUNT), False),
(deepcopy(FAKE_CUSTOM_ACCOUNT), False),
(deepcopy(FAKE_EXPRESS_ACCOUNT), False),
(deepcopy(FAKE_PLATFORM_ACCOUNT), True),
],
)
@patch("stripe.Account.retrieve", autospec=True)
@patch(
"stripe.File.retrieve",
return_value=deepcopy(FAKE_FILEUPLOAD_LOGO),
autospec=True,
)
def test_livemode_populates_correctly_for_testmode(
self, fileupload_retrieve_mock, account_retrieve_mock, _account, is_platform
):
fake_account = _account
fake_account["settings"]["branding"]["icon"] = None
account_retrieve_mock.return_value = fake_account
platform_account = FAKE_PLATFORM_ACCOUNT.create()
# Account.get_or_retrieve_for_api_key is called and since the passed in api_key doesn't have an owner acount,
# key is refreshed and the current mocked _account is assigned as the owner account.
# This essentially turns all these cases into Platform Account cases.
# And that is why Account.get_or_retrieve_for_api_key is patched
with patch.object(
Account, "get_or_retrieve_for_api_key", return_value=platform_account
):
account = Account.sync_from_stripe_data(
fake_account, api_key=djstripe_settings.STRIPE_SECRET_KEY
)
assert account.djstripe_owner_account == platform_account
if is_platform is True:
assert account.livemode is None
else:
assert account.livemode is False
class TestAccountRestrictedKeys(TestCase):
@override_settings(
STRIPE_TEST_SECRET_KEY="rk_test_blah",
STRIPE_TEST_PUBLIC_KEY="pk_test_foo",
STRIPE_LIVE_MODE=False,
)
@patch("stripe.Account.retrieve", autospec=True)
def test_account_str_restricted_key(self, account_retrieve_mock):
"""
Test that we do not attempt to retrieve account ID with restricted keys.
"""
assert djstripe_settings.STRIPE_SECRET_KEY == "rk_test_blah"
account = Account.get_default_account()
assert account is None
account_retrieve_mock.assert_not_called()
@pytest.mark.parametrize(
"mock_account_id, other_mock_account_id, expected_stripe_account",
(
("acct_fakefakefakefake001", None, "acct_fakefakefakefake001"),
(
"acct_fakefakefakefake001",
"acct_fakefakefakefake002",
"acct_fakefakefakefake002",
),
),
)
@patch(
target="djstripe.models.connect.StripeModel._create_from_stripe_object",
autospec=True,
)
def test_account__create_from_stripe_object(
mock_super__create_from_stripe_object,
mock_account_id,
other_mock_account_id,
expected_stripe_account,
):
"""Ensure that we are setting the ID value correctly."""
mock_data = {"id": mock_account_id}
Account._create_from_stripe_object(
data=mock_data, stripe_account=other_mock_account_id
)
mock_super__create_from_stripe_object.assert_called_once_with(
data=mock_data,
current_ids=None,
pending_relations=None,
save=True,
stripe_account=expected_stripe_account,
api_key=djstripe_settings.STRIPE_SECRET_KEY,
)
@pytest.mark.parametrize("stripe_account", (None, "acct_fakefakefakefake001"))
@pytest.mark.parametrize(
"api_key, expected_api_key",
(
(None, djstripe_settings.STRIPE_SECRET_KEY),
("sk_fakefakefake01", "sk_fakefakefake01"),
),
)
@pytest.mark.parametrize("extra_kwargs", ({"reason": "fraud"}, {"reason": "other"}))
@patch(
"stripe.Account.retrieve",
return_value=deepcopy(FAKE_ACCOUNT),
)
@patch(
"stripe.Account.reject",
)
@patch(
"stripe.File.retrieve",
side_effect=[deepcopy(FAKE_FILEUPLOAD_ICON), deepcopy(FAKE_FILEUPLOAD_LOGO)],
autospec=True,
)
def test_api_reject(
fileupload_retrieve_mock,
account_reject_mock,
account_retrieve_mock,
extra_kwargs,
api_key,
expected_api_key,
stripe_account,
monkeypatch,
):
"""Test that API reject properly uses the passed in parameters."""
def mock_account_retrieve(*args, **kwargs):
return FAKE_PLATFORM_ACCOUNT
monkeypatch.setattr(stripe.Account, "retrieve", mock_account_retrieve)
# create a Stripe Platform Account
FAKE_PLATFORM_ACCOUNT.create()
fake_account = deepcopy(FAKE_ACCOUNT)
fake_account_rejected = deepcopy(FAKE_ACCOUNT)
fake_account_rejected["charges_enabled"] = False
fake_account_rejected["payouts_enabled"] = False
account_reject_mock.return_value = fake_account_rejected
account = Account.sync_from_stripe_data(fake_account)
# invoke api_reject()
account_rejected = account.api_reject(
api_key=api_key, stripe_account=stripe_account, **extra_kwargs
)
assert account_rejected["charges_enabled"] is False
assert account_rejected["payouts_enabled"] is False
Account.stripe_class.reject.assert_called_once_with(
account.id,
api_key=expected_api_key,
stripe_account=stripe_account or FAKE_PLATFORM_ACCOUNT["id"],
stripe_version=djstripe_settings.STRIPE_API_VERSION,
**extra_kwargs,
)
@pytest.mark.stripe_api
class TestAccountSTRIPE:
"""Tests for dj-stripe Account model using Stripe."""
def test_sync_from_stripe_data(self, platform_account_fixture, configure_settings):
"""Ensure sync_from_stripe_data() on Account model works as expected."""
# Create Account on Stripe.
account_json = stripe.Account.create(
type="standard",
country="US",
email="[email protected]",
api_key=settings.STRIPE_TEST_SECRET_KEY,
)
try:
account_instance = Account.sync_from_stripe_data(
account_json, api_key=settings.STRIPE_TEST_SECRET_KEY
)
assert account_instance.id == account_json["id"]
assert account_instance.type == account_json["type"]
assert account_instance.email == account_json["email"]
except Exception:
raise
# deleted created Account
finally:
# try to delete
stripe.Account.delete(
account_json["id"], api_key=settings.STRIPE_TEST_SECRET_KEY
)
@pytest.mark.parametrize(
"account",
["platform_account_fixture"],
)
def test__attach_objects_post_save_hook_livemode_valid_platform_account(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure _attach_objects_post_save_hook() on Account model works as expected."""
account_json, account_instance = request.getfixturevalue(account)
# Invoke _attach_objects_post_save_hook()
account_instance._attach_objects_post_save_hook(
cls=Account, data=account_json, api_key=settings.STRIPE_SECRET_KEY
)
account_instance.refresh_from_db()
# Platform Accounts have no livemode
assert account_instance.livemode is None
@pytest.mark.parametrize("livemode", [True, False, None])
@pytest.mark.parametrize(
"account",
[
"custom_account_fixture",
"standard_account_fixture",
],
)
def test__attach_objects_post_save_hook_livemode_valid_connected_account(
self, account, livemode, request, platform_account_fixture, configure_settings
):
"""Ensure _attach_objects_post_save_hook() on Account model works as expected."""
account_json, account_instance = request.getfixturevalue(account)
with patch(
"djstripe.models.account.get_api_key_details_by_prefix",
return_value=("some-secret-key", livemode),
) as mock_get_api_key_details_by_prefix:
# Invoke _attach_objects_post_save_hook()
account_instance._attach_objects_post_save_hook(
cls=Account, data=account_json, api_key=settings.STRIPE_SECRET_KEY
)
mock_get_api_key_details_by_prefix.assert_called_once_with(
settings.STRIPE_TEST_SECRET_KEY,
)
assert account_instance.livemode == livemode
@pytest.mark.parametrize(
"account",
["platform_account_fixture"],
)
def test__attach_objects_post_save_hook(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure _attach_objects_post_save_hook() on Account model works as expected."""
account_json, account_instance = request.getfixturevalue(account)
assert account_instance.branding_icon is not None
assert account_instance.branding_logo is not None
with patch("djstripe.models.core.File") as mock_file:
with patch.object(mock_file.return_value, "api_retrieve") as mock_retrieve:
# Invoke _attach_objects_post_save_hook()
account_instance._attach_objects_post_save_hook(
cls=Account, data=account_json, api_key=settings.STRIPE_SECRET_KEY
)
# one for Icon and one for Logo
mock_retrieve.assert_has_calls(
[
call(
stripe_account=account_instance.id,
api_key=settings.STRIPE_TEST_SECRET_KEY,
),
call(
stripe_account=account_instance.id,
api_key=settings.STRIPE_TEST_SECRET_KEY,
),
]
)
@pytest.mark.parametrize(
"account",
["platform_account_fixture"],
)
def test__attach_objects_post_save_hook_invalid_permission_error(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure _attach_objects_post_save_hook() on Account model raises Error as expected."""
account_json, account_instance = request.getfixturevalue(account)
assert account_instance.branding_icon is not None
assert account_instance.branding_logo is not None
with patch("djstripe.models.account.logger") as mock_logger:
with patch("djstripe.models.core.File") as mock_file:
with patch.object(
mock_file.return_value,
"api_retrieve",
side_effect=stripe.error.PermissionError,
):
# Invoke _attach_objects_post_save_hook()
account_instance._attach_objects_post_save_hook(
cls=Account,
data=account_json,
api_key=settings.STRIPE_SECRET_KEY,
)
mock_logger.warning.assert_has_calls(
[
call(
"Cannot retrieve business branding icon for acct"
f" {account_instance.id} with the key."
),
call(
"Cannot retrieve business branding logo for acct"
f" {account_instance.id} with the key."
),
]
)
@pytest.mark.parametrize(
"account",
["platform_account_fixture"],
)
def test__attach_objects_post_save_hook_invalid_invalid_request_error_unknown_exception(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure _attach_objects_post_save_hook() on Account model raises Error as expected."""
account_json, account_instance = request.getfixturevalue(account)
assert account_instance.branding_icon is not None
assert account_instance.branding_logo is not None
with pytest.raises(stripe.error.InvalidRequestError) as exc:
with patch("djstripe.models.core.File") as mock_file:
with patch.object(
mock_file.return_value,
"api_retrieve",
side_effect=stripe.error.InvalidRequestError("error message", {}),
):
# Invoke _attach_objects_post_save_hook()
account_instance._attach_objects_post_save_hook(
cls=Account,
data=account_json,
api_key=settings.STRIPE_SECRET_KEY,
)
assert "error message" == exc.value._message
@pytest.mark.parametrize(
"account",
["platform_account_fixture"],
)
def test__attach_objects_post_save_hook_invalid_invalid_request_error_known_exception(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure _attach_objects_post_save_hook() on Account model raises Error as expected."""
account_json, account_instance = request.getfixturevalue(account)
assert account_instance.branding_icon is not None
assert account_instance.branding_logo is not None
# No exception is raised
with patch("djstripe.models.core.File") as mock_file:
with patch.object(
mock_file.return_value,
"api_retrieve",
side_effect=stripe.error.InvalidRequestError(
"a similar object exists in", {}
),
):
# Invoke _attach_objects_post_save_hook()
account_instance._attach_objects_post_save_hook(
cls=Account, data=account_json, api_key=settings.STRIPE_SECRET_KEY
)
@pytest.mark.parametrize(
"account",
["platform_account_fixture"],
)
def test__attach_objects_post_save_hook_invalid_authentication_error(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure _attach_objects_post_save_hook() on Account model raises Error as expected."""
account_json, account_instance = request.getfixturevalue(account)
assert account_instance.branding_icon is not None
assert account_instance.branding_logo is not None
with patch("djstripe.models.account.logger") as mock_logger:
with patch("djstripe.models.core.File") as mock_file:
with patch.object(
mock_file.return_value,
"api_retrieve",
side_effect=stripe.error.AuthenticationError,
):
# Invoke _attach_objects_post_save_hook()
account_instance._attach_objects_post_save_hook(
cls=Account,
data=account_json,
api_key=settings.STRIPE_SECRET_KEY,
)
mock_logger.warning.assert_not_called()
@pytest.mark.parametrize(
"account",
[
"custom_account_fixture",
"standard_account_fixture",
],
)
def test__attach_objects_post_save_hook_without_icon_and_logo(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure _attach_objects_post_save_hook() on Account model works as expected."""
account_json, account_instance = request.getfixturevalue(account)
assert account_instance.branding_icon is None
assert account_instance.branding_logo is None
with patch("djstripe.models.core.File") as mock_file:
with patch.object(mock_file.return_value, "api_retrieve") as mock_retrieve:
# Invoke _attach_objects_post_save_hook()
account_instance._attach_objects_post_save_hook(
cls=Account, data=account_json, api_key=settings.STRIPE_SECRET_KEY
)
mock_retrieve.assert_not_called()
@pytest.mark.parametrize("livemode", [False, True])
@pytest.mark.parametrize(
"account",
[
"platform_account_fixture",
"custom_account_fixture",
"standard_account_fixture",
],
)
def test_get_stripe_dashboard_url(
self, account, livemode, request, platform_account_fixture, configure_settings
):
"""Ensure get_stripe_dashboard_url() on Account model works as expected."""
# second entry is the model instance
djstripe_account = request.getfixturevalue(account)[1]
# Platform accounts do not have a livemode
if account != "platform_account_fixture":
djstripe_account.livemode = livemode
djstripe_account.save()
djstripe_account.refresh_from_db()
assert (
djstripe_account.get_stripe_dashboard_url()
== f"https://dashboard.stripe.com/{djstripe_account.id}/"
f"{'test/' if not djstripe_account.livemode else ''}dashboard"
)
@pytest.mark.parametrize(
"account",
[
"custom_account_fixture",
"standard_account_fixture",
],
)
def test_get_default_account_null_logo(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure null icons and logos get populated as expected."""
# second entry is the model instance
djstripe_account = request.getfixturevalue(account)[1]
assert djstripe_account.branding_icon is None
assert djstripe_account.branding_logo is None
@pytest.mark.parametrize(
"account",
[
"platform_account_fixture",
"custom_account_fixture",
"standard_account_fixture",
],
)
def test__find_owner_account(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure the expected Owner account is returned."""
# second entry is the model instance
account = request.getfixturevalue(account)[1]
assert account.djstripe_owner_account.id == platform_account_fixture[1].id
def test_get_default_account(self, platform_account_fixture, configure_settings):
"""Ensure the expected default account is returned."""
account = Account.get_default_account(api_key=settings.STRIPE_SECRET_KEY)
assert account.id == "acct_1ItQ7cJSZQVUcJYg"
assert account.djstripe_owner_account == account
assert account.djstripe_owner_account == platform_account_fixture[1]
@pytest.mark.parametrize(
"business_profile_update, expected_business_url",
[
({}, ""),
({"url": ""}, ""),
(
{"url": "https://some-random-url/"},
"https://some-random-url/",
),
],
)
def test_business_url(
self,
business_profile_update,
expected_business_url,
platform_account_fixture,
configure_settings,
):
"""Ensure Account model's business_url property works as expected."""
account = platform_account_fixture[1]
account.business_profile = business_profile_update
account.save()
account.refresh_from_db()
assert account.business_url == expected_business_url
def test_branding_logo(self, platform_account_fixture):
"""Ensure Account model's branding_logo property works as expected."""
account = platform_account_fixture[1]
assert account.branding_logo.id == "file_1J423CJSZQVUcJYg7AsfwjcQ"
def test_branding_icon(self, platform_account_fixture):
"""Ensure Account model's branding_icon property works as expected."""
account = platform_account_fixture[1]
assert account.branding_icon.id == "file_1J422OJSZQVUcJYgLYKEC9w6"
@pytest.mark.parametrize(
"business_profile_update, settings_dashboard_update, expected_account_str",
[
({}, {}, "<id=acct_1ItQ7cJSZQVUcJYg>"),
({}, {"display_name": "some display name"}, "some display name"),
(
{"name": "some business name"},
{"display_name": ""},
"some business name",
),
({"name": ""}, {"display_name": ""}, "<id=acct_1ItQ7cJSZQVUcJYg>"),
],
)
def test_account_str(
self,
business_profile_update,
settings_dashboard_update,
expected_account_str,
platform_account_fixture,
configure_settings,
):
"""Ensure Account model's string representation is as expected."""
account = Account.get_default_account(api_key=settings.STRIPE_SECRET_KEY)
account.business_profile = business_profile_update
account.settings["dashboard"] = settings_dashboard_update
account.save()
account.refresh_from_db()
assert str(account) == expected_account_str
@pytest.mark.parametrize("extra_kwargs", ({"reason": "fraud"}, {"reason": "other"}))
def test_api_reject(
self,
custom_account_func_fixture,
extra_kwargs,
platform_account_fixture,
configure_settings,
):
"""Test to ensure correct Account gets rejected."""
account_json, account_instance = custom_account_func_fixture
# assert "rejected" does not exist
assert "rejected" not in account_json["requirements"]["disabled_reason"]
# invoke api_reject()
account_rejected = account_instance.api_reject(
stripe_account=platform_account_fixture[1].id,
api_key=settings.STRIPE_TEST_SECRET_KEY,
**extra_kwargs,
)
assert account_rejected["charges_enabled"] is False
assert account_rejected["payouts_enabled"] is False
assert (
account_rejected["requirements"]["disabled_reason"]
== f"rejected.{extra_kwargs['reason']}"
)
@pytest.mark.parametrize(
"mock_account_id, other_mock_account_id, expected_stripe_account",
(
("acct_fakefakefakefake001", None, "acct_fakefakefakefake001"),
(
"acct_fakefakefakefake001",
"acct_fakefakefakefake002",
"acct_fakefakefakefake002",
),
),
)
def test_account__create_from_stripe_object(
self,
mock_account_id,
other_mock_account_id,
expected_stripe_account,
platform_account_fixture,
configure_settings,
):
"""Ensure that we are setting the ID value correctly."""
mock_data = {"id": mock_account_id}
with patch(
"djstripe.models.connect.StripeModel._create_from_stripe_object"
) as mock_super__create_from_stripe_object:
Account._create_from_stripe_object(
data=mock_data,
stripe_account=other_mock_account_id,
api_key=settings.STRIPE_SECRET_KEY,
)
mock_super__create_from_stripe_object.assert_called_once_with(
data=mock_data,
current_ids=None,
pending_relations=None,
save=True,
stripe_account=expected_stripe_account,
api_key=settings.STRIPE_SECRET_KEY,
)
@pytest.mark.parametrize(
"account",
[
"platform_account_fixture",
"custom_account_fixture",
"standard_account_fixture",
],
)
def test_get_or_retrieve_for_api_key_djstripe_owner_account_exists(
self, account, request, platform_account_fixture, configure_settings
):
"""Ensure that djstripe_owner_account is returned correctly when it already exists on the api_key."""
new_account = Account.get_or_retrieve_for_api_key(
settings.STRIPE_TEST_SECRET_KEY
)
assert (
platform_account_fixture[1].djstripe_owner_account
== new_account.djstripe_owner_account