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
|
from decimal import Decimal
from sqlalchemy import column
from sqlalchemy import exc
from sqlalchemy import ForeignKey
from sqlalchemy import func
from sqlalchemy import insert
from sqlalchemy import inspect
from sqlalchemy import Integer
from sqlalchemy import LABEL_STYLE_DISAMBIGUATE_ONLY
from sqlalchemy import LABEL_STYLE_TABLENAME_PLUS_COL
from sqlalchemy import literal_column
from sqlalchemy import Numeric
from sqlalchemy import select
from sqlalchemy import String
from sqlalchemy import testing
from sqlalchemy.ext import hybrid
from sqlalchemy.orm import aliased
from sqlalchemy.orm import column_property
from sqlalchemy.orm import declarative_base
from sqlalchemy.orm import declared_attr
from sqlalchemy.orm import relationship
from sqlalchemy.orm import Session
from sqlalchemy.orm import synonym
from sqlalchemy.orm.context import ORMSelectCompileState
from sqlalchemy.sql import coercions
from sqlalchemy.sql import operators
from sqlalchemy.sql import roles
from sqlalchemy.sql import update
from sqlalchemy.testing import assert_raises_message
from sqlalchemy.testing import AssertsCompiledSQL
from sqlalchemy.testing import eq_
from sqlalchemy.testing import fixtures
from sqlalchemy.testing import is_
from sqlalchemy.testing import is_false
from sqlalchemy.testing import is_not
from sqlalchemy.testing.fixtures import fixture_session
from sqlalchemy.testing.schema import Column
class PropertyComparatorTest(fixtures.TestBase, AssertsCompiledSQL):
__dialect__ = "default"
def _fixture(self, use_inplace=False, use_classmethod=False):
Base = declarative_base()
class UCComparator(hybrid.Comparator):
def __eq__(self, other):
if other is None:
return self.expression is None
else:
return func.upper(self.expression) == func.upper(other)
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
_value = Column("value", String)
@hybrid.hybrid_property
def value(self):
"This is a docstring"
return self._value - 5
if use_classmethod:
if use_inplace:
@value.inplace.comparator
@classmethod
def _value_comparator(cls):
return UCComparator(cls._value)
else:
@value.comparator
@classmethod
def value(cls):
return UCComparator(cls._value)
else:
if use_inplace:
@value.inplace.comparator
def _value_comparator(cls):
return UCComparator(cls._value)
else:
@value.comparator
def value(cls):
return UCComparator(cls._value)
@value.setter
def value(self, v):
self._value = v + 5
return A
def test_set_get(self):
A = self._fixture()
a1 = A(value=5)
eq_(a1._value, 10)
eq_(a1.value, 5)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_value(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
eq_(str(A.value == 5), "upper(a.value) = upper(:upper_1)")
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_aliased_value(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
eq_(str(aliased(A).value == 5), "upper(a_1.value) = upper(:upper_1)")
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_query(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
sess = fixture_session()
self.assert_compile(
sess.query(A.value), "SELECT a.value AS a_value FROM a"
)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_aliased_query(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
sess = fixture_session()
self.assert_compile(
sess.query(aliased(A).value),
"SELECT a_1.value AS a_1_value FROM a AS a_1",
)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_aliased_filter(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
sess = fixture_session()
self.assert_compile(
sess.query(aliased(A)).filter_by(value="foo"),
"SELECT a_1.id AS a_1_id, a_1.value AS a_1_value "
"FROM a AS a_1 WHERE upper(a_1.value) = upper(:upper_1)",
)
def test_docstring(self):
A = self._fixture()
eq_(A.value.__doc__, "This is a docstring")
def test_no_name_one(self):
"""test :ticket:`6215`"""
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
name = Column(String(50))
@hybrid.hybrid_property
def same_name(self):
return self.id
def name1(self):
return self.id
different_name = hybrid.hybrid_property(name1)
no_name = hybrid.hybrid_property(lambda self: self.name)
stmt = select(A.same_name, A.different_name, A.no_name)
compiled = stmt.compile()
eq_(
[ent._label_name for ent in compiled.compile_state._entities],
["same_name", "id", "name"],
)
def test_no_name_two(self):
"""test :ticket:`6215`"""
Base = declarative_base()
class SomeMixin:
@hybrid.hybrid_property
def same_name(self):
return self.id
def name1(self):
return self.id
different_name = hybrid.hybrid_property(name1)
no_name = hybrid.hybrid_property(lambda self: self.name)
class A(SomeMixin, Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
name = Column(String(50))
stmt = select(A.same_name, A.different_name, A.no_name)
compiled = stmt.compile()
eq_(
[ent._label_name for ent in compiled.compile_state._entities],
["same_name", "id", "name"],
)
def test_custom_op(self, registry):
"""test #3162"""
my_op = operators.custom_op(
"my_op", python_impl=lambda a, b: a + "_foo_" + b
)
@registry.mapped
class SomeClass:
__tablename__ = "sc"
id = Column(Integer, primary_key=True)
data = Column(String)
@hybrid.hybrid_property
def foo_data(self):
return my_op(self.data, "bar")
eq_(SomeClass(data="data").foo_data, "data_foo_bar")
self.assert_compile(SomeClass.foo_data, "sc.data my_op :data_1")
class PropertyExpressionTest(fixtures.TestBase, AssertsCompiledSQL):
__dialect__ = "default"
def _fixture(self, use_inplace=False, use_classmethod=False):
use_inplace, use_classmethod = bool(use_inplace), bool(use_classmethod)
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
_value = Column("value", String)
@hybrid.hybrid_property
def value(self):
"This is an instance-level docstring"
return int(self._value) - 5
@value.setter
def value(self, v):
self._value = v + 5
if use_classmethod:
if use_inplace:
@value.inplace.expression
@classmethod
def _value_expr(cls):
"This is a class-level docstring"
return func.foo(cls._value) + cls.bar_value
else:
@value.expression
@classmethod
def value(cls):
"This is a class-level docstring"
return func.foo(cls._value) + cls.bar_value
else:
if use_inplace:
@value.inplace.expression
def _value_expr(cls):
"This is a class-level docstring"
return func.foo(cls._value) + cls.bar_value
else:
@value.expression
def value(cls):
"This is a class-level docstring"
return func.foo(cls._value) + cls.bar_value
@hybrid.hybrid_property
def bar_value(cls):
return func.bar(cls._value)
return A
def _wrong_expr_fixture(self):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
_value = Column("value", String)
@hybrid.hybrid_property
def value(self):
return self._value is not None
@value.expression
def value(cls):
return cls._value is not None
return A
def _relationship_fixture(self):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
b_id = Column("bid", Integer, ForeignKey("b.id"))
_value = Column("value", String)
@hybrid.hybrid_property
def value(self):
return int(self._value) - 5
@value.expression
def value(cls):
return func.foo(cls._value) + cls.bar_value
@value.setter
def value(self, v):
self._value = v + 5
@hybrid.hybrid_property
def bar_value(cls):
return func.bar(cls._value)
class B(Base):
__tablename__ = "b"
id = Column(Integer, primary_key=True)
as_ = relationship("A")
return A, B
@testing.fixture
def _related_polymorphic_attr_fixture(self):
"""test for #7425"""
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
bs = relationship("B", back_populates="a", lazy="joined")
class B(Base):
__tablename__ = "poly"
__mapper_args__ = {
"polymorphic_on": "type",
# if with_polymorphic is removed, issue does not occur
"with_polymorphic": "*",
}
name = Column(String, primary_key=True)
type = Column(String)
a_id = Column(ForeignKey(A.id))
a = relationship(A, back_populates="bs")
@hybrid.hybrid_property
def is_foo(self):
return self.name == "foo"
return A, B
def test_cloning_in_polymorphic_any(
self, _related_polymorphic_attr_fixture
):
A, B = _related_polymorphic_attr_fixture
session = fixture_session()
# in the polymorphic case, A.bs.any() does a traverse() / clone()
# on the expression. so the proxedattribute coming from the hybrid
# has to support this.
self.assert_compile(
session.query(A).filter(A.bs.any(B.name == "foo")),
"SELECT a.id AS a_id, poly_1.name AS poly_1_name, poly_1.type "
"AS poly_1_type, poly_1.a_id AS poly_1_a_id FROM a "
"LEFT OUTER JOIN poly AS poly_1 ON a.id = poly_1.a_id "
"WHERE EXISTS (SELECT 1 FROM poly WHERE a.id = poly.a_id "
"AND poly.name = :name_1)",
)
# SQL should be identical
self.assert_compile(
session.query(A).filter(A.bs.any(B.is_foo)),
"SELECT a.id AS a_id, poly_1.name AS poly_1_name, poly_1.type "
"AS poly_1_type, poly_1.a_id AS poly_1_a_id FROM a "
"LEFT OUTER JOIN poly AS poly_1 ON a.id = poly_1.a_id "
"WHERE EXISTS (SELECT 1 FROM poly WHERE a.id = poly.a_id "
"AND poly.name = :name_1)",
)
@testing.fixture
def _unnamed_expr_fixture(self):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
firstname = Column(String)
lastname = Column(String)
@hybrid.hybrid_property
def name(self):
return self.firstname + " " + self.lastname
return A
@testing.fixture
def _unnamed_expr_matches_col_fixture(self):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
foo = Column(String)
@hybrid.hybrid_property
def bar(self):
return self.foo
return A
def test_access_from_unmapped(self):
"""test #9519"""
class DnsRecord:
name = Column("name", String)
@hybrid.hybrid_property
def ip_value(self):
return self.name[1:3]
@ip_value.expression
def ip_value(cls):
return func.substring(cls.name, 1, 3)
raw_attr = DnsRecord.ip_value
is_(raw_attr._parententity, None)
self.assert_compile(
raw_attr, "substring(name, :substring_1, :substring_2)"
)
self.assert_compile(
select(DnsRecord.ip_value),
"SELECT substring(name, :substring_2, :substring_3) "
"AS substring_1",
)
def test_access_from_not_yet_mapped(self, decl_base):
"""test #9519"""
class DnsRecord(decl_base):
__tablename__ = "dnsrecord"
id = Column(Integer, primary_key=True)
name = Column(String, unique=False, nullable=False)
@declared_attr
def thing(cls):
return column_property(cls.ip_value)
name = Column("name", String)
@hybrid.hybrid_property
def ip_value(self):
return self.name[1:3]
@ip_value.expression
def ip_value(cls):
return func.substring(cls.name, 1, 3)
self.assert_compile(
select(DnsRecord.thing),
"SELECT substring(dnsrecord.name, :substring_2, :substring_3) "
"AS substring_1 FROM dnsrecord",
)
def test_labeling_for_unnamed(self, _unnamed_expr_fixture):
A = _unnamed_expr_fixture
stmt = select(A.id, A.name)
self.assert_compile(
stmt,
"SELECT a.id, a.firstname || :firstname_1 || a.lastname AS name "
"FROM a",
)
eq_(stmt.subquery().c.keys(), ["id", "name"])
self.assert_compile(
select(stmt.subquery()),
"SELECT anon_1.id, anon_1.name "
"FROM (SELECT a.id AS id, a.firstname || :firstname_1 || "
"a.lastname AS name FROM a) AS anon_1",
)
@testing.variation("pre_populate_col_proxy", [True, False])
def test_labeling_for_unnamed_matches_col(
self, _unnamed_expr_matches_col_fixture, pre_populate_col_proxy
):
"""test #11728"""
A = _unnamed_expr_matches_col_fixture
if pre_populate_col_proxy:
pre_stmt = select(A.id, A.foo)
pre_stmt.subquery().c
stmt = select(A.id, A.bar)
self.assert_compile(
stmt,
"SELECT a.id, a.foo FROM a",
)
compile_state = ORMSelectCompileState._create_orm_context(
stmt, toplevel=True, compiler=None
)
eq_(
compile_state._column_naming_convention(
LABEL_STYLE_DISAMBIGUATE_ONLY, legacy=False
)(list(stmt.inner_columns)[1]),
"bar",
)
eq_(stmt.subquery().c.keys(), ["id", "bar"])
self.assert_compile(
select(stmt.subquery()),
"SELECT anon_1.id, anon_1.foo FROM "
"(SELECT a.id AS id, a.foo AS foo FROM a) AS anon_1",
)
def test_labeling_for_unnamed_tablename_plus_col(
self, _unnamed_expr_fixture
):
A = _unnamed_expr_fixture
stmt = select(A.id, A.name).set_label_style(
LABEL_STYLE_TABLENAME_PLUS_COL
)
# looks like legacy query
self.assert_compile(
stmt,
"SELECT a.id AS a_id, a.firstname || :firstname_1 || "
"a.lastname AS name FROM a",
)
eq_(stmt.subquery().c.keys(), ["a_id", "name"])
self.assert_compile(
select(stmt.subquery()),
"SELECT anon_1.a_id, anon_1.name FROM (SELECT a.id AS a_id, "
"a.firstname || :firstname_1 || a.lastname AS name FROM a) "
"AS anon_1",
)
def test_labeling_for_unnamed_legacy(self, _unnamed_expr_fixture):
A = _unnamed_expr_fixture
sess = fixture_session()
stmt = sess.query(A.id, A.name)
self.assert_compile(
stmt,
"SELECT a.id AS a_id, a.firstname || "
":firstname_1 || a.lastname AS name FROM a",
)
# for the subquery, we lose the "ORM-ness" from the subquery
# so we have to carry it over using _proxy_key
eq_(stmt.subquery().c.keys(), ["id", "name"])
self.assert_compile(
sess.query(stmt.subquery()),
"SELECT anon_1.id AS anon_1_id, anon_1.name AS anon_1_name "
"FROM (SELECT a.id AS id, a.firstname || :firstname_1 || "
"a.lastname AS name FROM a) AS anon_1",
)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_info(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
inspect(A).all_orm_descriptors.value.info["some key"] = "some value"
eq_(
inspect(A).all_orm_descriptors.value.info,
{"some key": "some value"},
)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_set_get(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
a1 = A(value=5)
eq_(a1._value, 10)
eq_(a1.value, 5)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_expression(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
self.assert_compile(
A.value.__clause_element__(), "foo(a.value) + bar(a.value)"
)
def test_expression_isnt_clause_element(self):
A = self._wrong_expr_fixture()
with testing.expect_raises_message(
exc.InvalidRequestError,
'When interpreting attribute "A.value" as a SQL expression, '
r"expected __clause_element__\(\) to return a "
"ClauseElement object, got: True",
):
coercions.expect(roles.ExpressionElementRole, A.value)
def test_any(self):
A, B = self._relationship_fixture()
sess = fixture_session()
self.assert_compile(
sess.query(B).filter(B.as_.any(value=5)),
"SELECT b.id AS b_id FROM b WHERE EXISTS "
"(SELECT 1 FROM a WHERE b.id = a.bid "
"AND foo(a.value) + bar(a.value) = :param_1)",
)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_aliased_expression(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
self.assert_compile(
aliased(A).value.__clause_element__(),
"foo(a_1.value) + bar(a_1.value)",
)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_query(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
sess = fixture_session()
self.assert_compile(
sess.query(A).filter_by(value="foo"),
"SELECT a.id AS a_id, a.value AS a_value "
"FROM a WHERE foo(a.value) + bar(a.value) = :param_1",
)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_aliased_query(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
sess = fixture_session()
self.assert_compile(
sess.query(aliased(A)).filter_by(value="foo"),
"SELECT a_1.id AS a_1_id, a_1.value AS a_1_value "
"FROM a AS a_1 WHERE foo(a_1.value) + bar(a_1.value) = :param_1",
)
@testing.variation("use_inplace", [True, False])
@testing.variation("use_classmethod", [True, False])
def test_docstring(self, use_inplace, use_classmethod):
A = self._fixture(
use_inplace=use_inplace, use_classmethod=use_classmethod
)
eq_(A.value.__doc__, "This is a class-level docstring")
# no docstring here since we get a literal
a1 = A(_value=10)
eq_(a1.value, 5)
class PropertyValueTest(fixtures.TestBase, AssertsCompiledSQL):
__dialect__ = "default"
def _fixture(self, assignable):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
_value = Column("value", String)
@hybrid.hybrid_property
def value(self):
return self._value - 5
if assignable:
@value.setter
def value(self, v):
self._value = v + 5
return A
def test_nonassignable(self):
A = self._fixture(False)
a1 = A(_value=5)
assert_raises_message(
AttributeError, "can't set attribute", setattr, a1, "value", 10
)
def test_nondeletable(self):
A = self._fixture(False)
a1 = A(_value=5)
assert_raises_message(
AttributeError, "can't delete attribute", delattr, a1, "value"
)
def test_set_get(self):
A = self._fixture(True)
a1 = A(value=5)
eq_(a1.value, 5)
eq_(a1._value, 10)
class PropertyOverrideTest(fixtures.TestBase, AssertsCompiledSQL):
__dialect__ = "default"
def _fixture(self):
Base = declarative_base()
class Person(Base):
__tablename__ = "person"
id = Column(Integer, primary_key=True)
_name = Column(String)
@hybrid.hybrid_property
def name(self):
return self._name
@name.setter
def name(self, value):
self._name = value.title()
class OverrideSetter(Person):
__tablename__ = "override_setter"
id = Column(Integer, ForeignKey("person.id"), primary_key=True)
other = Column(String)
@Person.name.setter
def name(self, value):
self._name = value.upper()
class OverrideGetter(Person):
__tablename__ = "override_getter"
id = Column(Integer, ForeignKey("person.id"), primary_key=True)
other = Column(String)
@Person.name.getter
def name(self):
return "Hello " + self._name
class OverrideExpr(Person):
__tablename__ = "override_expr"
id = Column(Integer, ForeignKey("person.id"), primary_key=True)
other = Column(String)
@Person.name.overrides.expression
def name(self):
return func.concat("Hello", self._name)
class FooComparator(hybrid.Comparator):
def __clause_element__(self):
return func.concat("Hello", self.expression._name)
class OverrideComparator(Person):
__tablename__ = "override_comp"
id = Column(Integer, ForeignKey("person.id"), primary_key=True)
other = Column(String)
@Person.name.overrides.comparator
def name(self):
return FooComparator(self)
return (
Person,
OverrideSetter,
OverrideGetter,
OverrideExpr,
OverrideComparator,
)
def test_property(self):
Person, _, _, _, _ = self._fixture()
p1 = Person()
p1.name = "mike"
eq_(p1._name, "Mike")
eq_(p1.name, "Mike")
def test_override_setter(self):
_, OverrideSetter, _, _, _ = self._fixture()
p1 = OverrideSetter()
p1.name = "mike"
eq_(p1._name, "MIKE")
eq_(p1.name, "MIKE")
def test_override_getter(self):
_, _, OverrideGetter, _, _ = self._fixture()
p1 = OverrideGetter()
p1.name = "mike"
eq_(p1._name, "Mike")
eq_(p1.name, "Hello Mike")
def test_override_expr(self):
Person, _, _, OverrideExpr, _ = self._fixture()
self.assert_compile(Person.name.__clause_element__(), "person._name")
self.assert_compile(
OverrideExpr.name.__clause_element__(),
"concat(:concat_1, person._name)",
)
def test_override_comparator(self):
Person, _, _, _, OverrideComparator = self._fixture()
self.assert_compile(Person.name.__clause_element__(), "person._name")
self.assert_compile(
OverrideComparator.name.__clause_element__(),
"concat(:concat_1, person._name)",
)
class PropertyMirrorTest(fixtures.TestBase, AssertsCompiledSQL):
__dialect__ = "default"
def _fixture(self):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
_value = Column("value", String)
@hybrid.hybrid_property
def value(self):
"This is an instance-level docstring"
return self._value
return A
@testing.fixture
def _function_fixture(self):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
value = Column(Integer)
@hybrid.hybrid_property
def foo_value(self):
return func.foo(self.value)
return A
@testing.fixture
def _name_mismatch_fixture(self):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
addresses = relationship("B")
@hybrid.hybrid_property
def some_email(self):
if self.addresses:
return self.addresses[0].email_address
else:
return None
@some_email.expression
def some_email(cls):
return B.email_address
class B(Base):
__tablename__ = "b"
id = Column(Integer, primary_key=True)
aid = Column(ForeignKey("a.id"))
email_address = Column(String)
return A, B
def test_dont_assume_attr_key_is_present(self, _name_mismatch_fixture):
A, B = _name_mismatch_fixture
self.assert_compile(
select(A, A.some_email).join(A.addresses),
"SELECT a.id, b.email_address FROM a JOIN b ON a.id = b.aid",
)
def test_dont_assume_attr_key_is_present_ac(self, _name_mismatch_fixture):
A, B = _name_mismatch_fixture
ac = aliased(A)
self.assert_compile(
select(ac, ac.some_email).join(ac.addresses),
"SELECT a_1.id, b.email_address "
"FROM a AS a_1 JOIN b ON a_1.id = b.aid",
)
def test_c_collection_func_element(self, _function_fixture):
A = _function_fixture
stmt = select(A.id, A.foo_value)
eq_(stmt.subquery().c.keys(), ["id", "foo_value"])
def test_filter_by_mismatched_col(self, _name_mismatch_fixture):
A, B = _name_mismatch_fixture
self.assert_compile(
select(A).filter_by(some_email="foo").join(A.addresses),
"SELECT a.id FROM a JOIN b ON a.id = b.aid "
"WHERE b.email_address = :email_address_1",
)
def test_aliased_mismatched_col(self, _name_mismatch_fixture):
A, B = _name_mismatch_fixture
sess = fixture_session()
# so what should this do ? it's just a weird hybrid case
self.assert_compile(
sess.query(aliased(A).some_email),
"SELECT b.email_address AS b_email_address FROM b",
)
def test_property(self):
A = self._fixture()
is_(A.value.property, A._value.property)
def test_key(self):
A = self._fixture()
eq_(A.value.key, "value")
eq_(A._value.key, "_value")
def test_class(self):
A = self._fixture()
is_(A.value.class_, A._value.class_)
def test_get_history(self):
A = self._fixture()
inst = A(_value=5)
eq_(A.value.get_history(inst), A._value.get_history(inst))
def test_info_not_mirrored(self):
A = self._fixture()
A._value.info["foo"] = "bar"
A.value.info["bar"] = "hoho"
eq_(A._value.info, {"foo": "bar"})
eq_(A.value.info, {"bar": "hoho"})
def test_info_from_hybrid(self):
A = self._fixture()
A._value.info["foo"] = "bar"
A.value.info["bar"] = "hoho"
insp = inspect(A)
is_(insp.all_orm_descriptors["value"].info, A.value.info)
class SynonymOfPropertyTest(fixtures.TestBase, AssertsCompiledSQL):
__dialect__ = "default"
def _fixture(self):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
_value = Column("value", String)
@hybrid.hybrid_property
def value(self):
return self._value
value_syn = synonym("value")
@hybrid.hybrid_property
def string_value(self):
return "foo"
string_value_syn = synonym("string_value")
@hybrid.hybrid_property
def string_expr_value(self):
return "foo"
@string_expr_value.expression
def string_expr_value(cls):
return literal_column("'foo'")
string_expr_value_syn = synonym("string_expr_value")
return A
def test_hasattr(self):
A = self._fixture()
is_false(hasattr(A.value_syn, "nonexistent"))
is_false(hasattr(A.string_value_syn, "nonexistent"))
is_false(hasattr(A.string_expr_value_syn, "nonexistent"))
def test_instance_access(self):
A = self._fixture()
a1 = A(_value="hi")
eq_(a1.value_syn, "hi")
eq_(a1.string_value_syn, "foo")
eq_(a1.string_expr_value_syn, "foo")
def test_expression_property(self):
A = self._fixture()
self.assert_compile(
select(A.id, A.value_syn).where(A.value_syn == "value"),
"SELECT a.id, a.value FROM a WHERE a.value = :value_1",
)
def test_expression_expr(self):
A = self._fixture()
self.assert_compile(
select(A.id, A.string_expr_value_syn).where(
A.string_expr_value_syn == "value"
),
"SELECT a.id, 'foo' FROM a WHERE 'foo' = :'foo'_1",
)
class InplaceCreationTest(fixtures.TestBase, AssertsCompiledSQL):
"""test 'inplace' definitions added for 2.0 to assist with typing
limitations.
"""
__dialect__ = "default"
def test_property_integration(self, decl_base):
class Person(decl_base):
__tablename__ = "person"
id = Column(Integer, primary_key=True)
_name = Column(String)
@hybrid.hybrid_property
def name(self):
return self._name
@name.inplace.setter
def _name_setter(self, value):
self._name = value.title()
@name.inplace.expression
def _name_expression(self):
return func.concat("Hello", self._name)
p1 = Person(_name="name")
eq_(p1.name, "name")
p1.name = "new name"
eq_(p1.name, "New Name")
self.assert_compile(Person.name, "concat(:concat_1, person._name)")
def test_method_integration(self, decl_base):
class A(decl_base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
_value = Column("value", String)
@hybrid.hybrid_method
def value(self, x):
return int(self._value) + x
@value.inplace.expression
def _value_expression(cls, value):
return func.foo(cls._value, value) + value
a1 = A(_value="10")
eq_(a1.value(5), 15)
self.assert_compile(A.value(column("q")), "foo(a.value, q) + q")
def test_property_unit(self):
def one():
pass
def two():
pass
def three():
pass
prop = hybrid.hybrid_property(one)
prop2 = prop.inplace.expression(two)
prop3 = prop.inplace.setter(three)
is_(prop, prop2)
is_(prop, prop3)
def four():
pass
prop4 = prop.setter(four)
is_not(prop, prop4)
class MethodExpressionTest(fixtures.TestBase, AssertsCompiledSQL):
__dialect__ = "default"
def _fixture(self):
Base = declarative_base()
class A(Base):
__tablename__ = "a"
id = Column(Integer, primary_key=True)
_value = Column("value", String)
@hybrid.hybrid_method
def value(self, x):
"This is an instance-level docstring"
return int(self._value) + x
@value.expression
def value(cls, value):
"This is a class-level docstring"
return func.foo(cls._value, value) + value
@hybrid.hybrid_method
def other_value(self, x):
"This is an instance-level docstring"
return int(self._value) + x
@other_value.expression
def other_value(cls, value):
return func.foo(cls._value, value) + value
return A
def test_call(self):
A = self._fixture()
a1 = A(_value=10)
eq_(a1.value(7), 17)
def test_expression(self):
A = self._fixture()
self.assert_compile(A.value(5), "foo(a.value, :foo_1) + :foo_2")
def test_info(self):
A = self._fixture()
inspect(A).all_orm_descriptors.value.info["some key"] = "some value"
eq_(
inspect(A).all_orm_descriptors.value.info,
{"some key": "some value"},
)
def test_aliased_expression(self):
A = self._fixture()
self.assert_compile(
aliased(A).value(5), "foo(a_1.value, :foo_1) + :foo_2"
)
def test_query(self):
A = self._fixture()
sess = fixture_session()
self.assert_compile(
sess.query(A).filter(A.value(5) == "foo"),
"SELECT a.id AS a_id, a.value AS a_value "
"FROM a WHERE foo(a.value, :foo_1) + :foo_2 = :param_1",
)
def test_aliased_query(self):
A = self._fixture()
sess = fixture_session()
a1 = aliased(A)
self.assert_compile(
sess.query(a1).filter(a1.value(5) == "foo"),
"SELECT a_1.id AS a_1_id, a_1.value AS a_1_value "
"FROM a AS a_1 WHERE foo(a_1.value, :foo_1) + :foo_2 = :param_1",
)
def test_query_col(self):
A = self._fixture()
sess = fixture_session()
self.assert_compile(
sess.query(A.value(5)),
"SELECT foo(a.value, :foo_1) + :foo_2 AS anon_1 FROM a",
)
def test_aliased_query_col(self):
A = self._fixture()
sess = fixture_session()
self.assert_compile(
sess.query(aliased(A).value(5)),
"SELECT foo(a_1.value, :foo_1) + :foo_2 AS anon_1 FROM a AS a_1",
)
def test_docstring(self):
A = self._fixture()
eq_(A.value.__doc__, "This is a class-level docstring")
eq_(A.other_value.__doc__, "This is an instance-level docstring")
a1 = A(_value=10)
# a1.value is still a method, so it has a
# docstring
eq_(a1.value.__doc__, "This is an instance-level docstring")
eq_(a1.other_value.__doc__, "This is an instance-level docstring")
class BulkUpdateTest(fixtures.DeclarativeMappedTest, AssertsCompiledSQL):
__dialect__ = "default"
@classmethod
def setup_classes(cls):
Base = cls.DeclarativeBasic
class Person(Base):
__tablename__ = "person"
id = Column(Integer, primary_key=True)
first_name = Column(String(10))
last_name = Column(String(10))
@hybrid.hybrid_property
def name(self):
return self.first_name + " " + self.last_name
@name.setter
def name(self, value):
self.first_name, self.last_name = value.split(" ", 1)
@name.expression
def name(cls):
return func.concat(cls.first_name, " ", cls.last_name)
@name.update_expression
def name(cls, value):
f, l = value.split(" ", 1)
return [(cls.first_name, f), (cls.last_name, l)]
@hybrid.hybrid_property
def uname(self):
return self.name
@hybrid.hybrid_property
def fname(self):
return self.first_name
@hybrid.hybrid_property
def fname2(self):
return self.fname
@classmethod
def insert_data(cls, connection):
s = Session(connection)
jill = cls.classes.Person(id=3, first_name="jill")
s.add(jill)
s.commit()
def test_update_plain(self):
Person = self.classes.Person
statement = update(Person).values({Person.fname: "Dr."})
self.assert_compile(
statement,
"UPDATE person SET first_name=:first_name",
params={"first_name": "Dr."},
)
@testing.combinations("attr", "str", "kwarg", argnames="keytype")
def test_update_expr(self, keytype):
Person = self.classes.Person
if keytype == "attr":
statement = update(Person).values({Person.name: "Dr. No"})
elif keytype == "str":
statement = update(Person).values({"name": "Dr. No"})
elif keytype == "kwarg":
statement = update(Person).values(name="Dr. No")
else:
assert False
self.assert_compile(
statement,
"UPDATE person SET first_name=:first_name, last_name=:last_name",
checkparams={"first_name": "Dr.", "last_name": "No"},
)
@testing.combinations("attr", "str", "kwarg", argnames="keytype")
def test_insert_expr(self, keytype):
Person = self.classes.Person
if keytype == "attr":
statement = insert(Person).values({Person.name: "Dr. No"})
elif keytype == "str":
statement = insert(Person).values({"name": "Dr. No"})
elif keytype == "kwarg":
statement = insert(Person).values(name="Dr. No")
else:
assert False
self.assert_compile(
statement,
"INSERT INTO person (first_name, last_name) VALUES "
"(:first_name, :last_name)",
checkparams={"first_name": "Dr.", "last_name": "No"},
)
# these tests all run two UPDATES to assert that caching is not
# interfering. this is #7209
def test_evaluate_non_hybrid_attr(self):
# this is a control case
Person = self.classes.Person
s = fixture_session()
jill = s.get(Person, 3)
s.query(Person).update(
{Person.first_name: "moonbeam"}, synchronize_session="evaluate"
)
eq_(jill.first_name, "moonbeam")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"moonbeam",
)
s.query(Person).update(
{Person.first_name: "sunshine"}, synchronize_session="evaluate"
)
eq_(jill.first_name, "sunshine")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"sunshine",
)
def test_evaluate_hybrid_attr_indirect(self):
Person = self.classes.Person
s = fixture_session()
jill = s.get(Person, 3)
s.query(Person).update(
{Person.fname2: "moonbeam"}, synchronize_session="evaluate"
)
eq_(jill.fname2, "moonbeam")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"moonbeam",
)
s.query(Person).update(
{Person.fname2: "sunshine"}, synchronize_session="evaluate"
)
eq_(jill.fname2, "sunshine")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"sunshine",
)
def test_evaluate_hybrid_attr_plain(self):
Person = self.classes.Person
s = fixture_session()
jill = s.get(Person, 3)
s.query(Person).update(
{Person.fname: "moonbeam"}, synchronize_session="evaluate"
)
eq_(jill.fname, "moonbeam")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"moonbeam",
)
s.query(Person).update(
{Person.fname: "sunshine"}, synchronize_session="evaluate"
)
eq_(jill.fname, "sunshine")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"sunshine",
)
def test_fetch_hybrid_attr_indirect(self):
Person = self.classes.Person
s = fixture_session()
jill = s.get(Person, 3)
s.query(Person).update(
{Person.fname2: "moonbeam"}, synchronize_session="fetch"
)
eq_(jill.fname2, "moonbeam")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"moonbeam",
)
s.query(Person).update(
{Person.fname2: "sunshine"}, synchronize_session="fetch"
)
eq_(jill.fname2, "sunshine")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"sunshine",
)
def test_fetch_hybrid_attr_plain(self):
Person = self.classes.Person
s = fixture_session()
jill = s.get(Person, 3)
s.query(Person).update(
{Person.fname: "moonbeam"}, synchronize_session="fetch"
)
eq_(jill.fname, "moonbeam")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"moonbeam",
)
s.query(Person).update(
{Person.fname: "sunshine"}, synchronize_session="fetch"
)
eq_(jill.fname, "sunshine")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"sunshine",
)
def test_evaluate_hybrid_attr_w_update_expr(self):
Person = self.classes.Person
s = fixture_session()
jill = s.get(Person, 3)
s.query(Person).update(
{Person.name: "moonbeam sunshine"}, synchronize_session="evaluate"
)
eq_(jill.name, "moonbeam sunshine")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"moonbeam",
)
s.query(Person).update(
{Person.name: "first last"}, synchronize_session="evaluate"
)
eq_(jill.name, "first last")
eq_(s.scalar(select(Person.first_name).where(Person.id == 3)), "first")
def test_fetch_hybrid_attr_w_update_expr(self):
Person = self.classes.Person
s = fixture_session()
jill = s.get(Person, 3)
s.query(Person).update(
{Person.name: "moonbeam sunshine"}, synchronize_session="fetch"
)
eq_(jill.name, "moonbeam sunshine")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"moonbeam",
)
s.query(Person).update(
{Person.name: "first last"}, synchronize_session="fetch"
)
eq_(jill.name, "first last")
eq_(s.scalar(select(Person.first_name).where(Person.id == 3)), "first")
def test_evaluate_hybrid_attr_indirect_w_update_expr(self):
Person = self.classes.Person
s = fixture_session()
jill = s.get(Person, 3)
s.query(Person).update(
{Person.uname: "moonbeam sunshine"}, synchronize_session="evaluate"
)
eq_(jill.uname, "moonbeam sunshine")
eq_(
s.scalar(select(Person.first_name).where(Person.id == 3)),
"moonbeam",
)
s.query(Person).update(
{Person.uname: "first last"}, synchronize_session="evaluate"
)
eq_(jill.uname, "first last")
eq_(s.scalar(select(Person.first_name).where(Person.id == 3)), "first")
class SpecialObjectTest(fixtures.TestBase, AssertsCompiledSQL):
"""tests against hybrids that return a non-ClauseElement.
use cases derived from the example at
https://techspot.zzzeek.org/2011/10/21/hybrids-and-value-agnostic-types/
"""
__dialect__ = "default"
@classmethod
def setup_test_class(cls):
from sqlalchemy import literal
symbols = ("usd", "gbp", "cad", "eur", "aud")
currency_lookup = {
(currency_from, currency_to): Decimal(str(rate))
for currency_to, values in zip(
symbols,
[
(1, 1.59009, 0.988611, 1.37979, 1.02962),
(0.628895, 1, 0.621732, 0.867748, 0.647525),
(1.01152, 1.6084, 1, 1.39569, 1.04148),
(0.724743, 1.1524, 0.716489, 1, 0.746213),
(0.971228, 1.54434, 0.960166, 1.34009, 1),
],
)
for currency_from, rate in zip(symbols, values)
}
class Amount:
def __init__(self, amount, currency):
self.currency = currency
self.amount = amount
def __add__(self, other):
return Amount(
self.amount + other.as_currency(self.currency).amount,
self.currency,
)
def __sub__(self, other):
return Amount(
self.amount - other.as_currency(self.currency).amount,
self.currency,
)
def __lt__(self, other):
return self.amount < other.as_currency(self.currency).amount
def __gt__(self, other):
return self.amount > other.as_currency(self.currency).amount
def __eq__(self, other):
return self.amount == other.as_currency(self.currency).amount
def as_currency(self, other_currency):
return Amount(
currency_lookup[(self.currency, other_currency)]
* self.amount,
other_currency,
)
def __clause_element__(self):
# helper method for SQLAlchemy to interpret
# the Amount object as a SQL element
if isinstance(self.amount, (float, int, Decimal)):
return literal(self.amount)
else:
return self.amount
def __str__(self):
return "%2.4f %s" % (self.amount, self.currency)
def __repr__(self):
return "Amount(%r, %r)" % (self.amount, self.currency)
Base = declarative_base()
class BankAccount(Base):
__tablename__ = "bank_account"
id = Column(Integer, primary_key=True)
_balance = Column("balance", Numeric)
@hybrid.hybrid_property
def balance(self):
"""Return an Amount view of the current balance."""
return Amount(self._balance, "usd")
@balance.setter
def balance(self, value):
self._balance = value.as_currency("usd").amount
cls.Amount = Amount
cls.BankAccount = BankAccount
def test_instance_one(self):
BankAccount, Amount = self.BankAccount, self.Amount
account = BankAccount(balance=Amount(4000, "usd"))
# 3b. print balance in usd
eq_(account.balance.amount, 4000)
def test_instance_two(self):
BankAccount, Amount = self.BankAccount, self.Amount
account = BankAccount(balance=Amount(4000, "usd"))
# 3c. print balance in gbp
eq_(account.balance.as_currency("gbp").amount, Decimal("2515.58"))
def test_instance_three(self):
BankAccount, Amount = self.BankAccount, self.Amount
account = BankAccount(balance=Amount(4000, "usd"))
# 3d. perform currency-agnostic comparisons, math
is_(account.balance > Amount(500, "cad"), True)
def test_instance_four(self):
BankAccount, Amount = self.BankAccount, self.Amount
account = BankAccount(balance=Amount(4000, "usd"))
eq_(
account.balance + Amount(500, "cad") - Amount(50, "eur"),
Amount(Decimal("4425.316"), "usd"),
)
def test_query_one(self):
BankAccount, Amount = self.BankAccount, self.Amount
session = fixture_session()
query = session.query(BankAccount).filter(
BankAccount.balance == Amount(10000, "cad")
)
self.assert_compile(
query,
"SELECT bank_account.id AS bank_account_id, "
"bank_account.balance AS bank_account_balance "
"FROM bank_account "
"WHERE bank_account.balance = :balance_1",
checkparams={"balance_1": Decimal("9886.110000")},
)
def test_query_two(self):
BankAccount, Amount = self.BankAccount, self.Amount
session = fixture_session()
# alternatively we can do the calc on the DB side.
query = (
session.query(BankAccount)
.filter(
BankAccount.balance.as_currency("cad") > Amount(9999, "cad")
)
.filter(
BankAccount.balance.as_currency("cad") < Amount(10001, "cad")
)
)
self.assert_compile(
query,
"SELECT bank_account.id AS bank_account_id, "
"bank_account.balance AS bank_account_balance "
"FROM bank_account "
"WHERE :balance_1 * bank_account.balance > :param_1 "
"AND :balance_2 * bank_account.balance < :param_2",
checkparams={
"balance_1": Decimal("1.01152"),
"balance_2": Decimal("1.01152"),
"param_1": Decimal("9999"),
"param_2": Decimal("10001"),
},
)
def test_query_three(self):
BankAccount = self.BankAccount
session = fixture_session()
query = session.query(BankAccount).filter(
BankAccount.balance.as_currency("cad")
> BankAccount.balance.as_currency("eur")
)
self.assert_compile(
query,
"SELECT bank_account.id AS bank_account_id, "
"bank_account.balance AS bank_account_balance "
"FROM bank_account "
"WHERE :balance_1 * bank_account.balance > "
":param_1 * :balance_2 * bank_account.balance",
checkparams={
"balance_1": Decimal("1.01152"),
"balance_2": Decimal("0.724743"),
"param_1": Decimal("1.39569"),
},
)
def test_query_four(self):
BankAccount = self.BankAccount
session = fixture_session()
# 4c. query all amounts, converting to "CAD" on the DB side
query = session.query(BankAccount.balance.as_currency("cad").amount)
self.assert_compile(
query,
"SELECT :balance_1 * bank_account.balance AS anon_1 "
"FROM bank_account",
checkparams={"balance_1": Decimal("1.01152")},
)
def test_query_five(self):
BankAccount = self.BankAccount
session = fixture_session()
# 4d. average balance in EUR
query = session.query(func.avg(BankAccount.balance.as_currency("eur")))
self.assert_compile(
query,
"SELECT avg(:balance_1 * bank_account.balance) AS avg_1 "
"FROM bank_account",
checkparams={"balance_1": Decimal("0.724743")},
)
def test_docstring(self):
BankAccount = self.BankAccount
eq_(
BankAccount.balance.__doc__,
"Return an Amount view of the current balance.",
)
|