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
|
# WARNING: this file is auto-generated by 'async_to_sync.py'
# from the original file 'test_copy_async.py'
# DO NOT CHANGE! Change the original file instead.
import string
import hashlib
from io import BytesIO, StringIO
from random import choice, randrange
from itertools import cycle
import pytest
import psycopg
from psycopg import errors as e
from psycopg import pq, sql
from psycopg.abc import Buffer
from psycopg.copy import Copy, LibpqWriter, QueuedLibpqWriter
from psycopg.adapt import Dumper, PyFormat
from psycopg.types import TypeInfo
from psycopg.types.hstore import register_hstore
from psycopg.types.numeric import Int4
from .utils import eur
from .acompat import Event, gather, spawn
from ._test_copy import sample_binary # noqa: F401
from ._test_copy import FileWriter, ensure_table, py_to_raw, sample_binary_rows
from ._test_copy import sample_records, sample_tabledef, sample_text, sample_values
from ._test_copy import special_chars
from .test_adapt import StrNoneBinaryDumper, StrNoneDumper
pytestmark = pytest.mark.crdb_skip("copy")
@pytest.mark.parametrize("format", pq.Format)
def test_copy_out_read(conn, format):
if format == pq.Format.TEXT:
want = [row + b"\n" for row in sample_text.splitlines()]
else:
want = sample_binary_rows
cur = conn.cursor()
with cur.copy(f"copy ({sample_values}) to stdout (format {format.name})") as copy:
for row in want:
got = copy.read()
assert got == row
assert conn.info.transaction_status == pq.TransactionStatus.ACTIVE
assert copy.read() == b""
assert copy.read() == b""
assert copy.read() == b""
assert conn.info.transaction_status == pq.TransactionStatus.INTRANS
@pytest.mark.parametrize("format", pq.Format)
@pytest.mark.parametrize("row_factory", ["tuple_row", "dict_row", "namedtuple_row"])
def test_copy_out_iter(conn, format, row_factory):
if format == pq.Format.TEXT:
want = [row + b"\n" for row in sample_text.splitlines()]
else:
want = sample_binary_rows
rf = getattr(psycopg.rows, row_factory)
cur = conn.cursor(row_factory=rf)
with cur.copy(f"copy ({sample_values}) to stdout (format {format.name})") as copy:
assert list(copy) == want
assert conn.info.transaction_status == pq.TransactionStatus.INTRANS
@pytest.mark.parametrize("format", pq.Format)
@pytest.mark.parametrize("row_factory", ["tuple_row", "dict_row", "namedtuple_row"])
def test_copy_out_no_result(conn, format, row_factory):
rf = getattr(psycopg.rows, row_factory)
cur = conn.cursor(row_factory=rf)
with cur.copy(f"copy ({sample_values}) to stdout (format {format.name})"):
with pytest.raises(e.ProgrammingError):
cur.fetchone()
@pytest.mark.parametrize("ph, params", [("%s", (10,)), ("%(n)s", {"n": 10})])
def test_copy_out_param(conn, ph, params):
cur = conn.cursor()
with cur.copy(
f"copy (select * from generate_series(1, {ph})) to stdout", params
) as copy:
copy.set_types(["int4"])
assert list(copy.rows()) == [(i + 1,) for i in range(10)]
assert conn.info.transaction_status == pq.TransactionStatus.INTRANS
@pytest.mark.parametrize("format", pq.Format)
@pytest.mark.parametrize("typetype", ["names", "oids"])
def test_read_rows(conn, format, typetype):
cur = conn.cursor()
with cur.copy(
"""copy (
select 10::int4, 'hello'::text, '{0.0,1.0}'::float8[]
) to stdout (format %s)"""
% format.name
) as copy:
copy.set_types(["int4", "text", "float8[]"])
row = copy.read_row()
assert copy.read_row() is None
assert row == (10, "hello", [0.0, 1.0])
assert conn.info.transaction_status == pq.TransactionStatus.INTRANS
@pytest.mark.parametrize("format", pq.Format)
def test_rows(conn, format):
cur = conn.cursor()
with cur.copy(f"copy ({sample_values}) to stdout (format {format.name})") as copy:
copy.set_types(["int4", "int4", "text"])
rows = list(copy.rows())
assert rows == sample_records
assert conn.info.transaction_status == pq.TransactionStatus.INTRANS
@pytest.mark.parametrize("format", pq.Format)
def test_set_types(conn, format):
sample = ({"foo": "bar"}, 123)
cur = conn.cursor()
ensure_table(cur, "id serial primary key, data jsonb, data2 bigint")
with cur.copy(
f"copy copy_in (data, data2) from stdin (format {format.name})"
) as copy:
copy.set_types(["jsonb", "bigint"])
copy.write_row(sample)
cur.execute("select data, data2 from copy_in")
data = cur.fetchone()
assert data == sample
@pytest.mark.parametrize("format", pq.Format)
@pytest.mark.parametrize("use_set_types", [True, False])
def test_rowlen_mismatch(conn, format, use_set_types):
samples = [["foo", "bar"], ["foo", "bar", "baz"]]
cur = conn.cursor()
ensure_table(cur, "id serial primary key, data text, data2 text")
with pytest.raises(psycopg.DataError):
with cur.copy(
f"copy copy_in (data, data2) from stdin (format {format.name})"
) as copy:
if use_set_types:
copy.set_types(["text", "text"])
for row in samples:
copy.write_row(row)
def test_set_custom_type(conn, hstore):
command = """copy (select '"a"=>"1", "b"=>"2"'::hstore) to stdout"""
cur = conn.cursor()
with cur.copy(command) as copy:
rows = list(copy.rows())
assert rows == [('"a"=>"1", "b"=>"2"',)]
register_hstore(TypeInfo.fetch(conn, "hstore"), cur)
with cur.copy(command) as copy:
copy.set_types(["hstore"])
rows = list(copy.rows())
assert rows == [({"a": "1", "b": "2"},)]
@pytest.mark.parametrize("format", pq.Format)
def test_copy_out_allchars(conn, format):
cur = conn.cursor()
chars = list(map(chr, range(1, 256))) + [eur]
conn.execute("set client_encoding to utf8")
rows = []
query = sql.SQL("copy (select unnest({}::text[])) to stdout (format {})").format(
chars, sql.SQL(format.name)
)
with cur.copy(query) as copy:
copy.set_types(["text"])
while row := copy.read_row():
assert len(row) == 1
rows.append(row[0])
assert rows == chars
@pytest.mark.parametrize("format", pq.Format)
def test_read_row_notypes(conn, format):
cur = conn.cursor()
with cur.copy(f"copy ({sample_values}) to stdout (format {format.name})") as copy:
rows = []
while row := copy.read_row():
rows.append(row)
ref = [tuple((py_to_raw(i, format) for i in record)) for record in sample_records]
assert rows == ref
@pytest.mark.parametrize("format", pq.Format)
def test_rows_notypes(conn, format):
cur = conn.cursor()
with cur.copy(f"copy ({sample_values}) to stdout (format {format.name})") as copy:
rows = list(copy.rows())
ref = [tuple((py_to_raw(i, format) for i in record)) for record in sample_records]
assert rows == ref
@pytest.mark.parametrize("err", [-1, 1])
@pytest.mark.parametrize("format", pq.Format)
def test_copy_out_badntypes(conn, format, err):
cur = conn.cursor()
with cur.copy(f"copy ({sample_values}) to stdout (format {format.name})") as copy:
copy.set_types([0] * (len(sample_records[0]) + err))
with pytest.raises(e.ProgrammingError):
copy.read_row()
@pytest.mark.parametrize(
"format, buffer",
[(pq.Format.TEXT, "sample_text"), (pq.Format.BINARY, "sample_binary")],
)
def test_copy_in_buffers(conn, format, buffer):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with cur.copy(f"copy copy_in from stdin (format {format.name})") as copy:
copy.write(globals()[buffer])
cur.execute("select * from copy_in order by 1")
data = cur.fetchall()
assert data == sample_records
def test_copy_in_buffers_pg_error(conn):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with pytest.raises(e.UniqueViolation):
with cur.copy("copy copy_in from stdin (format text)") as copy:
copy.write(sample_text)
copy.write(sample_text)
assert conn.info.transaction_status == pq.TransactionStatus.INERROR
def test_copy_bad_result(conn):
conn.set_autocommit(True)
cur = conn.cursor()
with pytest.raises(e.SyntaxError):
with cur.copy("wat"):
pass
with pytest.raises(e.ProgrammingError):
with cur.copy("select 1"):
pass
with pytest.raises(e.ProgrammingError):
with cur.copy("reset timezone"):
pass
with pytest.raises(e.ProgrammingError):
with cur.copy("copy (select 1) to stdout; select 1") as copy:
list(copy)
with pytest.raises(e.ProgrammingError):
with cur.copy("select 1; copy (select 1) to stdout"):
pass
def test_copy_in_str(conn):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with cur.copy("copy copy_in from stdin (format text)") as copy:
copy.write(sample_text.decode())
cur.execute("select * from copy_in order by 1")
data = cur.fetchall()
assert data == sample_records
def test_copy_in_error(conn):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with pytest.raises(TypeError):
with cur.copy("copy copy_in from stdin (format binary)") as copy:
copy.write(sample_text.decode())
assert conn.info.transaction_status == pq.TransactionStatus.INERROR
@pytest.mark.parametrize("format", pq.Format)
def test_copy_in_empty(conn, format):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with cur.copy(f"copy copy_in from stdin (format {format.name})"):
pass
assert conn.info.transaction_status == pq.TransactionStatus.INTRANS
assert cur.rowcount == 0
@pytest.mark.slow
def test_copy_big_size_record(conn):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
data = "".join((chr(randrange(1, 256)) for i in range(10 * 1024 * 1024)))
with cur.copy("copy copy_in (data) from stdin") as copy:
copy.write_row([data])
cur.execute("select data from copy_in limit 1")
assert cur.fetchone() == (data,)
@pytest.mark.slow
@pytest.mark.parametrize("pytype", [str, bytes, bytearray, memoryview])
def test_copy_big_size_block(conn, pytype):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
data = "".join((choice(string.ascii_letters) for i in range(10 * 1024 * 1024)))
copy_data = data + "\n" if pytype is str else pytype(data.encode() + b"\n")
with cur.copy("copy copy_in (data) from stdin") as copy:
copy.write(copy_data)
cur.execute("select data from copy_in limit 1")
assert cur.fetchone() == (data,)
@pytest.mark.parametrize("format", pq.Format)
def test_subclass_adapter(conn, format):
if format == pq.Format.TEXT:
from psycopg.types.string import StrDumper as BaseDumper
else:
from psycopg.types.string import StrBinaryDumper
BaseDumper = StrBinaryDumper # type: ignore
class MyStrDumper(BaseDumper):
def dump(self, obj):
rv = super().dump(obj)
assert rv
return bytes(rv) * 2
conn.adapters.register_dumper(str, MyStrDumper)
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with cur.copy(f"copy copy_in (data) from stdin (format {format.name})") as copy:
copy.write_row(("hello",))
cur.execute("select data from copy_in")
rec = cur.fetchone()
assert rec[0] == "hellohello"
@pytest.mark.parametrize("format", pq.Format)
def test_subclass_nulling_dumper(conn, format):
Base: type = StrNoneDumper if format == pq.Format.TEXT else StrNoneBinaryDumper
class MyStrDumper(Base): # type: ignore
def dump(self, obj):
return super().dump(obj) if obj else None
conn.adapters.register_dumper(str, MyStrDumper)
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with cur.copy(f"copy copy_in (data) from stdin (format {format.name})") as copy:
copy.write_row(("hello",))
copy.write_row(("",))
cur.execute("select data from copy_in order by col1")
recs = cur.fetchall()
assert recs == [("hello",), (None,)]
@pytest.mark.parametrize("format", pq.Format)
def test_copy_in_error_empty(conn, format):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with pytest.raises(ZeroDivisionError, match="mannaggiamiseria"):
with cur.copy(f"copy copy_in from stdin (format {format.name})"):
raise ZeroDivisionError("mannaggiamiseria")
assert conn.info.transaction_status == pq.TransactionStatus.INERROR
def test_copy_in_buffers_with_pg_error(conn):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with pytest.raises(e.UniqueViolation):
with cur.copy("copy copy_in from stdin (format text)") as copy:
copy.write(sample_text)
copy.write(sample_text)
assert conn.info.transaction_status == pq.TransactionStatus.INERROR
def test_copy_in_buffers_with_py_error(conn):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with pytest.raises(ZeroDivisionError, match="nuttengoggenio"):
with cur.copy("copy copy_in from stdin (format text)") as copy:
copy.write(sample_text)
raise ZeroDivisionError("nuttengoggenio")
assert conn.info.transaction_status == pq.TransactionStatus.INERROR
def test_copy_out_error_with_copy_finished(conn):
cur = conn.cursor()
with pytest.raises(ZeroDivisionError):
with cur.copy("copy (select generate_series(1, 2)) to stdout") as copy:
copy.read_row()
1 / 0
assert conn.info.transaction_status == pq.TransactionStatus.INTRANS
def test_copy_out_error_with_copy_not_finished(conn):
cur = conn.cursor()
with pytest.raises(ZeroDivisionError):
with cur.copy("copy (select generate_series(1, 1000000)) to stdout") as copy:
copy.read_row()
1 / 0
assert conn.info.transaction_status == pq.TransactionStatus.INERROR
def test_copy_out_server_error(conn):
cur = conn.cursor()
with pytest.raises(e.DivisionByZero):
with cur.copy(
"copy (select 1/n from generate_series(-10, 10) x(n)) to stdout"
) as copy:
for block in copy:
pass
assert conn.info.transaction_status == pq.TransactionStatus.INERROR
@pytest.mark.parametrize("format", pq.Format)
def test_copy_in_records(conn, format):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with cur.copy(f"copy copy_in from stdin (format {format.name})") as copy:
for row in sample_records:
if format == pq.Format.BINARY:
row2 = tuple((Int4(i) if isinstance(i, int) else i for i in row))
row = row2 # type: ignore[assignment]
copy.write_row(row)
cur.execute("select * from copy_in order by 1")
data = cur.fetchall()
assert data == sample_records
@pytest.mark.parametrize("format", pq.Format)
def test_copy_in_records_set_types(conn, format):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with cur.copy(f"copy copy_in from stdin (format {format.name})") as copy:
copy.set_types(["int4", "int4", "text"])
for row in sample_records:
copy.write_row(row)
cur.execute("select * from copy_in order by 1")
data = cur.fetchall()
assert data == sample_records
@pytest.mark.parametrize("format", pq.Format)
def test_copy_in_records_binary(conn, format):
cur = conn.cursor()
ensure_table(cur, "col1 serial primary key, col2 int, data text")
with cur.copy(
f"copy copy_in (col2, data) from stdin (format {format.name})"
) as copy:
for row in sample_records:
copy.write_row((None, row[2]))
cur.execute("select * from copy_in order by 1")
data = cur.fetchall()
assert data == [(1, None, "hello"), (2, None, "world")]
class StrictIntDumper(Dumper):
oid = psycopg.adapters.types["int4"].oid
def dump(self, obj: int) -> Buffer:
if type(obj) is not int:
raise TypeError(f"bad type: {obj!r}")
return str(obj).encode()
def test_copy_in_text_no_pinning(conn):
cur = conn.cursor()
cur.adapters.register_dumper(int, StrictIntDumper)
cols = [
"col1 serial primary key",
"col2 int",
"col3 int",
"col4 double precision",
"col5 double precision",
]
ensure_table(cur, ",".join(cols))
with cur.copy(
"copy copy_in (col2,col3,col4,col5) from stdin (format text)"
) as copy:
# no pinned dumpers: type check & cast done on postgres side
# allows to mix castable reprs more freely
# slower than pinned, late errors from postgres jeopardizing copy cursor
copy.write_row([1, "2", 3, "4.1"])
copy.write_row(["1", 2, 3.0, 4])
cur.execute("select col2,col3,col4,col5 from copy_in order by 1")
data = cur.fetchall()
assert data == [(1, 2, 3, 4.1), (1, 2, 3, 4)]
def test_copy_in_text_pinned(conn):
cur = conn.cursor()
cur.adapters.register_dumper(int, StrictIntDumper)
cols = [
"col1 serial primary key",
"col2 int",
"col3 int",
"col4 double precision",
"col5 double precision",
]
ensure_table(cur, ",".join(cols))
with cur.copy(
"copy copy_in (col2,col3,col4,col5) from stdin (format text)"
) as copy:
# pinned dumpers from set_types: type check & cast done on psycopg side
# much faster, allows catching errors early without postgres involvement
copy.set_types(["int4", "int4", "double precision", "double precision"])
copy.write_row([1, 2, 3, 4.1])
with pytest.raises(
(e.DataError, TypeError)
): # FIXME: should errors from dumpers be harmonized?
copy.write_row([1.0, 2, 3, 4.1])
with pytest.raises((e.DataError, TypeError)):
copy.write_row([1, "2", 3, 4.1])
cur.execute("select col2,col3,col4,col5 from copy_in order by 1")
data = cur.fetchall()
assert data == [(1, 2, 3, 4.1)]
def test_copy_in_allchars(conn):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
conn.execute("set client_encoding to utf8")
with cur.copy("copy copy_in from stdin (format text)") as copy:
for i in range(1, 256):
copy.write_row((i, None, chr(i)))
copy.write_row((ord(eur), None, eur))
cur.execute(
"""
select col1 = ascii(data), col2 is null, length(data), count(*)
from copy_in group by 1, 2, 3
"""
)
data = cur.fetchall()
assert data == [(True, True, 1, 256)]
def test_copy_in_format(conn):
file = BytesIO()
conn.execute("set client_encoding to utf8")
cur = conn.cursor()
with Copy(cur, writer=FileWriter(file)) as copy:
for i in range(1, 256):
copy.write_row((i, chr(i)))
file.seek(0)
rows = file.read().split(b"\n")
assert not rows[-1]
del rows[-1]
for i, row in enumerate(rows, start=1):
fields = row.split(b"\t")
assert len(fields) == 2
assert int(fields[0].decode()) == i
if i in special_chars:
assert fields[1].decode() == f"\\{special_chars[i]}"
else:
assert fields[1].decode() == chr(i)
@pytest.mark.parametrize(
"format, buffer",
[(pq.Format.TEXT, "sample_text"), (pq.Format.BINARY, "sample_binary")],
)
def test_file_writer(conn, format, buffer):
file = BytesIO()
conn.execute("set client_encoding to utf8")
cur = conn.cursor()
with Copy(cur, binary=format, writer=FileWriter(file)) as copy:
for record in sample_records:
copy.write_row(record)
file.seek(0)
want = globals()[buffer]
got = file.read()
assert got == want
@pytest.mark.slow
def test_copy_from_to(conn):
# Roundtrip from file to database to file blockwise
gen = DataGenerator(conn, nrecs=1024, srec=10 * 1024)
gen.ensure_table()
cur = conn.cursor()
with cur.copy("copy copy_in from stdin") as copy:
for block in gen.blocks():
copy.write(block)
gen.assert_data()
f = BytesIO()
with cur.copy("copy copy_in to stdout") as copy:
for block in copy:
f.write(block)
f.seek(0)
assert gen.sha(f) == gen.sha(gen.file())
@pytest.mark.slow
@pytest.mark.parametrize("pytype", [bytes, bytearray, memoryview])
def test_copy_from_to_bytes(conn, pytype):
# Roundtrip from file to database to file blockwise
gen = DataGenerator(conn, nrecs=1024, srec=10 * 1024)
gen.ensure_table()
cur = conn.cursor()
with cur.copy("copy copy_in from stdin") as copy:
for block in gen.blocks():
copy.write(pytype(block.encode()))
gen.assert_data()
f = BytesIO()
with cur.copy("copy copy_in to stdout") as copy:
for block in copy:
f.write(block)
f.seek(0)
assert gen.sha(f) == gen.sha(gen.file())
@pytest.mark.slow
def test_copy_from_insane_size(conn):
# Trying to trigger a "would block" error
gen = DataGenerator(
conn, nrecs=4 * 1024, srec=10 * 1024, block_size=20 * 1024 * 1024
)
gen.ensure_table()
cur = conn.cursor()
with cur.copy("copy copy_in from stdin") as copy:
for block in gen.blocks():
copy.write(block)
gen.assert_data()
def test_copy_rowcount(conn):
gen = DataGenerator(conn, nrecs=3, srec=10)
gen.ensure_table()
cur = conn.cursor()
with cur.copy("copy copy_in from stdin") as copy:
for block in gen.blocks():
copy.write(block)
assert cur.rowcount == 3
gen = DataGenerator(conn, nrecs=2, srec=10, offset=3)
with cur.copy("copy copy_in from stdin") as copy:
for rec in gen.records():
copy.write_row(rec)
assert cur.rowcount == 2
with cur.copy("copy copy_in to stdout") as copy:
for block in copy:
pass
assert cur.rowcount == 5
with pytest.raises(e.BadCopyFileFormat):
with cur.copy("copy copy_in (id) from stdin") as copy:
for rec in gen.records():
copy.write_row(rec)
assert cur.rowcount == -1
def test_copy_query(conn):
cur = conn.cursor()
with cur.copy("copy (select 1) to stdout") as copy:
assert cur._query.query == b"copy (select 1) to stdout"
assert not cur._query.params
list(copy)
def test_cant_reenter(conn):
cur = conn.cursor()
with cur.copy("copy (select 1) to stdout") as copy:
list(copy)
with pytest.raises(TypeError):
with copy:
list(copy)
def test_str(conn):
cur = conn.cursor()
with cur.copy("copy (select 1) to stdout") as copy:
assert "[ACTIVE]" in str(copy)
list(copy)
assert "[INTRANS]" in str(copy)
def test_description(conn):
with conn.cursor() as cur:
with cur.copy("copy (select 'This', 'Is', 'Text') to stdout") as copy:
len(cur.description) == 3
assert cur.description[0].name == "column_1"
assert cur.description[2].name == "column_3"
list(copy.rows())
len(cur.description) == 3
assert cur.description[0].name == "column_1"
assert cur.description[2].name == "column_3"
def test_binary_partial_row(conn):
cur = conn.cursor()
ensure_table(cur, "id serial primary key, num int4, arr int4[][]")
with pytest.raises(
psycopg.DataError, match="nested lists have inconsistent depths"
):
with cur.copy("copy copy_in (num, arr) from stdin (format binary)") as copy:
copy.set_types(["int4", "int4[]"])
copy.write_row([15, None])
copy.write_row([16, [[None], None]])
@pytest.mark.parametrize("format", pq.Format)
def test_clean_buffer_on_error(conn, format):
cur = conn.cursor()
ensure_table(cur, "id serial primary key, num int4, obj jsonb")
with cur.copy(f"copy copy_in (num, obj) from stdin (format {format.name})") as copy:
copy.set_types(["int4", "jsonb"])
copy.write_row([15, {}])
with pytest.raises(TypeError):
copy.write_row([16, 1j])
copy.write_row([17, []])
cur.execute("select num, obj from copy_in order by id")
assert cur.fetchall() == [(15, {}), (17, [])]
@pytest.mark.parametrize(
"format, buffer",
[(pq.Format.TEXT, "sample_text"), (pq.Format.BINARY, "sample_binary")],
)
def test_worker_life(conn, format, buffer):
cur = conn.cursor()
ensure_table(cur, sample_tabledef)
with cur.copy(
f"copy copy_in from stdin (format {format.name})", writer=QueuedLibpqWriter(cur)
) as copy:
assert not copy.writer._worker
copy.write(globals()[buffer])
assert copy.writer._worker
assert not copy.writer._worker
cur.execute("select * from copy_in order by 1")
data = cur.fetchall()
assert data == sample_records
def test_worker_error_propagated(conn, monkeypatch):
def copy_to_broken(pgconn, buffer, flush=True):
raise ZeroDivisionError
yield
monkeypatch.setattr(psycopg._copy, "copy_to", copy_to_broken)
cur = conn.cursor()
cur.execute("create temp table wat (a text, b text)")
with pytest.raises(ZeroDivisionError):
with cur.copy("copy wat from stdin", writer=QueuedLibpqWriter(cur)) as copy:
copy.write("a,b")
@pytest.mark.parametrize(
"format, buffer",
[(pq.Format.TEXT, "sample_text"), (pq.Format.BINARY, "sample_binary")],
)
def test_connection_writer(conn, format, buffer):
cur = conn.cursor()
writer = LibpqWriter(cur)
ensure_table(cur, sample_tabledef)
with cur.copy(
f"copy copy_in from stdin (format {format.name})", writer=writer
) as copy:
assert copy.writer is writer
copy.write(globals()[buffer])
cur.execute("select * from copy_in order by 1")
data = cur.fetchall()
assert data == sample_records
@pytest.mark.slow
@pytest.mark.parametrize(
"fmt, set_types",
[(pq.Format.TEXT, True), (pq.Format.TEXT, False), (pq.Format.BINARY, True)],
)
@pytest.mark.parametrize("method", ["read", "iter", "row", "rows"])
def test_copy_to_leaks(conn_cls, dsn, faker, fmt, set_types, method, gc):
faker.format = PyFormat.from_pq(fmt)
faker.choose_schema(ncols=20)
faker.make_records(20)
def work():
with conn_cls.connect(dsn) as conn:
with conn.cursor(binary=fmt) as cur:
cur.execute(faker.drop_stmt)
cur.execute(faker.create_stmt)
with faker.find_insert_problem(conn):
cur.executemany(faker.insert_stmt, faker.records)
stmt = sql.SQL(
"copy (select {} from {} order by id) to stdout (format {})"
).format(
sql.SQL(", ").join(faker.fields_names),
faker.table_name,
sql.SQL(fmt.name),
)
with cur.copy(stmt) as copy:
if set_types:
copy.set_types(faker.types_names)
if method == "read":
while copy.read():
pass
elif method == "iter":
list(copy)
elif method == "row":
while copy.read_row() is not None:
pass
elif method == "rows":
list(copy.rows())
gc.collect()
n = []
for i in range(3):
work()
gc.collect()
n.append(gc.count())
assert n[0] == n[1] == n[2], f"objects leaked: {n[1] - n[0]}, {n[2] - n[1]}"
@pytest.mark.slow
@pytest.mark.parametrize(
"fmt, set_types",
[(pq.Format.TEXT, True), (pq.Format.TEXT, False), (pq.Format.BINARY, True)],
)
def test_copy_from_leaks(conn_cls, dsn, faker, fmt, set_types, gc):
faker.format = PyFormat.from_pq(fmt)
faker.choose_schema(ncols=20)
faker.make_records(20)
def work():
with conn_cls.connect(dsn) as conn:
with conn.cursor(binary=fmt) as cur:
cur.execute(faker.drop_stmt)
cur.execute(faker.create_stmt)
stmt = sql.SQL("copy {} ({}) from stdin (format {})").format(
faker.table_name,
sql.SQL(", ").join(faker.fields_names),
sql.SQL(fmt.name),
)
with cur.copy(stmt) as copy:
if set_types:
copy.set_types(faker.types_names)
for row in faker.records:
copy.write_row(row)
cur.execute(faker.select_stmt)
recs = cur.fetchall()
for got, want in zip(recs, faker.records):
faker.assert_record(got, want)
gc.collect()
n = []
for i in range(3):
work()
gc.collect()
n.append(gc.count())
assert n[0] == n[1] == n[2], f"objects leaked: {n[1] - n[0]}, {n[2] - n[1]}"
@pytest.mark.slow
@pytest.mark.parametrize("mode", ["row", "block", "binary"])
def test_copy_table_across(conn_cls, dsn, faker, mode):
faker.choose_schema(ncols=20)
faker.make_records(20)
connect = conn_cls.connect
with connect(dsn) as conn1, connect(dsn) as conn2:
faker.table_name = sql.Identifier("copy_src")
conn1.execute(faker.drop_stmt)
conn1.execute(faker.create_stmt)
conn1.cursor().executemany(faker.insert_stmt, faker.records)
faker.table_name = sql.Identifier("copy_tgt")
conn2.execute(faker.drop_stmt)
conn2.execute(faker.create_stmt)
fmt = "(format binary)" if mode == "binary" else ""
with conn1.cursor().copy(f"copy copy_src to stdout {fmt}") as copy1:
with conn2.cursor().copy(f"copy copy_tgt from stdin {fmt}") as copy2:
if mode == "row":
for row in copy1.rows():
copy2.write_row(row)
else:
for data in copy1:
copy2.write(data)
cur = conn2.execute(faker.select_stmt)
recs = cur.fetchall()
for got, want in zip(recs, faker.records):
faker.assert_record(got, want)
def test_copy_concurrency(conn):
"""
Test that copy operations hold the connection lock for the entire operation.
This test verifies the fix for the concurrency issue where Cursor.copy()
was not holding the connection lock throughout the copy context, allowing
concurrent operations to interfere.
"""
conn.execute("create temp table copy_concurrency_test (id int, data text)")
# Events to coordinate execution between copy task and workers
copy_entered = Event()
wrote_first = Event()
wrote_second = Event()
can_proceed = Event()
# Track execution order to verify workers run after copy completes
execution_log = []
def copy_task():
"""Copy task that writes two rows with controlled pauses."""
cur = conn.cursor()
with cur.copy("copy copy_concurrency_test from stdin") as copy:
# Pause after entering copy context
execution_log.append("entered_copy")
copy_entered.set()
can_proceed.wait()
# Write first row and pause
copy.write_row((1, "first"))
execution_log.append("wrote_row_1")
wrote_first.set()
can_proceed.wait()
# Write second row and pause
copy.write_row((2, "second"))
execution_log.append("wrote_row_2")
wrote_second.set()
can_proceed.wait()
# Copy context exited, lock should now be released
execution_log.append("exited_copy")
def worker_task():
"""
Worker that attempts to execute a query on a different cursor.
Should block until copy completes due to connection lock.
"""
# Try to execute on another cursor - this should block until copy exits
worker_cur = conn.cursor()
worker_cur.execute("select 1")
execution_log.append("worker_completed")
# Start the copy task
t_copy = spawn(copy_task)
# Wait for copy to enter, then spawn first worker
copy_entered.wait()
t_worker1 = spawn(worker_task)
# Allow copy to proceed to write first row
can_proceed.set()
can_proceed.clear()
wrote_first.wait()
# Spawn second worker after first row
t_worker2 = spawn(worker_task)
# Allow copy to proceed to write second row
can_proceed.set()
can_proceed.clear()
wrote_second.wait()
# Spawn third worker after second row
t_worker3 = spawn(worker_task)
# Allow copy to exit
can_proceed.set()
# Wait for all tasks to complete
gather(t_copy, t_worker1, t_worker2, t_worker3)
# Verify the data was written correctly
cur = conn.execute("select * from copy_concurrency_test order by id")
rows = cur.fetchall()
assert rows == [(1, "first"), (2, "second")]
# Verify that all workers completed AFTER copy exited
assert execution_log == [
"entered_copy",
"wrote_row_1",
"wrote_row_2",
"exited_copy",
"worker_completed",
"worker_completed",
"worker_completed",
]
class DataGenerator:
def __init__(self, conn, nrecs, srec, offset=0, block_size=8192):
self.conn = conn
self.nrecs = nrecs
self.srec = srec
self.offset = offset
self.block_size = block_size
def ensure_table(self):
cur = self.conn.cursor()
ensure_table(cur, "id integer primary key, data text")
def records(self):
for i, c in zip(range(self.nrecs), cycle(string.ascii_letters)):
s = c * self.srec
yield (i + self.offset, s)
def file(self):
f = StringIO()
for i, s in self.records():
f.write("%s\t%s\n" % (i, s))
f.seek(0)
return f
def blocks(self):
f = self.file()
while block := f.read(self.block_size):
yield block
def assert_data(self):
cur = self.conn.cursor()
cur.execute("select id, data from copy_in order by id")
for record in self.records():
assert record == cur.fetchone()
assert cur.fetchone() is None
def sha(self, f):
m = hashlib.sha256()
while block := f.read():
if isinstance(block, str):
block = block.encode()
m.update(block)
return m.hexdigest()
|