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 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769
|
"""Test against the builders in the op.* module."""
from unittest.mock import MagicMock
from unittest.mock import patch
from sqlalchemy import Boolean
from sqlalchemy import CheckConstraint
from sqlalchemy import Column
from sqlalchemy import Computed
from sqlalchemy import event
from sqlalchemy import exc
from sqlalchemy import ForeignKey
from sqlalchemy import Identity
from sqlalchemy import Index
from sqlalchemy import Integer
from sqlalchemy import MetaData
from sqlalchemy import String
from sqlalchemy import Table
from sqlalchemy import UniqueConstraint
from sqlalchemy.sql import column
from sqlalchemy.sql import func
from sqlalchemy.sql import table
from sqlalchemy.sql import text
from sqlalchemy.sql.schema import quoted_name
from alembic import op
from alembic import testing
from alembic.operations import MigrateOperation
from alembic.operations import Operations
from alembic.operations import ops
from alembic.operations import schemaobj
from alembic.operations.toimpl import create_table as _create_table
from alembic.operations.toimpl import drop_table as _drop_table
from alembic.testing import assert_raises_message
from alembic.testing import combinations
from alembic.testing import config
from alembic.testing import eq_
from alembic.testing import expect_warnings
from alembic.testing import is_not_
from alembic.testing import mock
from alembic.testing.assertions import expect_raises_message
from alembic.testing.fixtures import op_fixture
from alembic.testing.fixtures import TestBase
from alembic.util import sqla_compat
class OpTest(TestBase):
def test_rename_table(self):
context = op_fixture()
op.rename_table("t1", "t2")
context.assert_("ALTER TABLE t1 RENAME TO t2")
def test_rename_table_schema(self):
context = op_fixture()
op.rename_table("t1", "t2", schema="foo")
context.assert_("ALTER TABLE foo.t1 RENAME TO foo.t2")
def test_create_index_arbitrary_expr(self):
context = op_fixture()
op.create_index("name", "tname", [func.foo(column("x"))])
context.assert_("CREATE INDEX name ON tname (foo(x))")
def test_add_column_schema_hard_quoting(self):
context = op_fixture("postgresql")
op.add_column(
"somename",
Column("colname", String),
schema=quoted_name("some.schema", quote=True),
)
context.assert_(
'ALTER TABLE "some.schema".somename ADD COLUMN colname VARCHAR'
)
@testing.variation("use_inline", [True, False, "none"])
def test_add_column_primary_key(self, use_inline):
context = op_fixture("postgresql")
if use_inline.none:
op.add_column(
"somename",
Column("colname", String, primary_key=True),
)
else:
op.add_column(
"somename",
Column("colname", String, primary_key=True),
inline_primary_key=bool(use_inline),
)
if use_inline.use_inline:
context.assert_(
"ALTER TABLE somename ADD COLUMN colname "
"VARCHAR NOT NULL PRIMARY KEY"
)
else:
context.assert_(
"ALTER TABLE somename ADD COLUMN colname " "VARCHAR NOT NULL"
)
def test_add_column_primary_key_not_inline_by_default(self):
context = op_fixture("postgresql")
op.add_column(
"somename",
Column("colname", String, primary_key=True),
)
context.assert_(
"ALTER TABLE somename ADD COLUMN colname VARCHAR NOT NULL"
)
def test_add_column_inline_primary_key_no_pk_flag(self):
context = op_fixture("postgresql")
op.add_column(
"somename",
Column("colname", String),
inline_primary_key=True,
)
context.assert_("ALTER TABLE somename ADD COLUMN colname VARCHAR")
def test_rename_table_schema_hard_quoting(self):
context = op_fixture("postgresql")
op.rename_table(
"t1", "t2", schema=quoted_name("some.schema", quote=True)
)
context.assert_('ALTER TABLE "some.schema".t1 RENAME TO t2')
def test_add_constraint_schema_hard_quoting(self):
context = op_fixture("postgresql")
op.create_check_constraint(
"ck_user_name_len",
"user_table",
func.len(column("name")) > 5,
schema=quoted_name("some.schema", quote=True),
)
context.assert_(
'ALTER TABLE "some.schema".user_table ADD '
"CONSTRAINT ck_user_name_len CHECK (len(name) > 5)"
)
def test_create_index_quoting(self):
context = op_fixture("postgresql")
op.create_index("geocoded", "locations", ["IShouldBeQuoted"])
context.assert_(
'CREATE INDEX geocoded ON locations ("IShouldBeQuoted")'
)
def test_create_index_expressions(self):
context = op_fixture()
op.create_index("geocoded", "locations", [text("lower(coordinates)")])
context.assert_(
"CREATE INDEX geocoded ON locations (lower(coordinates))"
)
def test_add_column(self):
context = op_fixture()
op.add_column("t1", Column("c1", Integer, nullable=False))
context.assert_("ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL")
def test_add_column_exists_directives(self):
context = op_fixture()
op.add_column(
"t1", Column("c1", Integer, nullable=False), if_not_exists=True
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN IF NOT EXISTS c1 INTEGER NOT NULL"
)
def test_drop_column_exists_directives(self):
context = op_fixture()
op.drop_column("t1", "c1", if_exists=True)
context.assert_("ALTER TABLE t1 DROP COLUMN IF EXISTS c1")
def test_add_column_already_attached(self):
context = op_fixture()
c1 = Column("c1", Integer, nullable=False)
Table("t", MetaData(), c1)
op.add_column("t1", c1)
context.assert_("ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL")
def test_add_column_w_check(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, CheckConstraint("c1 > 5"), nullable=False),
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL CHECK (c1 > 5)"
)
def test_add_column_schema(self):
context = op_fixture()
op.add_column(
"t1", Column("c1", Integer, nullable=False), schema="foo"
)
context.assert_("ALTER TABLE foo.t1 ADD COLUMN c1 INTEGER NOT NULL")
def test_add_column_with_default(self):
context = op_fixture()
op.add_column(
"t1", Column("c1", Integer, nullable=False, server_default="12")
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER DEFAULT '12' NOT NULL"
)
def test_add_column_with_index(self):
context = op_fixture()
op.add_column("t1", Column("c1", Integer, nullable=False, index=True))
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL",
"CREATE INDEX ix_t1_c1 ON t1 (c1)",
)
def test_add_column_schema_with_default(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, nullable=False, server_default="12"),
schema="foo",
)
context.assert_(
"ALTER TABLE foo.t1 ADD COLUMN c1 INTEGER DEFAULT '12' NOT NULL"
)
def test_add_column_fk(self):
context = op_fixture()
op.add_column(
"t1", Column("c1", Integer, ForeignKey("c2.id"), nullable=False)
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL",
"ALTER TABLE t1 ADD FOREIGN KEY(c1) REFERENCES c2 (id)",
)
def test_add_column_fk_inline_references(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, ForeignKey("c2.id"), nullable=False),
inline_references=True,
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL REFERENCES c2 (id)"
)
def test_add_column_schema_fk(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, ForeignKey("c2.id"), nullable=False),
schema="foo",
)
context.assert_(
"ALTER TABLE foo.t1 ADD COLUMN c1 INTEGER NOT NULL",
"ALTER TABLE foo.t1 ADD FOREIGN KEY(c1) REFERENCES c2 (id)",
)
def test_add_column_schema_fk_inline_references(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, ForeignKey("c2.id"), nullable=False),
schema="foo",
inline_references=True,
)
context.assert_(
"ALTER TABLE foo.t1 ADD COLUMN c1 INTEGER NOT NULL "
"REFERENCES c2 (id)"
)
def test_add_column_schema_type(self):
"""Test that a schema type generates its constraints...."""
context = op_fixture()
op.add_column(
"t1", Column("c1", Boolean(create_constraint=True), nullable=False)
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 BOOLEAN NOT NULL",
"ALTER TABLE t1 ADD CHECK (c1 IN (0, 1))",
)
def test_add_column_schema_schema_type(self):
"""Test that a schema type generates its constraints...."""
context = op_fixture()
op.add_column(
"t1",
Column("c1", Boolean(create_constraint=True), nullable=False),
schema="foo",
)
context.assert_(
"ALTER TABLE foo.t1 ADD COLUMN c1 BOOLEAN NOT NULL",
"ALTER TABLE foo.t1 ADD CHECK (c1 IN (0, 1))",
)
def test_add_column_schema_type_checks_rule(self):
"""Test that a schema type doesn't generate a
constraint based on check rule."""
context = op_fixture("postgresql")
op.add_column(
"t1", Column("c1", Boolean(create_constraint=True), nullable=False)
)
context.assert_("ALTER TABLE t1 ADD COLUMN c1 BOOLEAN NOT NULL")
def test_add_column_fk_self_referential(self):
context = op_fixture()
op.add_column(
"t1", Column("c1", Integer, ForeignKey("t1.c2"), nullable=False)
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL",
"ALTER TABLE t1 ADD FOREIGN KEY(c1) REFERENCES t1 (c2)",
)
def test_add_column_fk_self_referential_inline_references(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, ForeignKey("t1.c2"), nullable=False),
inline_references=True,
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL REFERENCES t1 (c2)"
)
def test_add_column_schema_fk_self_referential(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, ForeignKey("foo.t1.c2"), nullable=False),
schema="foo",
)
context.assert_(
"ALTER TABLE foo.t1 ADD COLUMN c1 INTEGER NOT NULL",
"ALTER TABLE foo.t1 ADD FOREIGN KEY(c1) REFERENCES foo.t1 (c2)",
)
def test_add_column_fk_schema(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, ForeignKey("remote.t2.c2"), nullable=False),
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL",
"ALTER TABLE t1 ADD FOREIGN KEY(c1) REFERENCES remote.t2 (c2)",
)
def test_add_column_fk_schema_inline_references(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, ForeignKey("remote.t2.c2"), nullable=False),
inline_references=True,
)
context.assert_(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL "
"REFERENCES remote.t2 (c2)"
)
@combinations(
("MixedCase.id", 'REFERENCES "MixedCase" (id)'),
("t2.MixedCase", 'REFERENCES t2 ("MixedCase")'),
(
"MixedCaseTable.MixedCaseColumn",
'REFERENCES "MixedCaseTable" ("MixedCaseColumn")',
),
("MixedSchema.t2.id", 'REFERENCES "MixedSchema".t2 (id)'),
(
"MixedSchema.MixedTable.MixedCol",
'REFERENCES "MixedSchema"."MixedTable" ("MixedCol")',
),
argnames="fk_ref,expected_ref",
)
def test_add_column_fk_inline_references_quoting(
self, fk_ref, expected_ref
):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, ForeignKey(fk_ref), nullable=False),
inline_references=True,
)
context.assert_(
f"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL {expected_ref}"
)
def test_add_column_multiple_fk_inline_references(self):
"""Test that inline_references is ignored when a column has multiple
ForeignKey objects to avoid non-deterministic behavior."""
context = op_fixture()
# A column with two ForeignKey objects
col = Column(
"c1",
Integer,
ForeignKey("t2.id"),
ForeignKey("t3.id"),
nullable=False,
)
op.add_column("t1", col, inline_references=True)
# Should NOT render inline REFERENCES because there are 2 FKs
# Falls back to separate ADD CONSTRAINT statements
# Order of FK constraints is non-deterministic due to set ordering
context.assert_contains(
"ALTER TABLE t1 ADD COLUMN c1 INTEGER NOT NULL"
)
context.assert_contains(
"ALTER TABLE t1 ADD FOREIGN KEY(c1) REFERENCES t2 (id)"
)
context.assert_contains(
"ALTER TABLE t1 ADD FOREIGN KEY(c1) REFERENCES t3 (id)"
)
def test_add_column_schema_fk_schema(self):
context = op_fixture()
op.add_column(
"t1",
Column("c1", Integer, ForeignKey("remote.t2.c2"), nullable=False),
schema="foo",
)
context.assert_(
"ALTER TABLE foo.t1 ADD COLUMN c1 INTEGER NOT NULL",
"ALTER TABLE foo.t1 ADD FOREIGN KEY(c1) REFERENCES remote.t2 (c2)",
)
def test_drop_column(self):
context = op_fixture()
op.drop_column("t1", "c1")
context.assert_("ALTER TABLE t1 DROP COLUMN c1")
def test_drop_column_schema(self):
context = op_fixture()
op.drop_column("t1", "c1", schema="foo")
context.assert_("ALTER TABLE foo.t1 DROP COLUMN c1")
def test_alter_column_nullable(self):
context = op_fixture()
op.alter_column("t", "c", nullable=True)
context.assert_(
# TODO: not sure if this is PG only or standard
# SQL
"ALTER TABLE t ALTER COLUMN c DROP NOT NULL"
)
def test_alter_column_schema_nullable(self):
context = op_fixture()
op.alter_column("t", "c", nullable=True, schema="foo")
context.assert_(
# TODO: not sure if this is PG only or standard
# SQL
"ALTER TABLE foo.t ALTER COLUMN c DROP NOT NULL"
)
def test_alter_column_not_nullable(self):
context = op_fixture()
op.alter_column("t", "c", nullable=False)
context.assert_(
# TODO: not sure if this is PG only or standard
# SQL
"ALTER TABLE t ALTER COLUMN c SET NOT NULL"
)
def test_alter_column_schema_not_nullable(self):
context = op_fixture()
op.alter_column("t", "c", nullable=False, schema="foo")
context.assert_(
# TODO: not sure if this is PG only or standard
# SQL
"ALTER TABLE foo.t ALTER COLUMN c SET NOT NULL"
)
def test_alter_column_rename(self):
context = op_fixture()
op.alter_column("t", "c", new_column_name="x")
context.assert_("ALTER TABLE t RENAME c TO x")
def test_alter_column_schema_rename(self):
context = op_fixture()
op.alter_column("t", "c", new_column_name="x", schema="foo")
context.assert_("ALTER TABLE foo.t RENAME c TO x")
def test_alter_column_type(self):
context = op_fixture()
op.alter_column("t", "c", type_=String(50))
context.assert_("ALTER TABLE t ALTER COLUMN c TYPE VARCHAR(50)")
def test_alter_column_schema_type(self):
context = op_fixture()
op.alter_column("t", "c", type_=String(50), schema="foo")
context.assert_("ALTER TABLE foo.t ALTER COLUMN c TYPE VARCHAR(50)")
def test_alter_column_set_default(self):
context = op_fixture()
op.alter_column("t", "c", server_default="q")
context.assert_("ALTER TABLE t ALTER COLUMN c SET DEFAULT 'q'")
def test_alter_column_schema_set_default(self):
context = op_fixture()
op.alter_column("t", "c", server_default="q", schema="foo")
context.assert_("ALTER TABLE foo.t ALTER COLUMN c SET DEFAULT 'q'")
def test_alter_column_set_compiled_default(self):
context = op_fixture()
op.alter_column(
"t", "c", server_default=func.utc_thing(func.current_timestamp())
)
context.assert_(
"ALTER TABLE t ALTER COLUMN c "
"SET DEFAULT utc_thing(CURRENT_TIMESTAMP)"
)
def test_alter_column_schema_set_compiled_default(self):
context = op_fixture()
op.alter_column(
"t",
"c",
server_default=func.utc_thing(func.current_timestamp()),
schema="foo",
)
context.assert_(
"ALTER TABLE foo.t ALTER COLUMN c "
"SET DEFAULT utc_thing(CURRENT_TIMESTAMP)"
)
def test_alter_column_drop_default(self):
context = op_fixture()
op.alter_column("t", "c", server_default=None)
context.assert_("ALTER TABLE t ALTER COLUMN c DROP DEFAULT")
def test_alter_column_schema_drop_default(self):
context = op_fixture()
op.alter_column("t", "c", server_default=None, schema="foo")
context.assert_("ALTER TABLE foo.t ALTER COLUMN c DROP DEFAULT")
@combinations(
(lambda: Computed("foo * 5"), lambda: None),
(lambda: None, lambda: Computed("foo * 5")),
(
lambda: Computed("foo * 42"),
lambda: Computed("foo * 5"),
),
)
def test_alter_column_computed_not_supported(self, sd, esd):
op_fixture()
assert_raises_message(
exc.CompileError,
'Adding or removing a "computed" construct, e.g. '
"GENERATED ALWAYS AS, to or from an existing column is not "
"supported.",
op.alter_column,
"t1",
"c1",
server_default=sd(),
existing_server_default=esd(),
)
@combinations(
(lambda: Identity(), lambda: None),
(lambda: None, lambda: Identity()),
(lambda: Identity(), lambda: Identity()),
)
def test_alter_column_identity_not_supported(self, sd, esd):
op_fixture()
assert_raises_message(
exc.CompileError,
'Adding, removing or modifying an "identity" construct, '
"e.g. GENERATED AS IDENTITY, to or from an existing "
"column is not supported in this dialect.",
op.alter_column,
"t1",
"c1",
server_default=sd(),
existing_server_default=esd(),
)
@combinations((True,), (False,), (None,), argnames="existing_nullable")
def test_alter_column_schema_type_unnamed(self, existing_nullable):
context = op_fixture("mssql", native_boolean=False)
if existing_nullable is None:
with expect_warnings(
"MS-SQL ALTER COLUMN operations that specify type_= should"
):
op.alter_column(
"t",
"c",
type_=Boolean(create_constraint=True),
)
context.assert_(
"ALTER TABLE t ALTER COLUMN c BIT",
"ALTER TABLE t ADD CHECK (c IN (0, 1))",
)
else:
op.alter_column(
"t",
"c",
type_=Boolean(create_constraint=True),
existing_nullable=existing_nullable,
)
context.assert_(
f"ALTER TABLE t ALTER COLUMN c BIT "
f"{'NULL' if existing_nullable else 'NOT NULL'}",
"ALTER TABLE t ADD CHECK (c IN (0, 1))",
)
def test_alter_column_schema_schema_type_unnamed(self):
context = op_fixture("mssql", native_boolean=False)
op.alter_column(
"t",
"c",
type_=Boolean(create_constraint=True),
existing_nullable=False,
schema="foo",
)
context.assert_(
"ALTER TABLE foo.t ALTER COLUMN c BIT NOT NULL",
"ALTER TABLE foo.t ADD CHECK (c IN (0, 1))",
)
def test_alter_column_schema_type_named(self):
context = op_fixture("mssql", native_boolean=False)
op.alter_column(
"t",
"c",
type_=Boolean(name="xyz", create_constraint=True),
existing_nullable=False,
)
context.assert_(
"ALTER TABLE t ALTER COLUMN c BIT NOT NULL",
"ALTER TABLE t ADD CONSTRAINT xyz CHECK (c IN (0, 1))",
)
def test_alter_column_schema_schema_type_named(self):
context = op_fixture("mssql", native_boolean=False)
op.alter_column(
"t",
"c",
type_=Boolean(name="xyz", create_constraint=True),
existing_nullable=False,
schema="foo",
)
context.assert_(
"ALTER TABLE foo.t ALTER COLUMN c BIT NOT NULL",
"ALTER TABLE foo.t ADD CONSTRAINT xyz CHECK (c IN (0, 1))",
)
@combinations((True,), (False,), argnames="pass_existing_type")
@combinations((True,), (False,), argnames="change_nullability")
def test_generic_alter_column_type_and_nullability(
self, pass_existing_type, change_nullability
):
# this test is also on the mssql dialect in test_mssql
context = op_fixture()
args = dict(type_=Integer)
if pass_existing_type:
args["existing_type"] = String(15)
if change_nullability:
args["nullable"] = False
op.alter_column("t", "c", **args)
if change_nullability:
context.assert_(
"ALTER TABLE t ALTER COLUMN c SET NOT NULL",
"ALTER TABLE t ALTER COLUMN c TYPE INTEGER",
)
else:
context.assert_("ALTER TABLE t ALTER COLUMN c TYPE INTEGER")
def test_alter_column_schema_type_existing_type(self):
context = op_fixture("mssql", native_boolean=False)
op.alter_column(
"t",
"c",
type_=String(10),
existing_type=Boolean(name="xyz", create_constraint=True),
existing_nullable=False,
)
context.assert_(
"ALTER TABLE t DROP CONSTRAINT xyz",
"ALTER TABLE t ALTER COLUMN c VARCHAR(10) NOT NULL",
)
def test_alter_column_schema_schema_type_existing_type(self):
context = op_fixture("mssql", native_boolean=False)
op.alter_column(
"t",
"c",
type_=String(10),
existing_type=Boolean(name="xyz", create_constraint=True),
existing_nullable=False,
schema="foo",
)
context.assert_(
"ALTER TABLE foo.t DROP CONSTRAINT xyz",
"ALTER TABLE foo.t ALTER COLUMN c VARCHAR(10) NOT NULL",
)
def test_alter_column_schema_type_existing_type_no_const(self):
context = op_fixture("postgresql")
op.alter_column("t", "c", type_=String(10), existing_type=Boolean())
context.assert_("ALTER TABLE t ALTER COLUMN c TYPE VARCHAR(10)")
def test_alter_column_schema_schema_type_existing_type_no_const(self):
context = op_fixture("postgresql")
op.alter_column(
"t", "c", type_=String(10), existing_type=Boolean(), schema="foo"
)
context.assert_("ALTER TABLE foo.t ALTER COLUMN c TYPE VARCHAR(10)")
def test_alter_column_schema_type_existing_type_no_new_type(self):
context = op_fixture("postgresql")
op.alter_column("t", "c", nullable=False, existing_type=Boolean())
context.assert_("ALTER TABLE t ALTER COLUMN c SET NOT NULL")
def test_alter_column_schema_schema_type_existing_type_no_new_type(self):
context = op_fixture("postgresql")
op.alter_column(
"t", "c", nullable=False, existing_type=Boolean(), schema="foo"
)
context.assert_("ALTER TABLE foo.t ALTER COLUMN c SET NOT NULL")
def test_add_foreign_key(self):
context = op_fixture()
op.create_foreign_key(
"fk_test", "t1", "t2", ["foo", "bar"], ["bat", "hoho"]
)
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT fk_test FOREIGN KEY(foo, bar) "
"REFERENCES t2 (bat, hoho)"
)
def test_add_foreign_key_schema(self):
context = op_fixture()
op.create_foreign_key(
"fk_test",
"t1",
"t2",
["foo", "bar"],
["bat", "hoho"],
source_schema="foo2",
referent_schema="bar2",
)
context.assert_(
"ALTER TABLE foo2.t1 ADD CONSTRAINT fk_test FOREIGN KEY(foo, bar) "
"REFERENCES bar2.t2 (bat, hoho)"
)
def test_add_foreign_key_schema_same_tablename(self):
context = op_fixture()
op.create_foreign_key(
"fk_test",
"t1",
"t1",
["foo", "bar"],
["bat", "hoho"],
source_schema="foo2",
referent_schema="bar2",
)
context.assert_(
"ALTER TABLE foo2.t1 ADD CONSTRAINT fk_test FOREIGN KEY(foo, bar) "
"REFERENCES bar2.t1 (bat, hoho)"
)
def test_add_foreign_key_onupdate(self):
context = op_fixture()
op.create_foreign_key(
"fk_test",
"t1",
"t2",
["foo", "bar"],
["bat", "hoho"],
onupdate="CASCADE",
)
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT fk_test FOREIGN KEY(foo, bar) "
"REFERENCES t2 (bat, hoho) ON UPDATE CASCADE"
)
def test_add_foreign_key_ondelete(self):
context = op_fixture()
op.create_foreign_key(
"fk_test",
"t1",
"t2",
["foo", "bar"],
["bat", "hoho"],
ondelete="CASCADE",
)
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT fk_test FOREIGN KEY(foo, bar) "
"REFERENCES t2 (bat, hoho) ON DELETE CASCADE"
)
def test_add_foreign_key_deferrable(self):
context = op_fixture()
op.create_foreign_key(
"fk_test",
"t1",
"t2",
["foo", "bar"],
["bat", "hoho"],
deferrable=True,
)
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT fk_test FOREIGN KEY(foo, bar) "
"REFERENCES t2 (bat, hoho) DEFERRABLE"
)
def test_add_foreign_key_initially(self):
context = op_fixture()
op.create_foreign_key(
"fk_test",
"t1",
"t2",
["foo", "bar"],
["bat", "hoho"],
initially="deferred",
)
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT fk_test FOREIGN KEY(foo, bar) "
"REFERENCES t2 (bat, hoho) INITIALLY deferred"
)
def test_add_foreign_key_match(self):
context = op_fixture()
op.create_foreign_key(
"fk_test",
"t1",
"t2",
["foo", "bar"],
["bat", "hoho"],
match="SIMPLE",
)
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT fk_test FOREIGN KEY(foo, bar) "
"REFERENCES t2 (bat, hoho) MATCH SIMPLE"
)
def test_add_foreign_key_dialect_kw(self):
op_fixture()
with mock.patch("sqlalchemy.schema.ForeignKeyConstraint") as fkc:
op.create_foreign_key(
"fk_test",
"t1",
"t2",
["foo", "bar"],
["bat", "hoho"],
foobar_arg="xyz",
)
if config.requirements.foreign_key_match.enabled:
eq_(
fkc.mock_calls[0],
mock.call(
["foo", "bar"],
["t2.bat", "t2.hoho"],
onupdate=None,
ondelete=None,
name="fk_test",
foobar_arg="xyz",
deferrable=None,
initially=None,
match=None,
),
)
else:
eq_(
fkc.mock_calls[0],
mock.call(
["foo", "bar"],
["t2.bat", "t2.hoho"],
onupdate=None,
ondelete=None,
name="fk_test",
foobar_arg="xyz",
deferrable=None,
initially=None,
),
)
def test_add_foreign_key_self_referential(self):
context = op_fixture()
op.create_foreign_key("fk_test", "t1", "t1", ["foo"], ["bar"])
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT fk_test "
"FOREIGN KEY(foo) REFERENCES t1 (bar)"
)
def test_add_foreign_key_composite_self_referential(self):
"""test #1215
the same column name is present on both sides.
"""
context = op_fixture()
op.create_foreign_key(
"fk_test", "t1", "t1", ["foo", "bar"], ["bat", "bar"]
)
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT fk_test "
"FOREIGN KEY(foo, bar) REFERENCES t1 (bat, bar)"
)
def test_add_primary_key_constraint(self):
context = op_fixture()
op.create_primary_key("pk_test", "t1", ["foo", "bar"])
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT pk_test PRIMARY KEY (foo, bar)"
)
def test_add_primary_key_constraint_schema(self):
context = op_fixture()
op.create_primary_key("pk_test", "t1", ["foo"], schema="bar")
context.assert_(
"ALTER TABLE bar.t1 ADD CONSTRAINT pk_test PRIMARY KEY (foo)"
)
def test_add_check_constraint(self):
context = op_fixture()
op.create_check_constraint(
"ck_user_name_len", "user_table", func.len(column("name")) > 5
)
context.assert_(
"ALTER TABLE user_table ADD CONSTRAINT ck_user_name_len "
"CHECK (len(name) > 5)"
)
def test_add_check_constraint_schema(self):
context = op_fixture()
op.create_check_constraint(
"ck_user_name_len",
"user_table",
func.len(column("name")) > 5,
schema="foo",
)
context.assert_(
"ALTER TABLE foo.user_table ADD CONSTRAINT ck_user_name_len "
"CHECK (len(name) > 5)"
)
def test_add_unique_constraint(self):
context = op_fixture()
op.create_unique_constraint("uk_test", "t1", ["foo", "bar"])
context.assert_(
"ALTER TABLE t1 ADD CONSTRAINT uk_test UNIQUE (foo, bar)"
)
def test_add_unique_constraint_schema(self):
context = op_fixture()
op.create_unique_constraint(
"uk_test", "t1", ["foo", "bar"], schema="foo"
)
context.assert_(
"ALTER TABLE foo.t1 ADD CONSTRAINT uk_test UNIQUE (foo, bar)"
)
def test_drop_constraint(self):
context = op_fixture()
op.drop_constraint("foo_bar_bat", "t1")
context.assert_("ALTER TABLE t1 DROP CONSTRAINT foo_bar_bat")
def test_drop_constraint_type(self):
context = op_fixture()
op.drop_constraint("foo_bar_bat", "t1", type_="foreignkey")
context.assert_("ALTER TABLE t1 DROP CONSTRAINT foo_bar_bat")
def test_drop_constraint_type_generic(self):
context = op_fixture()
op.drop_constraint("foo_bar_bat", "t1")
context.assert_("ALTER TABLE t1 DROP CONSTRAINT foo_bar_bat")
def test_drop_constraint_legacy_type(self):
"""#1245"""
context = op_fixture()
op.drop_constraint("foo_bar_bat", "t1", "foreignkey")
context.assert_("ALTER TABLE t1 DROP CONSTRAINT foo_bar_bat")
def test_drop_constraint_schema(self):
context = op_fixture()
op.drop_constraint("foo_bar_bat", "t1", schema="foo")
context.assert_("ALTER TABLE foo.t1 DROP CONSTRAINT foo_bar_bat")
def test_drop_constraint_if_exists(self):
context = op_fixture()
if sqla_compat.sqla_2:
op.drop_constraint("foo_bar_bat", "t1", if_exists=True)
context.assert_(
"ALTER TABLE t1 DROP CONSTRAINT IF EXISTS foo_bar_bat"
)
else:
with expect_raises_message(
NotImplementedError, "SQLAlchemy 2.0 required"
):
op.drop_constraint("foo_bar_bat", "t1", if_exists=True)
def test_create_index(self):
context = op_fixture()
op.create_index("ik_test", "t1", ["foo", "bar"])
context.assert_("CREATE INDEX ik_test ON t1 (foo, bar)")
def test_create_index_if_not_exists(self):
context = op_fixture()
op.create_index("ik_test", "t1", ["foo", "bar"], if_not_exists=True)
context.assert_("CREATE INDEX IF NOT EXISTS ik_test ON t1 (foo, bar)")
def test_create_unique_index(self):
context = op_fixture()
op.create_index("ik_test", "t1", ["foo", "bar"], unique=True)
context.assert_("CREATE UNIQUE INDEX ik_test ON t1 (foo, bar)")
def test_create_index_quote_flag(self):
context = op_fixture()
op.create_index("ik_test", "t1", ["foo", "bar"], quote=True)
context.assert_('CREATE INDEX "ik_test" ON t1 (foo, bar)')
def test_create_index_table_col_event(self):
context = op_fixture()
op.create_index(
"ik_test", "tbl_with_auto_appended_column", ["foo", "bar"]
)
context.assert_(
"CREATE INDEX ik_test ON tbl_with_auto_appended_column (foo, bar)"
)
def test_add_unique_constraint_col_event(self):
context = op_fixture()
op.create_unique_constraint(
"ik_test", "tbl_with_auto_appended_column", ["foo", "bar"]
)
context.assert_(
"ALTER TABLE tbl_with_auto_appended_column "
"ADD CONSTRAINT ik_test UNIQUE (foo, bar)"
)
def test_create_index_schema(self):
context = op_fixture()
op.create_index("ik_test", "t1", ["foo", "bar"], schema="foo")
context.assert_("CREATE INDEX ik_test ON foo.t1 (foo, bar)")
def test_drop_index(self):
context = op_fixture()
op.drop_index("ik_test")
context.assert_("DROP INDEX ik_test")
def test_drop_index_w_tablename(self):
context = op_fixture()
op.drop_index("ik_test", table_name="the_table")
context.assert_("DROP INDEX ik_test")
def test_drop_index_w_tablename_legacy(self):
"""#1243"""
context = op_fixture()
op.drop_index("ik_test", "the_table")
context.assert_("DROP INDEX ik_test")
def test_drop_index_schema(self):
context = op_fixture()
op.drop_index("ik_test", schema="foo")
context.assert_("DROP INDEX foo.ik_test")
def test_drop_index_if_exists(self):
context = op_fixture()
op.drop_index("ik_test", if_exists=True)
context.assert_("DROP INDEX IF EXISTS ik_test")
def test_drop_table(self):
context = op_fixture()
op.drop_table("tb_test")
context.assert_("DROP TABLE tb_test")
def test_drop_table_schema(self):
context = op_fixture()
op.drop_table("tb_test", schema="foo")
context.assert_("DROP TABLE foo.tb_test")
def test_drop_table_if_exists(self):
context = op_fixture()
op.drop_table("tb_test", if_exists=True)
context.assert_("DROP TABLE IF EXISTS tb_test")
def test_create_table_selfref(self):
context = op_fixture()
op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
Column("st_id", Integer, ForeignKey("some_table.id")),
)
context.assert_(
"CREATE TABLE some_table ("
"id INTEGER NOT NULL, "
"st_id INTEGER, "
"PRIMARY KEY (id), "
"FOREIGN KEY(st_id) REFERENCES some_table (id))"
)
def test_create_table_check_constraint(self):
context = op_fixture()
t1 = op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
Column("foo_id", Integer),
CheckConstraint("foo_id>5", name="ck_1"),
)
context.assert_(
"CREATE TABLE some_table ("
"id INTEGER NOT NULL, "
"foo_id INTEGER, "
"PRIMARY KEY (id), "
"CONSTRAINT ck_1 CHECK (foo_id>5))"
)
ck = [c for c in t1.constraints if isinstance(c, CheckConstraint)]
eq_(ck[0].name, "ck_1")
def test_create_table_with_check_constraint_with_expr(self):
context = op_fixture()
foo_id = Column("foo_id", Integer)
t1 = op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
foo_id,
CheckConstraint(foo_id > 5, name="ck_1"),
)
context.assert_(
"CREATE TABLE some_table ("
"id INTEGER NOT NULL, "
"foo_id INTEGER, "
"PRIMARY KEY (id), "
"CONSTRAINT ck_1 CHECK (foo_id > 5))"
)
ck = [c for c in t1.constraints if isinstance(c, CheckConstraint)]
eq_(ck[0].name, "ck_1")
eq_(len(ck), 1)
def test_create_table_unique_constraint(self):
context = op_fixture()
t1 = op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
Column("foo_id", Integer),
UniqueConstraint("foo_id", name="uq_1"),
)
context.assert_(
"CREATE TABLE some_table ("
"id INTEGER NOT NULL, "
"foo_id INTEGER, "
"PRIMARY KEY (id), "
"CONSTRAINT uq_1 UNIQUE (foo_id))"
)
uq = [c for c in t1.constraints if isinstance(c, UniqueConstraint)]
eq_(uq[0].name, "uq_1")
def test_create_table_unique_flag(self):
context = op_fixture()
t1 = op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
Column("foo_id", Integer, unique=True),
)
context.assert_(
"CREATE TABLE some_table (id INTEGER NOT NULL, foo_id INTEGER, "
"PRIMARY KEY (id), UNIQUE (foo_id))"
)
uq = [c for c in t1.constraints if isinstance(c, UniqueConstraint)]
assert uq
def test_create_table_index_flag(self):
context = op_fixture()
t1 = op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
Column("foo_id", Integer, index=True),
)
context.assert_(
"CREATE TABLE some_table (id INTEGER NOT NULL, foo_id INTEGER, "
"PRIMARY KEY (id))",
"CREATE INDEX ix_some_table_foo_id ON some_table (foo_id)",
)
assert t1.indexes
def test_create_table_index(self):
context = op_fixture()
t1 = op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
Column("foo_id", Integer),
Index("ix_1", "foo_id"),
)
context.assert_(
"CREATE TABLE some_table ("
"id INTEGER NOT NULL, "
"foo_id INTEGER, "
"PRIMARY KEY (id))",
"CREATE INDEX ix_1 ON some_table (foo_id)",
)
ix = list(t1.indexes)
eq_(ix[0].name, "ix_1")
def test_create_table_fk_and_schema(self):
context = op_fixture()
t1 = op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
Column("foo_id", Integer, ForeignKey("foo.id")),
schema="schema",
)
context.assert_(
"CREATE TABLE schema.some_table ("
"id INTEGER NOT NULL, "
"foo_id INTEGER, "
"PRIMARY KEY (id), "
"FOREIGN KEY(foo_id) REFERENCES foo (id))"
)
eq_(t1.c.id.name, "id")
eq_(t1.schema, "schema")
def test_create_table_no_pk(self):
context = op_fixture()
t1 = op.create_table(
"some_table",
Column("x", Integer),
Column("y", Integer),
Column("z", Integer),
)
context.assert_(
"CREATE TABLE some_table (x INTEGER, y INTEGER, z INTEGER)"
)
assert not t1.primary_key
def test_create_table_two_fk(self):
context = op_fixture()
op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
Column("foo_id", Integer, ForeignKey("foo.id")),
Column("foo_bar", Integer, ForeignKey("foo.bar")),
)
context.assert_(
"CREATE TABLE some_table ("
"id INTEGER NOT NULL, "
"foo_id INTEGER, "
"foo_bar INTEGER, "
"PRIMARY KEY (id), "
"FOREIGN KEY(foo_id) REFERENCES foo (id), "
"FOREIGN KEY(foo_bar) REFERENCES foo (bar))"
)
def test_create_table_if_not_exists(self):
context = op_fixture()
op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
if_not_exists=True,
)
context.assert_(
"CREATE TABLE IF NOT EXISTS some_table ("
"id INTEGER NOT NULL, "
"PRIMARY KEY (id))"
)
def test_execute_delete(self):
context = op_fixture()
account = table(
"account", column("name", String), column("id", Integer)
)
op.execute(account.delete().where(account.c.name == "account 1"))
context.assert_(
"DELETE FROM account WHERE account.name = :name_1",
)
def test_execute_insert(self):
context = op_fixture()
account = table(
"account", column("name", String), column("id", Integer)
)
op.execute(account.insert().values(name="account 1"))
context.assert_(
"INSERT INTO account (name) VALUES (:name)",
)
def test_execute_update(self):
context = op_fixture()
account = table(
"account", column("name", String), column("id", Integer)
)
op.execute(
account.update()
.where(account.c.name == "account 1")
.values({"name": "account 2"})
)
context.assert_(
"UPDATE account SET name=:name " "WHERE account.name = :name_1",
)
def test_execute_str(self):
context = op_fixture()
op.execute("SELECT 'test'")
context.assert_("SELECT 'test'")
def test_execute_textclause(self):
context = op_fixture()
op.execute(text("SELECT 'test'"))
context.assert_("SELECT 'test'")
def test_inline_literal(self):
context = op_fixture()
account = table(
"account", column("name", String), column("id", Integer)
)
op.execute(
account.update()
.where(account.c.name == op.inline_literal("account 1"))
.values({"name": op.inline_literal("account 2")})
)
op.execute(
account.update()
.where(account.c.id == op.inline_literal(1))
.values({"id": op.inline_literal(2)})
)
context.assert_(
"UPDATE account SET name='account 2' "
"WHERE account.name = 'account 1'",
"UPDATE account SET id=2 WHERE account.id = 1",
)
def test_cant_op(self):
if hasattr(op, "_proxy"):
del op._proxy
assert_raises_message(
NameError,
"Can't invoke function 'inline_literal', as the "
"proxy object has not yet been established "
"for the Alembic 'Operations' class. "
"Try placing this code inside a callable.",
op.inline_literal,
"asdf",
)
def test_naming_changes(self):
context = op_fixture()
op.alter_column("t", "c", new_column_name="x")
context.assert_("ALTER TABLE t RENAME c TO x")
context = op_fixture("mysql")
op.drop_constraint("f1", "t1", type_="foreignkey")
context.assert_("ALTER TABLE t1 DROP FOREIGN KEY f1")
def test_naming_changes_drop_idx(self):
context = op_fixture("mssql")
op.drop_index("ik_test", table_name="t1")
context.assert_("DROP INDEX ik_test ON t1")
def test_create_table_comment_op(self):
context = op_fixture()
op.create_table_comment("some_table", "table comment")
context.assert_("COMMENT ON TABLE some_table IS 'table comment'")
def test_drop_table_comment_op(self):
context = op_fixture()
op.drop_table_comment("some_table")
context.assert_("COMMENT ON TABLE some_table IS NULL")
def test_create_table_event(self):
context = op_fixture()
events_triggered = []
TestTable = Table(
"tb_test", MetaData(), Column("c1", Integer, nullable=False)
)
@event.listens_for(Table, "before_create")
def record_before_event(table, conn, **kwargs):
events_triggered.append(("before_create", table.name))
@event.listens_for(Table, "after_create")
def record_after_event(table, conn, **kwargs):
events_triggered.append(("after_create", table.name))
op.create_table(TestTable)
op.drop_table(TestTable)
context.assert_("CREATE TABLE tb_test ()", "DROP TABLE tb_test")
assert events_triggered == [
("before_create", "tb_test"),
("after_create", "tb_test"),
]
def test_drop_table_event(self):
context = op_fixture()
events_triggered = []
TestTable = Table(
"tb_test", MetaData(), Column("c1", Integer, nullable=False)
)
@event.listens_for(Table, "before_drop")
def record_before_event(table, conn, **kwargs):
events_triggered.append(("before_drop", table.name))
@event.listens_for(Table, "after_drop")
def record_after_event(table, conn, **kwargs):
events_triggered.append(("after_drop", table.name))
op.create_table(TestTable)
op.drop_table(TestTable)
context.assert_("CREATE TABLE tb_test ()", "DROP TABLE tb_test")
assert events_triggered == [
("before_drop", "tb_test"),
("after_drop", "tb_test"),
]
def test_run_async_error(self):
op_fixture()
async def go(conn):
pass
with expect_raises_message(
NotImplementedError, "SQLAlchemy 1.4.18. required"
):
with patch.object(sqla_compat, "sqla_14_18", False):
op.run_async(go)
with expect_raises_message(
NotImplementedError, "Cannot call run_async in SQL mode"
):
with patch.object(op._proxy, "get_bind", lambda: None):
op.run_async(go)
with expect_raises_message(
ValueError, "Cannot call run_async with a sync engine"
):
op.run_async(go)
@config.requirements.asyncio
def test_run_async_ok(self):
from sqlalchemy.ext.asyncio import AsyncConnection
op_fixture()
conn = op.get_bind()
mock_conn = MagicMock()
mock_fn = MagicMock()
with (
patch.object(conn.dialect, "is_async", True),
patch.object(
AsyncConnection, "_retrieve_proxy_for_target", mock_conn
),
patch("sqlalchemy.util.await_only") as mock_await,
):
res = op.run_async(mock_fn, 99, foo=42)
eq_(res, mock_await.return_value)
mock_conn.assert_called_once_with(conn)
mock_await.assert_called_once_with(mock_fn.return_value)
mock_fn.assert_called_once_with(mock_conn.return_value, 99, foo=42)
class SQLModeOpTest(TestBase):
def test_auto_literals(self):
context = op_fixture(as_sql=True, literal_binds=True)
account = table(
"account", column("name", String), column("id", Integer)
)
op.execute(
account.update()
.where(account.c.name == op.inline_literal("account 1"))
.values({"name": op.inline_literal("account 2")})
)
op.execute(text("update table set foo=:bar").bindparams(bar="bat"))
context.assert_(
"UPDATE account SET name='account 2' "
"WHERE account.name = 'account 1'",
"update table set foo='bat'",
)
def test_create_table_literal_binds(self):
context = op_fixture(as_sql=True, literal_binds=True)
op.create_table(
"some_table",
Column("id", Integer, primary_key=True),
Column("st_id", Integer, ForeignKey("some_table.id")),
)
context.assert_(
"CREATE TABLE some_table (id INTEGER NOT NULL, st_id INTEGER, "
"PRIMARY KEY (id), FOREIGN KEY(st_id) REFERENCES some_table (id))"
)
class CustomOpTest(TestBase):
def test_custom_op(self):
@Operations.register_operation("create_sequence")
class CreateSequenceOp(MigrateOperation):
"""Create a SEQUENCE."""
def __init__(self, sequence_name, **kw):
self.sequence_name = sequence_name
self.kw = kw
@classmethod
def create_sequence(cls, operations, sequence_name, **kw):
"""Issue a "CREATE SEQUENCE" instruction."""
op = CreateSequenceOp(sequence_name, **kw)
return operations.invoke(op)
@Operations.implementation_for(CreateSequenceOp)
def create_sequence(operations, operation):
operations.execute("CREATE SEQUENCE %s" % operation.sequence_name)
context = op_fixture()
op.create_sequence("foob")
context.assert_("CREATE SEQUENCE foob")
def test_replace_op(self, restore_operations):
restore_operations(Operations)
context = op_fixture()
log_table = Table(
"log_table",
MetaData(),
Column("action", String),
Column("table_name", String),
)
@Operations.implementation_for(ops.CreateTableOp, replace=True)
def create_table_proxy_log(operations, operation):
_create_table(operations, operation)
operations.execute(
log_table.insert().values(["create", operation.table_name])
)
op.create_table("some_table", Column("colname", Integer))
@Operations.implementation_for(ops.CreateTableOp, replace=True)
def create_table_proxy_invert(operations, operation):
_drop_table(operations, ops.DropTableOp(operation.table_name))
operations.execute(
log_table.insert().values(["delete", operation.table_name])
)
op.create_table("some_table")
context.assert_(
"CREATE TABLE some_table (colname INTEGER)",
"INSERT INTO log_table (action, table_name) "
"VALUES (:action, :table_name)",
"DROP TABLE some_table",
"INSERT INTO log_table (action, table_name) "
"VALUES (:action, :table_name)",
)
def test_replace_error(self):
with expect_raises_message(
ValueError,
"Can not set dispatch function for object "
"<class 'alembic.operations.ops.CreateTableOp'>: "
"key already exists. To replace existing function, use "
"replace=True.",
):
@Operations.implementation_for(ops.CreateTableOp)
def create_table(operations, operation):
pass
def test_replace_custom_op(self, restore_operations):
restore_operations(Operations)
context = op_fixture()
@Operations.register_operation("create_user")
class CreateUserOp(MigrateOperation):
def __init__(self, user_name):
self.user_name = user_name
@classmethod
def create_user(cls, operations, user_name):
op = CreateUserOp(user_name)
return operations.invoke(op)
@Operations.implementation_for(CreateUserOp, replace=True)
def create_user(operations, operation):
operations.execute("CREATE USER %s" % operation.user_name)
op.create_user("bob")
@Operations.implementation_for(CreateUserOp, replace=True)
def create_user_alternative(operations, operation):
operations.execute(
"CREATE ROLE %s WITH LOGIN" % operation.user_name
)
op.create_user("bob")
context.assert_("CREATE USER bob", "CREATE ROLE bob WITH LOGIN")
class ObjectFromToTest(TestBase):
"""Test operation round trips for to_obj() / from_obj().
Previously, these needed to preserve the "original" item
to this, but this makes them harder to work with.
As of #803 the constructs try to behave more intelligently
about the state they were given, so that they can both "reverse"
themselves but also take into account their current state.
"""
def test_drop_index(self):
schema_obj = schemaobj.SchemaObjects()
idx = schema_obj.index("x", "y", ["z"])
op = ops.DropIndexOp.from_index(idx)
is_not_(op.to_index(), idx)
def test_drop_index_add_kw(self):
schema_obj = schemaobj.SchemaObjects()
idx = schema_obj.index("x", "y", ["z"])
op = ops.DropIndexOp.from_index(idx)
op.kw["postgresql_concurrently"] = True
eq_(op.to_index().dialect_kwargs["postgresql_concurrently"], True)
eq_(
op.reverse().to_index().dialect_kwargs["postgresql_concurrently"],
True,
)
def test_create_index(self):
schema_obj = schemaobj.SchemaObjects()
idx = schema_obj.index("x", "y", ["z"])
op = ops.CreateIndexOp.from_index(idx)
is_not_(op.to_index(), idx)
def test_create_index_add_kw(self):
schema_obj = schemaobj.SchemaObjects()
idx = schema_obj.index("x", "y", ["z"])
op = ops.CreateIndexOp.from_index(idx)
op.kw["postgresql_concurrently"] = True
eq_(op.to_index().dialect_kwargs["postgresql_concurrently"], True)
eq_(
op.reverse().to_index().dialect_kwargs["postgresql_concurrently"],
True,
)
def test_drop_table(self):
schema_obj = schemaobj.SchemaObjects()
table = schema_obj.table(
"x",
Column("q", Integer),
info={"custom": "value"},
prefixes=["FOREIGN"],
postgresql_partition_by="x",
comment="some comment",
)
op = ops.DropTableOp.from_table(table)
is_not_(op.to_table(), table)
eq_(op.to_table().comment, table.comment)
eq_(op.to_table().info, table.info)
eq_(op.to_table()._prefixes, table._prefixes)
def test_drop_table_add_kw(self):
schema_obj = schemaobj.SchemaObjects()
table = schema_obj.table("x", Column("q", Integer))
op = ops.DropTableOp.from_table(table)
op.table_kw["postgresql_partition_by"] = "x"
eq_(op.to_table().dialect_kwargs["postgresql_partition_by"], "x")
eq_(
op.reverse().to_table().dialect_kwargs["postgresql_partition_by"],
"x",
)
def test_create_table(self):
schema_obj = schemaobj.SchemaObjects()
table = schema_obj.table(
"x",
Column("q", Integer),
postgresql_partition_by="x",
prefixes=["FOREIGN"],
info={"custom": "value"},
comment="some comment",
)
op = ops.CreateTableOp.from_table(table)
is_not_(op.to_table(), table)
eq_(op.to_table().comment, table.comment)
eq_(op.to_table().info, table.info)
eq_(op.to_table()._prefixes, table._prefixes)
def test_create_table_add_kw(self):
schema_obj = schemaobj.SchemaObjects()
table = schema_obj.table("x", Column("q", Integer))
op = ops.CreateTableOp.from_table(table)
op.kw["postgresql_partition_by"] = "x"
eq_(op.to_table().dialect_kwargs["postgresql_partition_by"], "x")
eq_(
op.reverse().to_table().dialect_kwargs["postgresql_partition_by"],
"x",
)
def test_create_unique_constraint(self):
schema_obj = schemaobj.SchemaObjects()
const = schema_obj.unique_constraint("x", "foobar", ["a"])
op = ops.AddConstraintOp.from_constraint(const)
is_not_(op.to_constraint(), const)
def test_create_unique_constraint_add_kw(self):
schema_obj = schemaobj.SchemaObjects()
const = schema_obj.unique_constraint("x", "foobar", ["a"])
op = ops.AddConstraintOp.from_constraint(const)
is_not_(op.to_constraint(), const)
op.kw["sqlite_on_conflict"] = "IGNORE"
eq_(op.to_constraint().dialect_kwargs["sqlite_on_conflict"], "IGNORE")
eq_(
op.reverse().to_constraint().dialect_kwargs["sqlite_on_conflict"],
"IGNORE",
)
def test_drop_unique_constraint(self):
schema_obj = schemaobj.SchemaObjects()
const = schema_obj.unique_constraint("x", "foobar", ["a"])
op = ops.DropConstraintOp.from_constraint(const)
is_not_(op.to_constraint(), const)
def test_drop_unique_constraint_change_name(self):
schema_obj = schemaobj.SchemaObjects()
const = schema_obj.unique_constraint("x", "foobar", ["a"])
op = ops.DropConstraintOp.from_constraint(const)
op.constraint_name = "my_name"
eq_(op.to_constraint().name, "my_name")
eq_(op.reverse().to_constraint().name, "my_name")
def test_drop_constraint_not_available(self):
op = ops.DropConstraintOp("x", "y", type_="unique")
assert_raises_message(
ValueError, "constraint cannot be produced", op.to_constraint
)
|