import pytest import psycopg from psycopg import pq pytestmark = pytest.mark.crdb_skip("copy") sample_values = "values (10::int, 20::int, 'hello'::text), (40, NULL, 'world')" sample_tabledef = "col1 int primary key, col2 int, data text" sample_text = b"""\ 10\t20\thello 40\t\\N\tworld """ sample_binary_value = """ 5047 434f 5059 0aff 0d0a 00 00 0000 0000 0000 00 00 0300 0000 0400 0000 0a00 0000 0400 0000 1400 0000 0568 656c 6c6f 0003 0000 0004 0000 0028 ffff ffff 0000 0005 776f 726c 64 ff ff """ sample_binary_rows = [ bytes.fromhex("".join(row.split())) for row in sample_binary_value.split("\n\n") ] sample_binary = b"".join(sample_binary_rows) def test_put_data_no_copy(pgconn): with pytest.raises(psycopg.OperationalError): pgconn.put_copy_data(b"wat") pgconn.finish() with pytest.raises(psycopg.OperationalError): pgconn.put_copy_data(b"wat") def test_put_end_no_copy(pgconn): with pytest.raises(psycopg.OperationalError): pgconn.put_copy_end() pgconn.finish() with pytest.raises(psycopg.OperationalError): pgconn.put_copy_end() def test_copy_out(pgconn): ensure_table(pgconn, sample_tabledef) res = pgconn.exec_(b"copy copy_in from stdin") assert res.status == pq.ExecStatus.COPY_IN for i in range(10): data = [] for j in range(20): data.append( f"""\ {i * 20 + j}\t{j}\t{'X' * (i * 20 + j)} """ ) rv = pgconn.put_copy_data("".join(data).encode("ascii")) assert rv > 0 rv = pgconn.put_copy_end() assert rv > 0 res = pgconn.get_result() assert res.status == pq.ExecStatus.COMMAND_OK, res.error_message res = pgconn.exec_( b"select min(col1), max(col1), count(*), max(length(data)) from copy_in" ) assert res.status == pq.ExecStatus.TUPLES_OK, res.error_message assert res.get_value(0, 0) == b"0" assert res.get_value(0, 1) == b"199" assert res.get_value(0, 2) == b"200" assert res.get_value(0, 3) == b"199" def test_copy_out_err(pgconn): ensure_table(pgconn, sample_tabledef) res = pgconn.exec_(b"copy copy_in from stdin") assert res.status == pq.ExecStatus.COPY_IN for i in range(10): data = [] for j in range(20): data.append( f"""\ {i * 20 + j}\thardly a number\tnope """ ) rv = pgconn.put_copy_data("".join(data).encode("ascii")) assert rv > 0 rv = pgconn.put_copy_end() assert rv > 0 res = pgconn.get_result() assert res.status == pq.ExecStatus.FATAL_ERROR assert b"hardly a number" in res.error_message res = pgconn.exec_(b"select count(*) from copy_in") assert res.status == pq.ExecStatus.TUPLES_OK, res.error_message assert res.get_value(0, 0) == b"0" def test_copy_out_error_end(pgconn): ensure_table(pgconn, sample_tabledef) res = pgconn.exec_(b"copy copy_in from stdin") assert res.status == pq.ExecStatus.COPY_IN for i in range(10): data = [] for j in range(20): data.append( f"""\ {i * 20 + j}\t{j}\t{'X' * (i * 20 + j)} """ ) rv = pgconn.put_copy_data("".join(data).encode("ascii")) assert rv > 0 rv = pgconn.put_copy_end(b"nuttengoggenio") assert rv > 0 res = pgconn.get_result() assert res.status == pq.ExecStatus.FATAL_ERROR assert b"nuttengoggenio" in res.error_message res = pgconn.exec_(b"select count(*) from copy_in") assert res.status == pq.ExecStatus.TUPLES_OK, res.error_message assert res.get_value(0, 0) == b"0" def test_get_data_no_copy(pgconn): with pytest.raises(psycopg.OperationalError): pgconn.get_copy_data(0) pgconn.finish() with pytest.raises(psycopg.OperationalError): pgconn.get_copy_data(0) @pytest.mark.parametrize("format", [pq.Format.TEXT, pq.Format.BINARY]) def test_copy_out_read(pgconn, format): stmt = f"copy ({sample_values}) to stdout (format {format.name})" res = pgconn.exec_(stmt.encode("ascii")) assert res.status == pq.ExecStatus.COPY_OUT assert res.binary_tuples == format if format == pq.Format.TEXT: want = [row + b"\n" for row in sample_text.splitlines()] else: want = sample_binary_rows for row in want: nbytes, data = pgconn.get_copy_data(0) assert nbytes == len(data) assert data == row assert pgconn.get_copy_data(0) == (-1, b"") res = pgconn.get_result() assert res.status == pq.ExecStatus.COMMAND_OK, res.error_message def ensure_table(pgconn, tabledef, name="copy_in"): pgconn.exec_(f"drop table if exists {name}".encode("ascii")) pgconn.exec_(f"create table {name} ({tabledef})".encode("ascii"))