File: test_core.py

package info (click to toggle)
python-django-pgbulk 3.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 556 kB
  • sloc: python: 1,815; makefile: 101; sh: 9
file content (1445 lines) | stat: -rw-r--r-- 49,442 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
import datetime as dt

import ddf
import freezegun
import pytest
from asgiref.sync import async_to_sync
from django import __version__ as DJANGO_VERSION
from django.db import transaction
from django.db.models import F
from pytz import timezone

import pgbulk
from pgbulk.core import psycopg_maj_version
from pgbulk.tests import models


@pytest.mark.django_db
def test_non_concrete_field():
    """Tests upserts and updates on non-concrete fields"""
    upsert_results = pgbulk.upsert(
        models.TestNonConcreteField,
        [models.TestNonConcreteField(int_field=1)],
        ["int_field"],
        returning=True,
    )
    assert len(upsert_results.created) == 1
    assert not upsert_results.updated

    non_concrete = models.TestNonConcreteField.objects.get()
    non_concrete.int_field = 2
    pgbulk.update(models.TestNonConcreteField, [non_concrete])


@pytest.mark.django_db
def test_func_field_upsert():
    """Tests the effects of setting a field to upsert using an F object"""
    models.TestFuncFieldModel.objects.create(my_key="a", int_val=0)
    pgbulk.upsert(
        models.TestFuncFieldModel,
        [models.TestFuncFieldModel(my_key="a", int_val=0)],
        ["my_key"],
        [pgbulk.UpdateField("int_val", expression=F("int_val") + 1)],
    )
    assert models.TestFuncFieldModel.objects.count() == 1
    assert models.TestFuncFieldModel.objects.get().int_val == 1

    ret = pgbulk.upsert(
        models.TestFuncFieldModel,
        [models.TestFuncFieldModel(my_key="a", int_val=0)],
        ["my_key"],
        [pgbulk.UpdateField("int_val", expression=F("int_val") - 3)],
        ignore_unchanged=True,
        returning=True,
    )
    assert models.TestFuncFieldModel.objects.count() == 1
    assert models.TestFuncFieldModel.objects.get().int_val == -2
    assert len(ret.updated) == 1

    ret = pgbulk.upsert(
        models.TestFuncFieldModel,
        [models.TestFuncFieldModel(my_key="a", int_val=-2)],
        ["my_key"],
        [pgbulk.UpdateField("int_val")],
        ignore_unchanged=True,
        returning=True,
    )
    assert models.TestFuncFieldModel.objects.count() == 1
    assert models.TestFuncFieldModel.objects.get().int_val == -2
    assert len(ret.updated) == 0

    ret = pgbulk.upsert(
        models.TestFuncFieldModel,
        [models.TestFuncFieldModel(my_key="b", int_val=0)],
        ["my_key"],
        [pgbulk.UpdateField("int_val", expression=F("int_val") - 3)],
        returning=True,
    )
    assert len(ret.created) == 1

    ret = pgbulk.upsert(
        models.TestFuncFieldModel,
        [
            models.TestFuncFieldModel(my_key="a", int_val=0),
            models.TestFuncFieldModel(my_key="b", int_val=0),
        ],
        ["my_key"],
        [pgbulk.UpdateField("int_val", expression=F("int_val") - 3)],
        returning=True,
    )
    assert models.TestFuncFieldModel.objects.get(my_key="a").int_val == -5
    assert models.TestFuncFieldModel.objects.get(my_key="b").int_val == -3

    ret = pgbulk.upsert(
        models.TestFuncFieldModel,
        [
            models.TestFuncFieldModel(my_key="a", int_val=0),
            models.TestFuncFieldModel(my_key="b", int_val=0),
        ],
        ["my_key"],
        [
            pgbulk.UpdateField("int_val", expression=F("int_val") - 1),
            pgbulk.UpdateField("other_int_val", expression=F("int_val") - 2),
        ],
        returning=True,
    )
    assert models.TestFuncFieldModel.objects.get(my_key="a").int_val == -6
    assert models.TestFuncFieldModel.objects.get(my_key="a").other_int_val == -7
    assert models.TestFuncFieldModel.objects.get(my_key="b").int_val == -4
    assert models.TestFuncFieldModel.objects.get(my_key="b").other_int_val == -5


@pytest.mark.django_db
def test_auto_field_upsert():
    """Verifies that upsert works with custom AutoFields"""
    pgbulk.upsert(
        models.TestAutoFieldModel,
        [models.TestAutoFieldModel(widget="widget", data="data")],
        [pgbulk.UpdateField("widget")],
        ["data"],
    )

    assert models.TestAutoFieldModel.objects.count() == 1


@pytest.mark.django_db
def test_upsert_return_upserts_none():
    """
    Tests the return_upserts flag on bulk upserts when there is no data.
    """
    return_values = pgbulk.upsert(
        models.TestModel, [], ["float_field"], ["float_field"], returning=True
    )
    assert not return_values


@pytest.mark.django_db
def test_upsert_return_multi_unique_fields_not_supported():
    """
    The new manager utils supports returning bulk upserts when there are
    multiple unique fields.
    """
    return_values = pgbulk.upsert(
        models.TestModel,
        [],
        ["float_field", "int_field"],
        ["float_field"],
        returning=True,
    )
    assert not return_values


@pytest.mark.django_db
def test_upsert_return_created_values():
    """
    Tests that values that are created are returned properly when returning
    is True.
    """
    results = pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=1),
            models.TestModel(int_field=3),
            models.TestModel(int_field=4),
        ],
        ["int_field"],
        ["float_field"],
        returning=True,
    )

    assert len(results.created) == 3
    for test_model, expected_int in zip(
        sorted(results.created, key=lambda k: k.int_field), [1, 3, 4]
    ):
        assert test_model.int_field == expected_int
        assert test_model.id is not None
    assert models.TestModel.objects.count() == 3


@pytest.mark.django_db
def test_upsert_return_list_of_values():
    """
    Tests that values that are created are returned properly when returning
    is True. Set returning to a list of fields
    """
    results = pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=1, float_field=2),
            models.TestModel(int_field=3, float_field=4),
            models.TestModel(int_field=4, float_field=5),
        ],
        ["int_field"],
        ["float_field"],
        returning=["float_field"],
    )

    assert len(results.created) == 3
    with pytest.raises(AttributeError):
        results.created[0].int_field  # noqa
    assert {2, 4, 5} == {m.float_field for m in results.created}


@pytest.mark.django_db
def test_upsert_return_created_updated_values():
    """
    Tests returning values when the items are either updated or created.
    """
    # Create an item that will be updated
    ddf.G(models.TestModel, int_field=2, float_field=1.0)
    results = pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=1, float_field=3.0),
            models.TestModel(int_field=2.0, float_field=3.0),
            models.TestModel(int_field=3, float_field=3.0),
            models.TestModel(int_field=4, float_field=3.0),
        ],
        ["int_field"],
        ["float_field"],
        returning=True,
    )

    created = results.created
    updated = results.updated
    assert len(created) == 3
    assert len(updated) == 1
    for test_model, expected_int in zip(sorted(created, key=lambda k: k.int_field), [1, 3, 4]):
        assert test_model.int_field == expected_int
        assert test_model.float_field == 3.0  # almostequals
        assert test_model.id is not None

    assert updated[0].int_field == 2
    assert updated[0].float_field == 3.0  # almostequals
    assert updated[0].id is not None
    assert models.TestModel.objects.count() == 4


@pytest.mark.django_db
def test_upsert_created_updated_auto_datetime_values():
    """
    Tests when the items are either updated or created when auto_now
    and auto_now_add datetime values are used
    """
    # Create an item that will be updated
    with freezegun.freeze_time("2018-09-01 00:00:00"):
        ddf.G(models.TestAutoDateTimeModel, int_field=1)

    with freezegun.freeze_time("2018-09-02 00:00:00"):
        results = pgbulk.upsert(
            models.TestAutoDateTimeModel,
            [
                models.TestAutoDateTimeModel(int_field=1),
                models.TestAutoDateTimeModel(int_field=2),
                models.TestAutoDateTimeModel(int_field=3),
                models.TestAutoDateTimeModel(int_field=4),
            ],
            ["int_field"],
            returning=True,
        )

    assert len(results.created) == 3
    assert len(results.updated) == 1

    expected_auto_now = [
        dt.datetime(2018, 9, 2),
        dt.datetime(2018, 9, 2),
        dt.datetime(2018, 9, 2),
        dt.datetime(2018, 9, 2),
    ]
    expected_auto_now_add = [
        dt.datetime(2018, 9, 1),
        dt.datetime(2018, 9, 2),
        dt.datetime(2018, 9, 2),
        dt.datetime(2018, 9, 2),
    ]
    for i, test_model in enumerate(sorted(results, key=lambda k: k.int_field)):
        assert test_model.auto_now_field == expected_auto_now[i]
        assert test_model.auto_now_add_field == expected_auto_now_add[i]


@pytest.mark.django_db
def test_upsert_wo_update_fields():
    """
    Tests bulk_upsert with no update fields. This function in turn should
    just do a bulk create for any models that do not already exist.
    """
    # Create models that already exist
    ddf.G(models.TestModel, int_field=1, float_field=1)
    ddf.G(models.TestModel, int_field=2, float_field=2)
    # Perform a bulk_upsert with one new model
    pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=1, float_field=3),
            models.TestModel(int_field=2, float_field=3),
            models.TestModel(int_field=3, float_field=3),
        ],
        ["int_field"],
        update_fields=[],
    )
    # Three objects should now exist, but no float fields should be updated
    assert models.TestModel.objects.count() == 3
    for test_model, expected_int_value in zip(
        models.TestModel.objects.order_by("int_field"), [1, 2, 3]
    ):
        assert test_model.int_field == expected_int_value
        assert test_model.float_field == expected_int_value


@pytest.mark.django_db
def test_upsert_w_blank_arguments():
    """
    Tests using required arguments and using blank arguments for everything
    else.
    """
    pgbulk.upsert(models.TestModel, [], ["field"], ["field"])
    assert not models.TestModel.objects.exists()


@pytest.mark.django_db
def test_upsert_no_updates():
    """
    Tests the case when no updates were previously stored (i.e objects are only
    created)
    """
    pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="0", float_field=0),
            models.TestModel(int_field=1, char_field="1", float_field=1),
            models.TestModel(int_field=2, char_field="2", float_field=2),
        ],
        ["int_field"],
        ["char_field", "float_field"],
    )

    for i, model_obj in enumerate(models.TestModel.objects.order_by("int_field")):
        assert model_obj.int_field == i
        assert model_obj.char_field == str(i)
        assert model_obj.float_field == i  # almostequals


@pytest.mark.django_db
def test_upsert_update_fields_returning():
    """
    Tests the case when all updates were previously stored and the int
    field is used as a uniqueness constraint. Assert returned values are
    expected and that it updates all fields by default
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    test_models = [
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1) for i in range(3)
    ]

    # Update using the int field as a uniqueness constraint
    results = pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="0", float_field=0),
            models.TestModel(int_field=1, char_field="1", float_field=1),
            models.TestModel(int_field=2, char_field="2", float_field=2),
        ],
        ["int_field"],
        returning=True,
    )

    assert results.created == []
    assert {u.id for u in results.updated} == {t.id for t in test_models}
    assert {u.int_field for u in results.updated} == {0, 1, 2}
    assert {u.float_field for u in results.updated} == {0, 1, 2}
    assert {u.char_field for u in results.updated} == {"0", "1", "2"}


@pytest.mark.django_db
def test_upsert_no_update_fields_returning():
    """
    Tests the case when all updates were previously stored and the int
    field is used as a uniqueness constraint. This test does not update
    any fields
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    for i in range(3):
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1)

    # Update using the int field as a uniqueness constraint
    results = pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="0", float_field=0),
            models.TestModel(int_field=1, char_field="1", float_field=1),
            models.TestModel(int_field=2, char_field="2", float_field=2),
        ],
        ["int_field"],
        [],
        returning=True,
    )

    assert list(results) == []


@pytest.mark.django_db
def test_upsert_update_duplicate_fields_returning_none_updated():
    """
    Tests the case when all updates were previously stored and the upsert
    tries to update the rows with duplicate values.
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    for i in range(3):
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1)

    # Update using the int field as a uniqueness constraint
    results = pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="-1", float_field=-1),
            models.TestModel(int_field=1, char_field="-1", float_field=-1),
            models.TestModel(int_field=2, char_field="-1", float_field=-1),
        ],
        ["int_field"],
        ["char_field", "float_field"],
        returning=True,
        ignore_unchanged=True,
    )

    assert list(results) == []


@pytest.mark.django_db
def test_upsert_update_duplicate_fields_returning_some_updated():
    """
    Tests the case when all updates were previously stored and the upsert
    tries to update the rows with duplicate values. Test when some aren't
    duplicates
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    for i in range(3):
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1)

    # Update using the int field as a uniqueness constraint
    results = pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="-1", float_field=-1),
            models.TestModel(int_field=1, char_field="-1", float_field=-1),
            models.TestModel(int_field=2, char_field="0", float_field=-1),
            models.TestModel(int_field=3, char_field="3", float_field=3),
        ],
        ["int_field"],
        ["char_field", "float_field"],
        returning=["char_field"],
        ignore_unchanged=True,
    )

    assert len(results.updated) == 1
    assert len(results.created) == 1
    assert results.updated[0].char_field == "0"
    assert results.created[0].char_field == "3"


@pytest.mark.django_db
def test_upsert_update_duplicate_fields_returning_some_updated_ignore_dups():
    """
    Tests the case when all updates were previously stored and the upsert
    tries to update the rows with duplicate values. Test when some aren't
    duplicates.
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    for i in range(3):
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1)

    # Update using the int field as a uniqueness constraint
    results = pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="-1", float_field=-1),
            models.TestModel(int_field=1, char_field="-1", float_field=-1),
            models.TestModel(int_field=2, char_field="0", float_field=-1),
            models.TestModel(int_field=3, char_field="3", float_field=3),
        ],
        ["int_field"],
        ["char_field", "float_field"],
        returning=["char_field"],
    )

    assert len(results.updated) == 3
    assert len(results.created) == 1
    assert results.created[0].char_field == "3"


@pytest.mark.django_db
def test_upsert_all_updates_unique_int_field():
    """
    Tests the case when all updates were previously stored and the int
    field is used as a uniqueness constraint.
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    for i in range(3):
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1)

    # Update using the int field as a uniqueness constraint
    pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="0", float_field=0),
            models.TestModel(int_field=1, char_field="1", float_field=1),
            models.TestModel(int_field=2, char_field="2", float_field=2),
        ],
        ["int_field"],
        ["char_field", "float_field"],
    )

    # Verify that the fields were updated
    assert models.TestModel.objects.count() == 3
    for i, model_obj in enumerate(models.TestModel.objects.order_by("int_field")):
        assert model_obj.int_field == i
        assert model_obj.char_field == str(i)
        assert model_obj.float_field == i  # almostequals


@pytest.mark.django_db
def test_upsert_all_updates_unique_int_field_update_float_field():
    """
    Tests the case when all updates were previously stored and the int
    field is used as a uniqueness constraint. Only updates the float field
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    for i in range(3):
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1)

    # Update using the int field as a uniqueness constraint
    pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="0", float_field=0),
            models.TestModel(int_field=1, char_field="1", float_field=1),
            models.TestModel(int_field=2, char_field="2", float_field=2),
        ],
        ["int_field"],
        update_fields=["float_field"],
    )

    # Verify that the float field was updated
    assert models.TestModel.objects.count() == 3
    for i, model_obj in enumerate(models.TestModel.objects.order_by("int_field")):
        assert model_obj.int_field == i
        assert model_obj.char_field == "-1"
        assert model_obj.float_field == i  # almostequals


@pytest.mark.django_db
def test_upsert_some_updates_unique_int_field_update_float_field():
    """
    Tests the case when some updates were previously stored and the int
    field is used as a uniqueness constraint. Only updates the float field.
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    for i in range(2):
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1)

    # Update using the int field as a uniqueness constraint. The first two
    # are updated while the third is created
    pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="0", float_field=0),
            models.TestModel(int_field=1, char_field="1", float_field=1),
            models.TestModel(int_field=2, char_field="2", float_field=2),
        ],
        ["int_field"],
        ["float_field"],
    )

    # Verify that the float field was updated for the first two models and
    # the char field was not updated for the first two. The char field,
    # however, should be '2' for the third model since it was created
    assert models.TestModel.objects.count() == 3
    for i, model_obj in enumerate(models.TestModel.objects.order_by("int_field")):
        assert model_obj.int_field == i
        assert model_obj.char_field == "-1" if i < 2 else "2"
        assert model_obj.float_field == i  # almostequals


@pytest.mark.django_db
def test_upsert_some_updates_unique_timezone_field_update_float_field():
    """
    Tests the case when some updates were previously stored and the timezone
    field is used as a uniqueness constraint. Only updates the float field.
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    for i in ["US/Eastern", "US/Central"]:
        ddf.G(
            models.TestUniqueTzModel,
            time_zone=i,
            char_field="-1",
            float_field=-1,
        )

    # Update using the int field as a uniqueness constraint. The first two
    # are updated while the third is created
    pgbulk.upsert(
        models.TestUniqueTzModel,
        [
            models.TestModel(time_zone=timezone("US/Eastern"), char_field="0", float_field=0),
            models.TestModel(time_zone=timezone("US/Central"), char_field="1", float_field=1),
            models.TestModel(time_zone=timezone("UTC"), char_field="2", float_field=2),
        ],
        ["time_zone"],
        ["float_field"],
    )

    # Verify that the float field was updated for the first two models and
    # the char field was not updated for the first two. The char field,
    # however, should be '2' for the third model since it was created
    m1 = models.TestUniqueTzModel.objects.get(time_zone=timezone("US/Eastern"))
    assert m1.char_field == "-1"
    assert m1.float_field == 0  # almostequals

    m2 = models.TestUniqueTzModel.objects.get(time_zone=timezone("US/Central"))
    assert m2.char_field == "-1"
    assert m2.float_field == 1  # almostequals

    m3 = models.TestUniqueTzModel.objects.get(time_zone=timezone("UTC"))
    assert m3.char_field == "2"
    assert m3.float_field == 2  # almostequals


@pytest.mark.django_db
def test_upsert_some_updates_unique_int_char_field_update_float_field():
    """
    Tests the case when some updates were previously stored and the int and
    char fields are used as a uniqueness constraint. Only updates the float
    field.
    """
    # Create previously stored test models with a unique int and char field
    for i in range(2):
        ddf.G(models.TestModel, int_field=i, char_field=str(i), float_field=-1)

    # Update using the int field as a uniqueness constraint. The first two
    # are updated while the third is created
    pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=0, char_field="0", float_field=0),
            models.TestModel(int_field=1, char_field="1", float_field=1),
            models.TestModel(int_field=2, char_field="2", float_field=2),
        ],
        ["int_field", "char_field"],
        ["float_field"],
    )

    # Verify that the float field was updated for the first two models and
    # the char field was not updated for the first two. The char field,
    # however, should be '2' for the third model since it was created
    assert models.TestModel.objects.count() == 3
    for i, model_obj in enumerate(models.TestModel.objects.order_by("int_field")):
        assert model_obj.int_field == i
        assert model_obj.char_field == str(i)
        assert model_obj.float_field == i  # almostequals


@pytest.mark.django_db
def test_upsert_no_updates_unique_int_char_field():
    """
    Tests the case when no updates were previously stored and the int and
    char fields are used as a uniqueness constraint. In this case, there
    is data previously stored, but the uniqueness constraints don't match.
    """
    # Create previously stored test models with a unique int field and -1 for
    # all other fields
    for i in range(3):
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1)

    # Update using the int and char field as a uniqueness constraint. All
    # three objects are created
    pgbulk.upsert(
        models.TestModel,
        [
            models.TestModel(int_field=3, char_field="0", float_field=0),
            models.TestModel(int_field=4, char_field="1", float_field=1),
            models.TestModel(int_field=5, char_field="2", float_field=2),
        ],
        ["int_field", "char_field"],
        ["float_field"],
    )

    # Verify that no updates occured
    assert models.TestModel.objects.count() == 6
    assert models.TestModel.objects.filter(char_field="-1").count() == 3
    for i, model_obj in enumerate(
        models.TestModel.objects.filter(char_field="-1").order_by("int_field")
    ):
        assert model_obj.int_field == i
        assert model_obj.char_field == "-1"
        assert model_obj.float_field == -1  # almostequals
    assert models.TestModel.objects.exclude(char_field="-1").count() == 3
    for i, model_obj in enumerate(
        models.TestModel.objects.exclude(char_field="-1").order_by("int_field")
    ):
        assert model_obj.int_field == i + 3
        assert model_obj.char_field == str(i)
        assert model_obj.float_field == i  # almostequals


@pytest.mark.django_db
def test_upsert_some_updates_unique_int_char_field_queryset():
    """
    Tests the case when some updates were previously stored and a queryset
    is used on the bulk upsert.
    """
    # Create previously stored test models with a unique int field and -1
    # for all other fields
    for i in range(3):
        ddf.G(models.TestModel, int_field=i, char_field="-1", float_field=-1)

    # Update using the int field as a uniqueness constraint on a queryset.
    # Only one object should be updated.
    pgbulk.upsert(
        models.TestModel.objects.filter(int_field=0),
        [
            models.TestModel(int_field=0, char_field="0", float_field=0),
            models.TestModel(int_field=4, char_field="1", float_field=1),
            models.TestModel(int_field=5, char_field="2", float_field=2),
        ],
        ["int_field"],
        ["float_field"],
    )

    # Verify that two new objecs were created
    assert models.TestModel.objects.count() == 5
    assert models.TestModel.objects.filter(char_field="-1").count() == 3
    for i, model_obj in enumerate(
        models.TestModel.objects.filter(char_field="-1").order_by("int_field")
    ):
        assert model_obj.int_field == i
        assert model_obj.char_field == "-1"


@pytest.mark.django_db
def test_upsert_objs_with_excluded_fields():
    """
    Tests that we properly exclude fields when upserting
    """
    test_obj_1 = ddf.G(
        models.TestModel,
        int_field=1,
        float_field=1.0,
        json_field={"test": "test"},
        array_field=["one", "two"],
    )
    test_obj_2 = ddf.G(
        models.TestModel,
        int_field=2,
        float_field=2.0,
        json_field={"test2": "test2"},
        array_field=["three", "four"],
    )

    # Change the fields on the models
    test_obj_1.json_field = {"test": "updated"}
    test_obj_1.array_field = ["one", "two", "updated"]

    test_obj_2.json_field = {"test2": "updated"}
    test_obj_2.array_field = ["three", "four", "updated"]

    pgbulk.upsert(
        models.TestModel,
        [test_obj_1, test_obj_2],
        ["int_field"],
        None,
        exclude=["array_field"],
    )
    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)

    # Assert that the json field was updated
    assert test_obj_1.json_field == {"test": "updated"}
    assert test_obj_2.json_field == {"test2": "updated"}

    # Assert that the array field was not updated
    assert test_obj_1.array_field == ["one", "two"]
    assert test_obj_2.array_field == ["three", "four"]


@pytest.mark.django_db
def test_update_custom_auto_field():
    t_model = ddf.G(models.TestAutoFieldModel)
    pgbulk.update(models.TestAutoFieldModel, [t_model])


@pytest.mark.django_db
def test_update_foreign_key_by_id():
    t_model = ddf.G(models.TestModel)
    t_fk_model = ddf.G(models.TestForeignKeyModel)
    t_fk_model.test_model = t_model
    pgbulk.update(models.TestForeignKeyModel, [t_fk_model], ["test_model_id"])
    assert models.TestForeignKeyModel.objects.get().test_model == t_model


@pytest.mark.django_db
def test_update_foreign_key_by_name():
    t_model = ddf.G(models.TestModel)
    t_fk_model = ddf.G(models.TestForeignKeyModel)
    t_fk_model.test_model = t_model
    pgbulk.update(models.TestForeignKeyModel, [t_fk_model], ["test_model"])
    assert models.TestForeignKeyModel.objects.get().test_model == t_model


@pytest.mark.django_db
def test_update_foreign_key_pk_using_id():
    """
    Tests a bulk update on a model that has a primary key to a foreign key.
    It uses the id of the pk in the update
    """
    t = ddf.G(models.TestPkForeignKey, char_field="hi")
    pgbulk.update(
        models.TestPkForeignKey,
        [models.TestPkForeignKey(my_key_id=t.my_key_id, char_field="hello")],
        ["char_field"],
    )
    assert models.TestPkForeignKey.objects.count() == 1
    assert models.TestPkForeignKey.objects.filter(char_field="hello", my_key=t.my_key).exists()


@pytest.mark.django_db
def test_update_foreign_key_pk():
    """
    Tests a bulk update on a model that has a primary key to a foreign key.
    It uses the foreign key itself in the update
    """
    t = ddf.G(models.TestPkForeignKey, char_field="hi")
    pgbulk.update(
        models.TestPkForeignKey,
        [models.TestPkForeignKey(my_key=t.my_key, char_field="hello")],
        ["char_field"],
    )
    assert models.TestPkForeignKey.objects.count() == 1
    assert models.TestPkForeignKey.objects.filter(char_field="hello", my_key=t.my_key).exists()


@pytest.mark.django_db
def test_update_char_pk():
    """
    Tests a bulk update on a model that has a primary key to a char field.
    """
    ddf.G(models.TestPkChar, char_field="hi", my_key="1")
    pgbulk.update(
        models.TestPkChar,
        [models.TestPkChar(my_key="1", char_field="hello")],
        ["char_field"],
    )
    assert models.TestPkChar.objects.count() == 1
    assert models.TestPkChar.objects.filter(char_field="hello", my_key="1").exists()


@pytest.mark.django_db
def test_update_none():
    """
    Tests when no values are provided to bulk update.
    """
    pgbulk.update(models.TestModel, [], [])


@pytest.mark.django_db
def test_update_no_fields_given():
    """
    Tests updating when no fields are given. All fields should be updated
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1, float_field=2)
    test_obj_2 = ddf.G(models.TestModel, int_field=2, float_field=3)
    test_obj_1.int_field = 7
    test_obj_1.float_field = 8
    test_obj_2.int_field = 9
    test_obj_2.float_field = 10

    pgbulk.update(models.TestModel, [test_obj_2, test_obj_1])

    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)
    assert test_obj_1.int_field == 7
    assert test_obj_1.float_field == 8
    assert test_obj_2.int_field == 9
    assert test_obj_2.float_field == 10


@pytest.mark.django_db
def test_update_returning_ignore_unchanged():
    """
    Tests updating with returning and with ignore_unchanged=True
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1, float_field=2)
    test_obj_2 = ddf.G(models.TestModel, int_field=2, float_field=3)
    test_obj_1.int_field = 7
    test_obj_1.float_field = 8
    test_obj_2.int_field = 9
    test_obj_2.float_field = 10

    results = pgbulk.update(models.TestModel, [test_obj_2, test_obj_1], returning=True)
    assert len(results) == 2
    results = sorted(results, key=lambda r: r.id)
    assert results[0].int_field == 7
    assert results[0].float_field == 8
    assert results[1].int_field == 9
    assert results[1].float_field == 10

    test_obj_1.refresh_from_db()
    test_obj_2.refresh_from_db()
    assert not pgbulk.update(
        models.TestModel, [test_obj_2, test_obj_1], ignore_unchanged=True, returning=True
    )

    test_obj_1.int_field = 1
    test_obj_1.float_field = 2
    test_obj_2.int_field = 3
    test_obj_2.float_field = 4
    results = pgbulk.update(models.TestModel, [test_obj_2, test_obj_1], returning=["int_field"])
    assert len(results) == 2
    assert not hasattr(results[0], "float_field")
    assert results[0].int_field == 1


@pytest.mark.django_db
def test_update_expressions():
    """
    Tests updating with expressions
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1, float_field=2)
    test_obj_2 = ddf.G(models.TestModel, int_field=3, float_field=5)

    pgbulk.update(
        models.TestModel,
        [test_obj_1, test_obj_2],
        [
            pgbulk.UpdateField("int_field", expression=F("int_field") + 1),
            pgbulk.UpdateField("float_field", expression=F("float_field") + 2),
        ],
    )

    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)
    assert test_obj_1.int_field == 2
    assert test_obj_1.float_field == 4
    assert test_obj_2.int_field == 4
    assert test_obj_2.float_field == 7


@pytest.mark.django_db
def test_update_floats_to_null():
    """
    Tests updating a float field to a null field.
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1, float_field=2)
    test_obj_2 = ddf.G(models.TestModel, int_field=2, float_field=3)
    test_obj_1.float_field = None
    test_obj_2.float_field = None

    pgbulk.update(models.TestModel, [test_obj_1, test_obj_2], ["float_field"])

    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)
    assert test_obj_1.float_field is None
    assert test_obj_2.float_field is None


@pytest.mark.django_db
def test_update_ints_to_null():
    """
    Tests updating an int field to a null field.
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1, float_field=2)
    test_obj_2 = ddf.G(models.TestModel, int_field=2, float_field=3)
    test_obj_1.int_field = None
    test_obj_2.int_field = None

    pgbulk.update(models.TestModel, [test_obj_1, test_obj_2], ["int_field"])

    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)
    assert test_obj_1.int_field is None
    assert test_obj_2.int_field is None


@pytest.mark.django_db
def test_update_chars_to_null():
    """
    Tests updating a char field to a null field.
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1, char_field="2")
    test_obj_2 = ddf.G(models.TestModel, int_field=2, char_field="3")
    test_obj_1.char_field = None
    test_obj_2.char_field = None

    pgbulk.update(models.TestModel, [test_obj_1, test_obj_2], ["char_field"])

    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)
    assert test_obj_1.char_field is None
    assert test_obj_2.char_field is None


@pytest.mark.django_db
def test_update_objs_no_fields_to_update():
    """
    Tests when objects are given to bulk update with no fields to update.
    Nothing should change in the objects.
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1)
    test_obj_2 = ddf.G(models.TestModel, int_field=2)
    # Change the int fields on the models
    test_obj_1.int_field = 3
    test_obj_2.int_field = 4
    # Do a bulk update with no update fields
    pgbulk.update(models.TestModel, [test_obj_1, test_obj_2], [])
    # The test objects int fields should be untouched
    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)
    assert test_obj_1.int_field == 1
    assert test_obj_2.int_field == 2


@pytest.mark.django_db
def test_update_objs_one_field_to_update():
    """
    Tests when objects are given to bulk update with one field to update.
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1)
    test_obj_2 = ddf.G(models.TestModel, int_field=2)
    # Change the int fields on the models
    test_obj_1.int_field = 3
    test_obj_2.int_field = 4
    # Do a bulk update with the int fields
    pgbulk.update(models.TestModel, [test_obj_1, test_obj_2], ["int_field"])
    # The test objects int fields should be untouched
    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)
    assert test_obj_1.int_field == 3
    assert test_obj_2.int_field == 4


@pytest.mark.django_db
def test_update_objs_one_field_to_update_ignore_other_field():
    """
    Tests when objects are given to bulk update with one field to update.
    This test changes another field not included in the update and verifies
    it is not updated.
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1, float_field=1.0)
    test_obj_2 = ddf.G(models.TestModel, int_field=2, float_field=2.0)
    # Change the int and float fields on the models
    test_obj_1.int_field = 3
    test_obj_2.int_field = 4
    test_obj_1.float_field = 3.0
    test_obj_2.float_field = 4.0
    # Do a bulk update with the int fields
    pgbulk.update(models.TestModel, [test_obj_1, test_obj_2], ["int_field"])
    # The test objects int fields should be untouched
    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)
    assert test_obj_1.int_field == 3
    assert test_obj_2.int_field == 4
    # The float fields should not be updated
    assert test_obj_1.float_field == 1.0
    assert test_obj_2.float_field == 2.0


@pytest.mark.django_db
def test_update_objs_two_fields_to_update():
    """
    Tests when objects are given to bulk update with two fields to update.
    """
    test_obj_1 = ddf.G(models.TestModel, int_field=1, float_field=1.0)
    test_obj_2 = ddf.G(models.TestModel, int_field=2, float_field=2.0)
    # Change the int and float fields on the models
    test_obj_1.int_field = 3
    test_obj_2.int_field = 4
    test_obj_1.float_field = 3.0
    test_obj_2.float_field = 4.0
    # Do a bulk update with the int fields
    pgbulk.update(
        models.TestModel,
        [test_obj_1, test_obj_2],
        ["int_field", "float_field"],
    )
    # The test objects int fields should be untouched
    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)
    assert test_obj_1.int_field == 3
    assert test_obj_2.int_field == 4
    # The float fields should be updated
    assert test_obj_1.float_field == 3.0
    assert test_obj_2.float_field == 4.0


@pytest.mark.django_db
def test_update_objects_with_custom_db_field_types():
    """
    Tests when objects are updated that have custom field types
    """
    test_obj_1 = ddf.G(
        models.TestModel,
        int_field=1,
        float_field=1.0,
        json_field={"test": "test"},
        array_field=["one", "two"],
    )
    test_obj_2 = ddf.G(
        models.TestModel,
        int_field=2,
        float_field=2.0,
        json_field={"test2": "test2"},
        array_field=["three", "four"],
    )

    # Change the fields on the models
    test_obj_1.json_field = {"test": "updated"}
    test_obj_1.array_field = ["one", "two", "updated"]

    test_obj_2.json_field = {"test2": "updated"}
    test_obj_2.array_field = ["three", "four", "updated"]

    # Do a bulk update with the int fields
    pgbulk.update(
        models.TestModel,
        [test_obj_1, test_obj_2],
        ["json_field", "array_field"],
    )

    # Refetch the objects
    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)

    # Assert that the json field was updated
    assert test_obj_1.json_field == {"test": "updated"}
    assert test_obj_2.json_field == {"test2": "updated"}

    # Assert that the array field was updated
    assert test_obj_1.array_field, ["one", "two" == "updated"]
    assert test_obj_2.array_field, ["three", "four" == "updated"]


@pytest.mark.django_db
def test_update_objects_with_excluded_fields():
    """
    Tests that we properly exclude fields when updating objects
    """
    test_obj_1 = ddf.G(
        models.TestModel,
        int_field=1,
        float_field=1.0,
        json_field={"test": "test"},
        array_field=["one", "two"],
    )
    test_obj_2 = ddf.G(
        models.TestModel,
        int_field=2,
        float_field=2.0,
        json_field={"test2": "test2"},
        array_field=["three", "four"],
    )

    # Change the fields on the models
    test_obj_1.json_field = {"test": "updated"}
    test_obj_1.array_field = ["one", "two", "updated"]

    test_obj_2.json_field = {"test2": "updated"}
    test_obj_2.array_field = ["three", "four", "updated"]

    pgbulk.update(
        models.TestModel,
        [test_obj_1, test_obj_2],
        None,
        exclude=["array_field"],
    )
    test_obj_1 = models.TestModel.objects.get(id=test_obj_1.id)
    test_obj_2 = models.TestModel.objects.get(id=test_obj_2.id)

    # Assert that the json field was updated
    assert test_obj_1.json_field == {"test": "updated"}
    assert test_obj_2.json_field == {"test2": "updated"}

    # Assert that the array field was not updated
    assert test_obj_1.array_field == ["one", "two"]
    assert test_obj_2.array_field == ["three", "four"]


@pytest.mark.django_db
def test_aupsert():
    """
    Basic test for async upsert
    """

    async def _run_aupsert():
        return await pgbulk.aupsert(
            models.TestModel,
            [
                models.TestModel(int_field=0, char_field="0", float_field=0),
                models.TestModel(int_field=1, char_field="1", float_field=1),
                models.TestModel(int_field=2, char_field="2", float_field=2),
            ],
            ["int_field"],
            ["char_field", "float_field"],
            returning=True,
        )

    results = async_to_sync(_run_aupsert)()

    assert models.TestModel.objects.count() == 3
    assert len(results) == 3
    assert len(results.created) == 3


@pytest.mark.django_db
def test_aupdate():
    """
    Basic test for async update
    """

    async def _run_aupdate(t_model):
        await pgbulk.aupdate(models.TestModel, [t_model], ["int_field"])

    t_model = models.TestModel.objects.create()
    t_model.int_field = 1000
    async_to_sync(_run_aupdate)(t_model)
    assert models.TestModel.objects.get().int_field == 1000


@pytest.mark.skipif(psycopg_maj_version == 2, reason="Only run on psycopg3")
@pytest.mark.django_db(transaction=True)
@pytest.mark.parametrize("binary", [True, False])
def test_copy(binary: bool):
    """
    Tests copying data into a table
    """
    pgbulk.copy(
        models.TestModel,
        [
            models.TestModel(int_field=1),
            models.TestModel(int_field=3),
            models.TestModel(int_field=4),
        ],
        binary=binary,
    )

    assert models.TestModel.objects.count() == 3
    assert set(models.TestModel.objects.values_list("int_field", flat=True)) == {1, 3, 4}


@pytest.mark.skipif(psycopg_maj_version == 2, reason="Only run on psycopg3")
@pytest.mark.django_db(transaction=True)
@pytest.mark.parametrize("binary", [True, False])
def test_copy_with_fields(binary: bool):
    """
    Tests copying data into a table with specific fields listed
    """
    pgbulk.copy(
        models.TestModel,
        [
            models.TestModel(int_field=1),
            models.TestModel(int_field=3),
            models.TestModel(int_field=4),
        ],
        ["int_field", "json_field", "array_field", "time_zone"],
        binary=binary,
    )

    assert models.TestModel.objects.count() == 3
    assert set(models.TestModel.objects.values_list("int_field", flat=True)) == {1, 3, 4}

    pgbulk.copy(
        models.TestModel,
        [
            models.TestModel(int_field=5, float_field=1),
            models.TestModel(int_field=6, float_field=2),
            models.TestModel(int_field=7, float_field=3),
        ],
        exclude=["float_field"],
    )
    assert models.TestModel.objects.count() == 6
    assert set(models.TestModel.objects.values_list("int_field", flat=True)) == {1, 3, 4, 5, 6, 7}
    assert set(models.TestModel.objects.values_list("float_field", flat=True)) == {None}


@pytest.mark.skipif(psycopg_maj_version == 2, reason="Only run on psycopg3")
@pytest.mark.django_db
@pytest.mark.parametrize("binary", [True, False])
def test_acopy(binary: bool):
    """
    Basic test for async copy
    """

    async def _run_acopy():
        return await pgbulk.acopy(
            models.TestModel,
            [
                models.TestModel(int_field=1),
                models.TestModel(int_field=3),
                models.TestModel(int_field=4),
            ],
            binary=binary,
        )

    async_to_sync(_run_acopy)()

    assert models.TestModel.objects.count() == 3
    assert set(models.TestModel.objects.values_list("int_field", flat=True)) == {1, 3, 4}


@pytest.mark.skipif(
    DJANGO_VERSION < "5.0",
    reason="Only run on Django >= 5.0",
)
@pytest.mark.django_db
def test_upsert_with_db_defaults():
    """
    Test that we can properly upsert objects that have db defaults.
    """
    result = pgbulk.upsert(
        models.TestDbDefaultModel,
        [models.TestDbDefaultModel(id=1)],
        ["id"],
        returning=True,
    )
    assert len(result.created) == 1
    assert result.created[0].int_field == 1
    assert result.created[0].char_field == "test"
    assert result.created[0].created_at is not None

    # Insert where one row relies on the db_default, and the other does not.
    result = pgbulk.upsert(
        models.TestDbDefaultModel,
        [
            models.TestDbDefaultModel(id=2),
            models.TestDbDefaultModel(id=3, int_field=3),
        ],
        ["id"],
        returning=True,
    )
    assert len(result.created) == 2
    assert result.created[0].int_field == 1
    assert result.created[1].int_field == 3

    # Test upserting an existing record without changing the db_default field
    # First change the int_field to something other than the db_default
    models.TestDbDefaultModel.objects.filter(id=1).update(int_field=42)

    result = pgbulk.upsert(
        models.TestDbDefaultModel,
        [models.TestDbDefaultModel(id=1)],
        ["id"],
        returning=True,
    )
    # Should go back to the db_default value.
    assert result.updated[0].int_field == 1

    # This should not change the int_field now.
    models.TestDbDefaultModel.objects.filter(id=1).update(int_field=42)
    result = pgbulk.upsert(
        models.TestDbDefaultModel,
        [models.TestDbDefaultModel(id=1)],
        ["id"],
        ["created_at"],
        returning=True,
    )
    assert result.updated[0].int_field == 42

    # Same situation but override the db_default value.
    result = pgbulk.upsert(
        models.TestDbDefaultModel,
        [models.TestDbDefaultModel(id=1, int_field=100)],
        ["id"],
        ["created_at"],
        returning=True,
    )
    assert result.updated[0].int_field == 42

    # Case in which second field isn't provided, but first and third are.
    # This is test positional placeholder behavior, and make sure that filling
    # in DEFAULT for char_field doesn't carry over to created_at.
    result = pgbulk.upsert(
        models.TestDbDefaultModel,
        [models.TestDbDefaultModel(id=1, int_field=100, created_at=dt.datetime(2024, 1, 1))],
        ["id"],
        returning=True,
    )
    assert result.updated[0].int_field == 100
    assert result.updated[0].char_field == "test"
    assert result.updated[0].created_at == dt.datetime(2024, 1, 1)


@pytest.mark.skipif(
    DJANGO_VERSION < "5.0",
    reason="Only run on Django >= 5.0",
)
@pytest.mark.django_db
def test_update_with_db_defaults():
    """
    Test that we can properly update objects that have db defaults.
    """
    obj = models.TestDbDefaultModel.objects.create()
    obj.int_field = 100
    pgbulk.update(models.TestDbDefaultModel, [obj], ["int_field"])
    assert obj.int_field == 100

    obj.char_field = "updated"

    pgbulk.update(models.TestDbDefaultModel, [obj], ["char_field", "int_field"])
    assert obj.char_field == "updated"
    # Int field should remain unchanged
    assert obj.int_field == 100


@pytest.mark.skipif(
    psycopg_maj_version == 2 or DJANGO_VERSION < "5.0",
    reason="Only run on psycopg3 and Django >= 5.0",
)
@pytest.mark.django_db
def test_copy_with_db_defaults():
    """
    Test that we cannot copy objects that have db defaults.
    """
    with (
        pytest.raises(ValueError, match="DB defaults are not supported when copying"),
        transaction.atomic(),
    ):
        pgbulk.copy(models.TestDbDefaultModel, [models.TestDbDefaultModel()])

    # If we provide a value, this should work.
    pgbulk.copy(models.TestDbDefaultModel, [models.TestDbDefaultModel(int_field=1)], ["int_field"])
    assert models.TestDbDefaultModel.objects.get().int_field == 1

    # Additionally, an ORM paired with a db default should work.
    pgbulk.copy(
        models.TestDbDefaultModelWithOrmDefault,
        [models.TestDbDefaultModelWithOrmDefault()],
        ["int_field"],
    )
    assert models.TestDbDefaultModelWithOrmDefault.objects.get().int_field == 1