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
|
from tests import op_fixture, _sqlite_testing_config, eq_, assert_raises_message
from alembic import op
from sqlalchemy import Integer, \
UniqueConstraint, String
from sqlalchemy.sql import table, column
from unittest import TestCase
from sqlalchemy import Table, Column, MetaData
def _table_fixture(dialect, as_sql):
context = op_fixture(dialect, as_sql)
t1 = table("ins_table",
column('id', Integer),
column('v1', String()),
column('v2', String()),
)
return context, t1
def _big_t_table_fixture(dialect, as_sql):
context = op_fixture(dialect, as_sql)
t1 = Table("ins_table", MetaData(),
Column('id', Integer, primary_key=True),
Column('v1', String()),
Column('v2', String()),
)
return context, t1
def _test_bulk_insert(dialect, as_sql):
context, t1 = _table_fixture(dialect, as_sql)
op.bulk_insert(t1, [
{'id':1, 'v1':'row v1', 'v2':'row v5'},
{'id':2, 'v1':'row v2', 'v2':'row v6'},
{'id':3, 'v1':'row v3', 'v2':'row v7'},
{'id':4, 'v1':'row v4', 'v2':'row v8'},
])
return context
def _test_bulk_insert_single(dialect, as_sql):
context, t1 = _table_fixture(dialect, as_sql)
op.bulk_insert(t1, [
{'id':1, 'v1':'row v1', 'v2':'row v5'},
])
return context
def _test_bulk_insert_single_bigt(dialect, as_sql):
context, t1 = _big_t_table_fixture(dialect, as_sql)
op.bulk_insert(t1, [
{'id':1, 'v1':'row v1', 'v2':'row v5'},
])
return context
def test_bulk_insert():
context = _test_bulk_insert('default', False)
context.assert_(
'INSERT INTO ins_table (id, v1, v2) VALUES (:id, :v1, :v2)'
)
def test_bulk_insert_wrong_cols():
context = op_fixture('postgresql')
t1 = table("ins_table",
column('id', Integer),
column('v1', String()),
column('v2', String()),
)
op.bulk_insert(t1, [
{'v1':'row v1', },
])
context.assert_(
'INSERT INTO ins_table (id, v1, v2) VALUES (%(id)s, %(v1)s, %(v2)s)'
)
def test_bulk_insert_pg():
context = _test_bulk_insert('postgresql', False)
context.assert_(
'INSERT INTO ins_table (id, v1, v2) VALUES (%(id)s, %(v1)s, %(v2)s)'
)
def test_bulk_insert_pg_single():
context = _test_bulk_insert_single('postgresql', False)
context.assert_(
'INSERT INTO ins_table (id, v1, v2) VALUES (%(id)s, %(v1)s, %(v2)s)'
)
def test_bulk_insert_pg_single_as_sql():
context = _test_bulk_insert_single('postgresql', True)
context.assert_(
"INSERT INTO ins_table (id, v1, v2) VALUES (1, 'row v1', 'row v5')"
)
def test_bulk_insert_pg_single_big_t_as_sql():
context = _test_bulk_insert_single_bigt('postgresql', True)
context.assert_(
"INSERT INTO ins_table (id, v1, v2) VALUES (1, 'row v1', 'row v5')"
)
def test_bulk_insert_mssql():
context = _test_bulk_insert('mssql', False)
context.assert_(
'INSERT INTO ins_table (id, v1, v2) VALUES (:id, :v1, :v2)'
)
def test_bulk_insert_as_sql():
context = _test_bulk_insert('default', True)
context.assert_(
"INSERT INTO ins_table (id, v1, v2) VALUES (1, 'row v1', 'row v5')",
"INSERT INTO ins_table (id, v1, v2) VALUES (2, 'row v2', 'row v6')",
"INSERT INTO ins_table (id, v1, v2) VALUES (3, 'row v3', 'row v7')",
"INSERT INTO ins_table (id, v1, v2) VALUES (4, 'row v4', 'row v8')"
)
def test_bulk_insert_as_sql_pg():
context = _test_bulk_insert('postgresql', True)
context.assert_(
"INSERT INTO ins_table (id, v1, v2) VALUES (1, 'row v1', 'row v5')",
"INSERT INTO ins_table (id, v1, v2) VALUES (2, 'row v2', 'row v6')",
"INSERT INTO ins_table (id, v1, v2) VALUES (3, 'row v3', 'row v7')",
"INSERT INTO ins_table (id, v1, v2) VALUES (4, 'row v4', 'row v8')"
)
def test_bulk_insert_as_sql_mssql():
context = _test_bulk_insert('mssql', True)
# SQL server requires IDENTITY_INSERT
# TODO: figure out if this is safe to enable for a table that
# doesn't have an IDENTITY column
context.assert_(
'SET IDENTITY_INSERT ins_table ON',
"INSERT INTO ins_table (id, v1, v2) VALUES (1, 'row v1', 'row v5')",
"INSERT INTO ins_table (id, v1, v2) VALUES (2, 'row v2', 'row v6')",
"INSERT INTO ins_table (id, v1, v2) VALUES (3, 'row v3', 'row v7')",
"INSERT INTO ins_table (id, v1, v2) VALUES (4, 'row v4', 'row v8')",
'SET IDENTITY_INSERT ins_table OFF'
)
def test_invalid_format():
context, t1 = _table_fixture("sqlite", False)
assert_raises_message(
TypeError,
"List expected",
op.bulk_insert, t1, {"id":5}
)
assert_raises_message(
TypeError,
"List of dictionaries expected",
op.bulk_insert, t1, [(5, )]
)
class RoundTripTest(TestCase):
def setUp(self):
from sqlalchemy import create_engine
from alembic.migration import MigrationContext
self.conn = create_engine("sqlite://").connect()
self.conn.execute("""
create table foo(
id integer primary key,
data varchar(50),
x integer
)
""")
context = MigrationContext.configure(self.conn)
self.op = op.Operations(context)
self.t1 = table('foo',
column('id'),
column('data'),
column('x')
)
def tearDown(self):
self.conn.close()
def test_single_insert_round_trip(self):
self.op.bulk_insert(self.t1,
[{'data':"d1", "x":"x1"}]
)
eq_(
self.conn.execute("select id, data, x from foo").fetchall(),
[
(1, "d1", "x1"),
]
)
def test_bulk_insert_round_trip(self):
self.op.bulk_insert(self.t1, [
{'data':"d1", "x":"x1"},
{'data':"d2", "x":"x2"},
{'data':"d3", "x":"x3"},
])
eq_(
self.conn.execute("select id, data, x from foo").fetchall(),
[
(1, "d1", "x1"),
(2, "d2", "x2"),
(3, "d3", "x3")
]
)
|