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
|
import re
from json import loads
import pytest
try:
from psycopg2cffi import compat
except ImportError:
pass
else:
compat.register()
del compat
import shapely
from packaging.version import parse as parse_version
from shapely.geometry import LineString
from shapely.geometry import Point
from sqlalchemy import CheckConstraint
from sqlalchemy import Column
from sqlalchemy import Computed
from sqlalchemy import Integer
from sqlalchemy import MetaData
from sqlalchemy import String
from sqlalchemy import Table
from sqlalchemy import __version__ as SA_VERSION
from sqlalchemy import bindparam
from sqlalchemy import text
from sqlalchemy.exc import DataError
from sqlalchemy.exc import IntegrityError
from sqlalchemy.exc import OperationalError
from sqlalchemy.exc import ProgrammingError
from sqlalchemy.exc import SAWarning
from sqlalchemy.sql import func
from sqlalchemy.testing.assertions import ComparesTables
import geoalchemy2.admin.dialects
from geoalchemy2 import Geography
from geoalchemy2 import Geometry
from geoalchemy2 import Raster
from geoalchemy2.admin.dialects.geopackage import (
_get_spatialite_attrs as _get_spatialite_attrs_gpkg,
)
from geoalchemy2.admin.dialects.sqlite import _get_spatialite_attrs as _get_spatialite_attrs_sqlite
from geoalchemy2.elements import WKBElement
from geoalchemy2.elements import WKTElement
from geoalchemy2.shape import from_shape
from geoalchemy2.shape import to_shape
from . import check_indexes
from . import format_wkt
from . import get_postgis_major_version
from . import select
from . import skip_case_insensitivity
from . import skip_pg12_sa1217
from . import skip_postgis1
from . import test_only_with_dialects
SQLA_LT_2 = parse_version(SA_VERSION) <= parse_version("1.999")
SHAPELY_LT_21 = parse_version(shapely.__version__) < parse_version("2.1")
class TestAdmin:
@test_only_with_dialects("postgresql", "sqlite-spatialite3", "sqlite-spatialite4")
def test_create_drop_tables(
self,
conn,
metadata,
Lake,
Poi,
Summit,
Ocean,
PointZ,
LocalPoint,
IndexTestWithSchema,
IndexTestWithNDIndex,
IndexTestWithoutSchema,
):
metadata.drop_all(conn, checkfirst=True)
metadata.create_all(conn)
metadata.drop_all(conn, checkfirst=True)
@test_only_with_dialects("postgresql", "mysql", "sqlite-spatialite3", "sqlite-spatialite4")
def test_nullable(self, conn, metadata, setup_tables, dialect_name):
# Define the table
t = Table(
"nullable_geom_type",
metadata,
Column("id", Integer, primary_key=True),
Column(
"geom_not_nullable",
Geometry(geometry_type=None, srid=4326, spatial_index=False, nullable=False),
),
Column(
"geom_nullable",
Geometry(geometry_type=None, srid=4326, spatial_index=False, nullable=True),
),
Column(
"geom_col_not_nullable",
Geometry(geometry_type=None, srid=4326, spatial_index=False),
nullable=False,
),
Column(
"geom_col_nullable",
Geometry(geometry_type=None, srid=4326, spatial_index=False),
nullable=True,
),
)
# Create the table
t.create(bind=conn)
conn.execute(
t.insert(),
[
{
"geom_not_nullable": "SRID=4326;LINESTRING(0 0,1 1)",
"geom_nullable": "SRID=4326;LINESTRING(0 0,1 1)",
"geom_col_not_nullable": "SRID=4326;LINESTRING(0 0,1 1)",
"geom_col_nullable": "SRID=4326;LINESTRING(0 0,1 1)",
},
{
"geom_not_nullable": "SRID=4326;LINESTRING(0 0,1 1)",
"geom_nullable": None,
"geom_col_not_nullable": "SRID=4326;LINESTRING(0 0,1 1)",
"geom_col_nullable": None,
},
],
)
with pytest.raises((IntegrityError, OperationalError)):
with conn.begin_nested():
conn.execute(
t.insert(),
[
{
"geom_not_nullable": None,
"geom_nullable": None,
"geom_col_not_nullable": "SRID=4326;LINESTRING(0 0,1 1)",
"geom_col_nullable": None,
},
],
)
with pytest.raises((IntegrityError, OperationalError)):
with conn.begin_nested():
conn.execute(
t.insert(),
[
{
"geom_not_nullable": "SRID=4326;LINESTRING(0 0,1 1)",
"geom_nullable": None,
"geom_col_not_nullable": None,
"geom_col_nullable": None,
},
],
)
results = conn.execute(t.select())
rows = results.fetchall()
assert len(rows) == 2
# Drop the table
t.drop(bind=conn)
@test_only_with_dialects("postgresql", "mysql")
def test_no_geom_type(self, conn):
with pytest.warns(UserWarning, match="srid not enforced when geometry_type is None"):
# Define the table
t = Table(
"no_geom_type",
MetaData(),
Column("id", Integer, primary_key=True),
Column("geom", Geometry(geometry_type=None)),
Column("geom_with_srid", Geometry(geometry_type=None, srid=4326)),
Column("geog", Geography(geometry_type=None)),
Column("geog_with_srid", Geography(geometry_type=None, srid=4326)),
)
# Create the table
t.create(bind=conn)
# Drop the table
t.drop(bind=conn)
def test_explicit_schema(self, conn):
# Define the table
t = Table(
"a_table",
MetaData(),
Column("id", Integer, primary_key=True),
Column("geom", Geometry()),
schema="gis",
)
# Create the table
t.create(bind=conn)
# Drop the table
t.drop(bind=conn)
@test_only_with_dialects("postgresql")
def test_common_dialect(self, conn, monkeypatch, metadata, Lake):
monkeypatch.setattr(conn.dialect, "name", "UNKNOWN DIALECT")
marks = []
def before_create(table, bind, **kw):
marks.append("before_create")
return
def after_create(table, bind, **kw):
marks.append("after_create")
return
def before_drop(table, bind, **kw):
marks.append("before_drop")
return
def after_drop(table, bind, **kw):
marks.append("after_drop")
return
monkeypatch.setattr(geoalchemy2.admin.dialects.common, "before_create", value=before_create)
monkeypatch.setattr(geoalchemy2.admin.dialects.common, "after_create", value=after_create)
monkeypatch.setattr(geoalchemy2.admin.dialects.common, "before_drop", value=before_drop)
monkeypatch.setattr(geoalchemy2.admin.dialects.common, "after_drop", value=after_drop)
metadata.drop_all(conn, checkfirst=True)
metadata.create_all(conn)
metadata.drop_all(conn, checkfirst=True)
assert marks == ["before_create", "after_create", "before_drop", "after_drop"]
def test_computed_column_core(self, conn):
meta = MetaData()
# Define the table
t = Table(
"computed_column",
meta,
Column("id", Integer, primary_key=True),
Column("x", Integer),
Column("y", Integer),
Column(
"computed_geom",
Geometry(geometry_type="POINT", srid=4326),
Computed("ST_POINT(x, y)", persisted=True),
),
)
# Create the table
meta.create_all(bind=conn)
conn.execute(
t.insert(),
[
{"x": "1", "y": "2"},
{"x": "2", "y": "3"},
],
)
res = conn.execute(
select(
[
t.c.id,
t.c.x,
t.c.y,
t.c.computed_geom.ST_AsText(),
]
),
).fetchall()
# Check inserted data
for i in res:
x = i[1]
y = i[2]
p_x, p_y = [int(j) for j in re.findall(r"\d+", i[3])]
assert x == p_x
assert y == p_y
# Drop the table
meta.drop_all(bind=conn)
def test_computed_column_orm(self, conn, base, metadata):
# Define the table
class ComputedGeomTable(base):
__tablename__ = "computed_column"
id = Column(Integer, primary_key=True)
x = Column(Integer)
y = Column(Integer)
computed_geom = Column(
Geometry(geometry_type="POINT", srid=4326),
Computed("ST_POINT(x, y)", persisted=True),
)
def __init__(self, computed_geom):
self.computed_geom = computed_geom
# Create the table
metadata.create_all(bind=conn)
conn.execute(
ComputedGeomTable.__table__.insert(),
[
{"x": "1", "y": "2"},
{"x": "2", "y": "3"},
],
)
res = conn.execute(
select(
[
ComputedGeomTable.__table__.c.id,
ComputedGeomTable.__table__.c.x,
ComputedGeomTable.__table__.c.y,
ComputedGeomTable.__table__.c.computed_geom.ST_AsText(),
]
),
).fetchall()
# Check inserted data
for i in res:
x = i[1]
y = i[2]
p_x, p_y = [int(j) for j in re.findall(r"\d+", i[3])]
assert x == p_x
assert y == p_y
# Drop the table
metadata.drop_all(bind=conn)
class TestInsertionCore:
def test_insert(self, conn, Lake, setup_tables):
# Issue inserts using DBAPI's executemany() method. This tests the
# Geometry type's bind_processor and bind_expression functions.
conn.execute(
Lake.__table__.insert(),
[
{"id": 1, "geom": "SRID=4326;LINESTRING(0 0,1 1)"},
{"id": 2, "geom": WKTElement("LINESTRING(0 0,2 2)", srid=4326)},
{"id": 3, "geom": WKTElement("SRID=4326;LINESTRING(0 0,2 2)", extended=True)},
{"id": 4, "geom": from_shape(LineString([[0, 0], [3, 3]]), srid=4326)},
],
)
results = conn.execute(Lake.__table__.select().order_by("id"))
rows = results.fetchall()
row = rows[0]
assert isinstance(row[1], WKBElement)
wkt = conn.execute(from_shape(LineString([[0, 0], [3, 3]]), srid=4326).ST_AsText()).scalar()
q1 = row[1].ST_AsText()
wkt = conn.execute(q1).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,1 1)"
srid = conn.execute(row[1].ST_SRID()).scalar()
assert srid == 4326
row = rows[1]
assert isinstance(row[1], WKBElement)
q2 = row[1].ST_AsText()
wkt = conn.execute(q2).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,2 2)"
srid = conn.execute(row[1].ST_SRID()).scalar()
assert srid == 4326
row = rows[2]
assert isinstance(row[1], WKBElement)
wkt = conn.execute(row[1].ST_AsText()).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,2 2)"
srid = conn.execute(row[1].ST_SRID()).scalar()
assert srid == 4326
row = rows[3]
assert isinstance(row[1], WKBElement)
wkt = conn.execute(row[1].ST_AsText()).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,3 3)"
srid = conn.execute(row[1].ST_SRID()).scalar()
assert srid == 4326
@pytest.mark.parametrize(
"geom_type,wkt",
[
pytest.param("POINT", "(1 2)", id="Point"),
pytest.param("POINTZ", "(1 2 3)", id="Point Z"),
pytest.param("POINTM", "(1 2 3)", id="Point M"),
pytest.param("POINTZM", "(1 2 3 4)", id="Point ZM"),
pytest.param("LINESTRING", "(1 2, 3 4)", id="LineString"),
pytest.param("LINESTRINGZ", "(1 2 3, 4 5 6)", id="LineString Z"),
pytest.param("LINESTRINGM", "(1 2 3, 4 5 6)", id="LineString M"),
pytest.param("LINESTRINGZM", "(1 2 3 4, 5 6 7 8)", id="LineString ZM"),
pytest.param("POLYGON", "((1 2, 3 4, 5 6, 1 2))", id="Polygon"),
pytest.param("POLYGONZ", "((1 2 3, 4 5 6, 7 8 9, 1 2 3))", id="Polygon Z"),
pytest.param("POLYGONM", "((1 2 3, 4 5 6, 7 8 9, 1 2 3))", id="Polygon M"),
pytest.param(
"POLYGONZM", "((1 2 3 4, 5 6 7 8, 9 10 11 12, 1 2 3 4))", id="Polygon ZM"
),
pytest.param("MULTIPOINT", "(1 2, 3 4)", id="Multi Point"),
pytest.param("MULTIPOINTZ", "(1 2 3, 4 5 6)", id="Multi Point Z"),
pytest.param("MULTIPOINTM", "(1 2 3, 4 5 6)", id="Multi Point M"),
pytest.param("MULTIPOINTZM", "(1 2 3 4, 5 6 7 8)", id="Multi Point ZM"),
pytest.param("MULTILINESTRING", "((1 2, 3 4), (10 20, 30 40))", id="Multi LineString"),
pytest.param(
"MULTILINESTRINGZ",
"((1 2 3, 4 5 6), (10 20 30, 40 50 60))",
id="Multi LineString Z",
),
pytest.param(
"MULTILINESTRINGM",
"((1 2 3, 4 5 6), (10 20 30, 40 50 60))",
id="Multi LineString M",
),
pytest.param(
"MULTILINESTRINGZM",
"((1 2 3 4, 5 6 7 8), (10 20 30 40, 50 60 70 80))",
id="Multi LineString ZM",
),
pytest.param(
"MULTIPOLYGON",
"(((1 2, 3 4, 5 6, 1 2)), ((10 20, 30 40, 50 60, 10 20)))",
id="Multi Polygon",
),
pytest.param(
"MULTIPOLYGONZ",
"(((1 2 3, 4 5 6, 7 8 9, 1 2 3)), ((10 20 30, 40 50 60, 70 80 90, 10 20 30)))",
id="Multi Polygon Z",
),
pytest.param(
"MULTIPOLYGONM",
"(((1 2 3, 4 5 6, 7 8 9, 1 2 3)), ((10 20 30, 40 50 60, 70 80 90, 10 20 30)))",
id="Multi Polygon M",
),
pytest.param(
"MULTIPOLYGONZM",
"(((1 2 3 4, 5 6 7 8, 9 10 11 12, 1 2 3 4)),"
" ((10 20 30 40, 50 60 70 80, 90 100 100 120, 10 20 30 40)))",
id="Multi Polygon ZM",
),
],
)
@pytest.mark.parametrize(
"use_floating_point",
[
pytest.param(True, id="Use floating point"),
pytest.param(False, id="Do not use floating point"),
],
)
def test_insert_all_geom_types(
self, dialect_name, base, conn, metadata, geom_type, wkt, use_floating_point
):
"""Test insertion and selection of all geometry types."""
ndims = 2
if "Z" in geom_type[-2:]:
ndims += 1
if geom_type.endswith("M"):
ndims += 1
has_m = True
else:
has_m = False
if ndims > 2 and dialect_name in ["mysql", "mariadb"]:
# Explicitly skip MySQL dialect to show that it can only work with 2D geometries
pytest.xfail(reason="MySQL only supports 2D geometry types")
class GeomTypeTable(base):
__tablename__ = "test_geom_types"
id = Column(Integer, primary_key=True)
geom = Column(Geometry(srid=4326, geometry_type=geom_type, dimension=ndims))
metadata.drop_all(bind=conn, checkfirst=True)
metadata.create_all(bind=conn)
if use_floating_point:
wkt = wkt.replace("1 2", "1.5 2.5")
inserted_wkt = f"{geom_type}{wkt}"
inserted_elements = [
{"geom": inserted_wkt},
{"geom": f"SRID=4326;{inserted_wkt}"},
{"geom": WKTElement(inserted_wkt, srid=4326)},
{"geom": WKTElement(f"SRID=4326;{inserted_wkt}")},
]
if dialect_name not in ["postgresql", "sqlite"] or not has_m:
# Use the DB to generate the corresponding raw WKB
raw_wkb = conn.execute(
text("SELECT ST_AsBinary(ST_GeomFromText('{}', 4326))".format(inserted_wkt))
).scalar()
wkb_elem = WKBElement(raw_wkb, srid=4326)
# Currently Shapely does not support geometry types with M dimension
inserted_elements.append({"geom": wkb_elem})
inserted_elements.append({"geom": wkb_elem.as_ewkb()})
print(inserted_elements)
# raise ValueError()
# Insert the elements
conn.execute(
GeomTypeTable.__table__.insert(),
inserted_elements,
)
# Select the elements
query = select(
[
GeomTypeTable.__table__.c.id,
GeomTypeTable.__table__.c.geom.ST_AsText(),
GeomTypeTable.__table__.c.geom.ST_SRID(),
],
)
results = conn.execute(query)
rows = results.all()
# Check that the selected elements are the same as the inputs
for row_id, row, srid in rows:
checked_wkt = row.upper().replace(" ", "")
expected_wkt = inserted_wkt.upper().replace(" ", "")
if "MULTIPOINT" in geom_type:
# Some dialects return MULTIPOINT geometries with nested parenthesis and others
# do not so we remove them before checking the results
checked_wkt = re.sub(r"\(([0-9\.]+)\)", "\\1", checked_wkt)
if row_id >= 5 and dialect_name in ["geopackage"] and has_m and SHAPELY_LT_21:
# Currently Shapely does not support geometry types with M dimension
assert checked_wkt != expected_wkt
else:
assert checked_wkt == expected_wkt
assert srid == 4326
@pytest.mark.parametrize(
"geom_type",
[
pytest.param("POINT", id="Point"),
pytest.param("POINTZ", id="Point Z"),
pytest.param("POINTM", id="Point M"),
pytest.param("POINTZM", id="Point ZM"),
pytest.param("LINESTRING", id="LineString"),
pytest.param("LINESTRINGZ", id="LineString Z"),
pytest.param("LINESTRINGM", id="LineString M"),
pytest.param("LINESTRINGZM", id="LineString ZM"),
pytest.param("POLYGON", id="Polygon"),
pytest.param("POLYGONZ", id="Polygon Z"),
pytest.param("POLYGONM", id="Polygon M"),
pytest.param("POLYGONZM", id="Polygon ZM"),
pytest.param("MULTIPOINT", id="Multi Point"),
pytest.param("MULTIPOINTZ", id="Multi Point Z"),
pytest.param("MULTIPOINTM", id="Multi Point M"),
pytest.param("MULTIPOINTZM", id="Multi Point ZM"),
pytest.param("MULTILINESTRING", id="Multi LineString"),
pytest.param("MULTILINESTRINGZ", id="Multi LineString Z"),
pytest.param("MULTILINESTRINGM", id="Multi LineString M"),
pytest.param("MULTILINESTRINGZM", id="Multi LineString ZM"),
pytest.param("MULTIPOLYGON", id="Multi Polygon"),
pytest.param("MULTIPOLYGONZ", id="Multi Polygon Z"),
pytest.param("MULTIPOLYGONM", id="Multi Polygon M"),
pytest.param("MULTIPOLYGONZM", id="Multi Polygon ZM"),
],
)
@pytest.mark.parametrize(
"dimension",
[
pytest.param(
None,
id="Dimension is None",
),
pytest.param(
-1,
id="Negative dimension",
),
pytest.param(
1,
id="Wrong dimension",
),
],
)
def test_check_ctor_args(self, dialect_name, base, conn, metadata, geom_type, dimension):
ndims = 2
if "Z" in geom_type[-2:]:
ndims += 1
if geom_type.endswith("M"):
ndims += 1
if ndims > 2 and dialect_name in ["mysql", "mariadb"]:
# Explicitly skip MySQL dialect to show that it can only work with 2D geometries
pytest.xfail(reason="MySQL only supports 2D geometry types")
if dimension is not None:
with pytest.raises(ValueError):
Geometry(srid=4326, geometry_type=geom_type, dimension=dimension)
else:
Geometry(srid=4326, geometry_type=geom_type, dimension=dimension)
@test_only_with_dialects("postgresql", "sqlite")
def test_insert_geom_poi(self, conn, Poi, setup_tables):
conn.execute(
Poi.__table__.insert(),
[
{"geom": "SRID=4326;POINT(1 1)"},
{"geom": WKTElement("POINT(1 1)", srid=4326)},
{"geom": WKTElement("SRID=4326;POINT(1 1)", extended=True)},
{"geom": from_shape(Point(1, 1), srid=4326)},
{"geom": from_shape(Point(1, 1), srid=4326, extended=True)},
],
)
results = conn.execute(Poi.__table__.select())
rows = results.fetchall()
for row in rows:
assert isinstance(row[1], WKBElement)
wkt = conn.execute(row[1].ST_AsText()).scalar()
assert format_wkt(wkt) == "POINT(1 1)"
srid = conn.execute(row[1].ST_SRID()).scalar()
assert srid == 4326
assert row[1] == from_shape(Point(1, 1), srid=4326, extended=True)
def test_insert_negative_coords(self, conn, Poi, setup_tables, dialect_name):
conn.execute(
Poi.__table__.insert(),
[
{"geom": "SRID=4326;POINT(-1 1)"},
{"geom": WKTElement("POINT(-1 1)", srid=4326)},
{"geom": WKTElement("SRID=4326;POINT(-1 1)", extended=True)},
{"geom": from_shape(Point(-1, 1), srid=4326)},
{"geom": from_shape(Point(-1, 1), srid=4326, extended=True)},
],
)
results = conn.execute(Poi.__table__.select())
rows = results.fetchall()
for row in rows:
assert isinstance(row[1], WKBElement)
wkt = conn.execute(row[1].ST_AsText()).scalar()
assert format_wkt(wkt) == "POINT(-1 1)"
srid = conn.execute(row[1].ST_SRID()).scalar()
assert srid == 4326
extended = dialect_name not in ["mysql", "mariadb"]
assert row[1] == from_shape(Point(-1, 1), srid=4326, extended=extended)
class TestSelectBindParam:
@pytest.fixture
def setup_one_lake(self, conn, Lake, setup_tables):
conn.execute(Lake.__table__.insert(), {"geom": "SRID=4326;LINESTRING(0 0,1 1)"})
def test_select_bindparam(self, conn, Lake, setup_one_lake):
s = Lake.__table__.select().where(Lake.__table__.c.geom == bindparam("geom"))
params = {"geom": "SRID=4326;LINESTRING(0 0,1 1)"}
if SQLA_LT_2:
results = conn.execute(s, **params)
else:
results = conn.execute(s, params)
rows = results.fetchall()
row = rows[0]
assert isinstance(row[1], WKBElement)
wkt = conn.execute(row[1].ST_AsText()).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,1 1)"
srid = conn.execute(row[1].ST_SRID()).scalar()
assert srid == 4326
def test_select_bindparam_WKBElement(self, conn, Lake, setup_one_lake):
s = Lake.__table__.select().where(Lake.__table__.c.geom == bindparam("geom"))
wkbelement = from_shape(LineString([[0, 0], [1, 1]]), srid=4326)
params = {"geom": wkbelement}
if SQLA_LT_2:
results = conn.execute(s, **params)
else:
results = conn.execute(s, params)
rows = results.fetchall()
row = rows[0]
assert isinstance(row[1], WKBElement)
wkt = conn.execute(row[1].ST_AsText()).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,1 1)"
srid = conn.execute(row[1].ST_SRID()).scalar()
assert srid == 4326
def test_select_bindparam_WKBElement_extented(self, conn, Lake, setup_one_lake, dialect_name):
s = Lake.__table__.select()
results = conn.execute(s)
rows = results.fetchall()
geom = rows[0][1]
assert isinstance(geom, WKBElement)
if dialect_name in ["mysql", "mariadb"]:
assert geom.extended is False
else:
assert geom.extended is True
s = Lake.__table__.select().where(Lake.__table__.c.geom == bindparam("geom"))
params = {"geom": geom}
if SQLA_LT_2:
results = conn.execute(s, **params)
else:
results = conn.execute(s, params)
rows = results.fetchall()
row = rows[0]
assert isinstance(row[1], WKBElement)
wkt = conn.execute(row[1].ST_AsText()).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,1 1)"
srid = conn.execute(row[1].ST_SRID()).scalar()
assert srid == 4326
class TestInsertionORM:
def test_WKT(self, session, Lake, setup_tables, dialect_name, postgis_version):
# With PostGIS 1.5:
# IntegrityError: (IntegrityError) new row for relation "lake" violates
# check constraint "enforce_srid_geom"
#
# With PostGIS 2.0:
# DataError: (DataError) Geometry SRID (0) does not match column SRID
# (4326)
#
# With PostGIS 3.0:
# The SRID is taken from the Column definition so no error is reported
lake = Lake("LINESTRING(0 0,1 1)")
session.add(lake)
if dialect_name == "postgresql" and postgis_version < 3:
with pytest.raises((DataError, IntegrityError)):
session.flush()
else:
session.flush()
def test_WKTElement(self, session, Lake, setup_tables, dialect_name):
lake = Lake(WKTElement("LINESTRING(0 0,1 1)", srid=4326))
session.add(lake)
session.flush()
session.expire(lake)
assert isinstance(lake.geom, WKBElement)
if dialect_name in ["mysql", "mariadb"]:
# Not extended case
assert str(lake.geom) == (
"0102000000020000000000000000000000000000000000000000000"
"0000000f03f000000000000f03f"
)
else:
assert str(lake.geom) == (
"0102000020e6100000020000000000000000000000000000000000000000000"
"0000000f03f000000000000f03f"
)
wkt = session.execute(lake.geom.ST_AsText()).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,1 1)"
srid = session.execute(lake.geom.ST_SRID()).scalar()
assert srid == 4326
def test_WKBElement(self, session, Lake, setup_tables, dialect_name):
shape = LineString([[0, 0], [1, 1]])
lake = Lake(from_shape(shape, srid=4326))
session.add(lake)
session.flush()
session.expire(lake)
assert isinstance(lake.geom, WKBElement)
if dialect_name in ["mysql", "mariadb"]:
# Not extended case
assert str(lake.geom) == (
"0102000000020000000000000000000000000000000000000000000"
"0000000f03f000000000000f03f"
)
else:
assert str(lake.geom) == (
"0102000020e6100000020000000000000000000000000000000000000000000"
"0000000f03f000000000000f03f"
)
wkt = session.execute(lake.geom.ST_AsText()).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,1 1)"
srid = session.execute(lake.geom.ST_SRID()).scalar()
assert srid == 4326
@test_only_with_dialects("postgresql", "mysql", "sqlite-spatialite3", "sqlite-spatialite4")
def test_transform(self, session, LocalPoint, setup_tables, dialect_name):
# Create new point instance
p = LocalPoint()
if dialect_name in ["mysql", "mariadb"]:
expected_x = 45
expected_y = 5
else:
expected_x = 5
expected_y = 45
ewkt = f"SRID=4326;POINT({expected_x} {expected_y})"
p.geom = ewkt # Insert geometry with wrong SRID
p.managed_geom = ewkt # Insert geometry with wrong SRID
# Insert point
session.add(p)
session.flush()
session.expire(p)
# Query the point and check the result
pt = session.query(LocalPoint).one()
assert pt.id == 1
assert pt.geom.srid == 4326
assert pt.managed_geom.srid == 4326
pt_wkb = to_shape(pt.geom)
assert round(pt_wkb.x, 5) == expected_x
assert round(pt_wkb.y, 5) == expected_y
pt_wkb = to_shape(pt.managed_geom)
assert round(pt_wkb.x, 5) == expected_x
assert round(pt_wkb.y, 5) == expected_y
# Check that the data is correct in DB using raw query
q = text(
"""
SELECT id, ST_AsText(geom) AS geom, ST_AsText(managed_geom) AS managed_geom
FROM local_point;
"""
)
res_q = session.execute(q).fetchone()
assert res_q.id == 1
for i in [res_q.geom, res_q.managed_geom]:
x, y = re.match(r"POINT\((\d+\.\d*) (\d+\.\d*)\)", i).groups()
assert round(float(x), 3) == 857581.899
if dialect_name in ["mysql", "mariadb"]:
assert round(float(y), 3) == 6434180.796
else:
assert round(float(y), 3) == 6435414.748
class TestUpdateORM:
def test_WKTElement(self, session, Lake, setup_tables, dialect_name):
raw_wkt = "LINESTRING(0 0,1 1)"
lake = Lake(WKTElement(raw_wkt, srid=4326))
session.add(lake)
# Insert in DB
session.flush()
# Check what was inserted in DB
assert isinstance(lake.geom, WKTElement)
wkt = session.execute(lake.geom.ST_AsText()).scalar()
assert format_wkt(wkt) == raw_wkt
srid = session.execute(lake.geom.ST_SRID()).scalar()
assert srid == 4326
if dialect_name not in ["mysql", "mariadb"]:
# Set geometry to None
lake.geom = None
# Update in DB
session.flush()
# Check what was updated in DB
assert lake.geom is None
cols = [Lake.id, Lake.geom]
assert session.execute(select(cols)).fetchall() == [(1, None)]
# Reset geometry to initial value
lake.geom = WKTElement(raw_wkt, srid=4326)
# Update in DB
session.flush()
# Check what was inserted in DB
assert isinstance(lake.geom, WKTElement)
wkt = session.execute(lake.geom.ST_AsText()).scalar()
assert format_wkt(wkt) == raw_wkt
srid = session.execute(lake.geom.ST_SRID()).scalar()
assert srid == 4326
def test_WKBElement(self, session, Lake, setup_tables, dialect_name):
shape = LineString([[0, 0], [1, 1]])
initial_value = from_shape(shape, srid=4326)
lake = Lake(initial_value)
session.add(lake)
# Insert in DB
session.flush()
# Check what was inserted in DB
assert isinstance(lake.geom, WKBElement)
wkt_query = lake.geom.ST_AsText()
wkt = session.execute(wkt_query).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,1 1)"
srid = session.execute(lake.geom.ST_SRID()).scalar()
assert srid == 4326
if dialect_name not in ["mysql", "mariadb"]:
# Set geometry to None
lake.geom = None
# Update in DB
session.flush()
# Check what was updated in DB
assert lake.geom is None
cols = [Lake.id, Lake.geom]
assert session.execute(select(cols)).fetchall() == [(1, None)]
# Reset geometry to initial value
lake.geom = initial_value
# Insert in DB
session.flush()
# Check what was inserted in DB
assert isinstance(lake.geom, WKBElement)
wkt = session.execute(lake.geom.ST_AsText()).scalar()
assert format_wkt(wkt) == "LINESTRING(0 0,1 1)"
srid = session.execute(lake.geom.ST_SRID()).scalar()
assert srid == 4326
session.refresh(lake)
assert to_shape(lake.geom) == to_shape(initial_value)
def test_other_type_fail(self, session, Lake, setup_tables, dialect_name):
shape = LineString([[0, 0], [1, 1]])
lake = Lake(from_shape(shape, srid=4326))
session.add(lake)
# Insert in DB
session.flush()
# Set geometry to 1, which is of wrong type
lake.geom = 1
# Update in DB
if dialect_name == "postgresql":
with pytest.raises(ProgrammingError):
# Call __eq__() operator of _SpatialElement with 'other' argument equal to 1
# so the lake instance is detected as different and is thus updated but with
# an invalid geometry.
session.flush()
elif dialect_name in ["sqlite", "geopackage"]:
# SQLite silently set the geom attribute to NULL
session.flush()
session.refresh(lake)
assert lake.geom is None
elif dialect_name in ["mysql", "mariadb"]:
with pytest.raises(OperationalError):
session.flush()
else:
raise ValueError(f"Unexpected dialect: {dialect_name}")
class TestCallFunction:
@pytest.fixture
def setup_one_lake(self, session, Lake, setup_tables):
lake = Lake(WKTElement("LINESTRING(0 0,1 1)", srid=4326))
session.add(lake)
session.flush()
session.expire(lake)
return lake.id
@pytest.fixture
def setup_one_poi(self, session, Poi, setup_tables):
p = Poi("POINT(5 45)")
session.add(p)
session.flush()
session.expire(p)
return p.id
def test_ST_GeometryType(self, session, Lake, setup_one_lake, dialect_name):
lake_id = setup_one_lake
if dialect_name == "postgresql":
expected_geometry_type = "ST_LineString"
else:
expected_geometry_type = "LINESTRING"
s = select([func.ST_GeometryType(Lake.__table__.c.geom)])
r1 = session.execute(s).scalar()
assert r1 == expected_geometry_type
lake = session.query(Lake).get(lake_id)
r2 = session.execute(lake.geom.ST_GeometryType()).scalar()
assert r2 == expected_geometry_type
r3 = session.query(Lake.geom.ST_GeometryType()).scalar()
assert r3 == expected_geometry_type
r4 = session.query(Lake).filter(Lake.geom.ST_GeometryType() == expected_geometry_type).one()
assert isinstance(r4, Lake)
assert r4.id == lake_id
@test_only_with_dialects("postgresql", "sqlite")
def test_ST_Buffer(self, session, Lake, setup_one_lake):
lake_id = setup_one_lake
s = select([func.ST_Buffer(Lake.__table__.c.geom, 2)])
r1 = session.execute(s).scalar()
assert isinstance(r1, WKBElement)
lake = session.query(Lake).get(lake_id)
assert isinstance(lake.geom, WKBElement)
r2 = session.execute(lake.geom.ST_Buffer(2)).scalar()
assert isinstance(r2, WKBElement)
r3 = session.query(Lake.geom.ST_Buffer(2)).scalar()
assert isinstance(r3, WKBElement)
assert r1.data == r2.data == r3.data
r4 = (
session.query(Lake)
.filter(func.ST_Within(WKTElement("POINT(0 0)", srid=4326), Lake.geom.ST_Buffer(2)))
.one()
)
assert isinstance(r4, Lake)
assert r4.id == lake_id
@test_only_with_dialects("postgresql", "sqlite")
def test_ST_AsGeoJson(self, session, Lake, setup_one_lake):
lake_id = setup_one_lake
lake = session.query(Lake).get(lake_id)
# Test geometry
s1 = select([func.ST_AsGeoJSON(Lake.__table__.c.geom)])
r1 = session.execute(s1).scalar()
assert loads(r1) == {"type": "LineString", "coordinates": [[0, 0], [1, 1]]}
# Test geometry ORM
s1_orm = lake.geom.ST_AsGeoJSON()
r1_orm = session.execute(s1_orm).scalar()
assert loads(r1_orm) == {"type": "LineString", "coordinates": [[0, 0], [1, 1]]}
# Test from WKTElement
s1_wkt = WKTElement("LINESTRING(0 0,1 1)", srid=4326, extended=False).ST_AsGeoJSON()
r1_wkt = session.execute(s1_wkt).scalar()
assert loads(r1_wkt) == {"type": "LineString", "coordinates": [[0, 0], [1, 1]]}
# Test from extended WKTElement
s1_ewkt = WKTElement("SRID=4326;LINESTRING(0 0,1 1)", extended=True).ST_AsGeoJSON()
r1_ewkt = session.execute(s1_ewkt).scalar()
assert loads(r1_ewkt) == {"type": "LineString", "coordinates": [[0, 0], [1, 1]]}
# Test with function inside
s1_func = select(
[func.ST_AsGeoJSON(func.ST_Translate(Lake.__table__.c.geom, 0.0, 0.0, 0.0))]
)
r1_func = session.execute(s1_func).scalar()
assert loads(r1_func) == {"type": "LineString", "coordinates": [[0, 0], [1, 1]]}
@skip_case_insensitivity()
@test_only_with_dialects("postgresql", "mysql", "sqlite-spatialite3", "sqlite-spatialite4")
def test_comparator_case_insensitivity(self, session, Lake, setup_one_lake):
lake_id = setup_one_lake
s = select([func.ST_Transform(Lake.__table__.c.geom, 2154)])
r1 = session.execute(s).scalar()
assert isinstance(r1, WKBElement)
lake = session.query(Lake).get(lake_id)
r2 = session.execute(lake.geom.ST_Transform(2154)).scalar()
assert isinstance(r2, WKBElement)
r3 = session.execute(lake.geom.st_transform(2154)).scalar()
assert isinstance(r3, WKBElement)
r4 = session.execute(lake.geom.St_TrAnSfOrM(2154)).scalar()
assert isinstance(r4, WKBElement)
r5 = session.query(Lake.geom.ST_Transform(2154)).scalar()
assert isinstance(r5, WKBElement)
r6 = session.query(Lake.geom.st_transform(2154)).scalar()
assert isinstance(r6, WKBElement)
r7 = session.query(Lake.geom.St_TrAnSfOrM(2154)).scalar()
assert isinstance(r7, WKBElement)
assert r1.data == r2.data == r3.data == r4.data == r5.data == r6.data == r7.data
def test_unknown_function_column(self, session, Lake, setup_one_lake, dialect_name):
s = select([func.ST_UnknownFunction(Lake.__table__.c.geom, 2)])
exc = ProgrammingError if dialect_name == "postgresql" else OperationalError
with pytest.raises(exc, match="ST_UnknownFunction"):
session.execute(s)
def test_unknown_function_element(self, session, Lake, setup_one_lake, dialect_name):
lake_id = setup_one_lake
lake = session.query(Lake).get(lake_id)
s = select([func.ST_UnknownFunction(lake.geom, 2)])
exc = ProgrammingError if dialect_name == "postgresql" else OperationalError
with pytest.raises(exc):
# TODO: here the query fails because of a
# "(psycopg2.ProgrammingError) can't adapt type 'WKBElement'"
# It would be better if it could fail because of a "UndefinedFunction" error
session.execute(s)
def test_unknown_function_element_ORM(self, session, Lake, setup_one_lake):
lake_id = setup_one_lake
lake = session.query(Lake).get(lake_id)
with pytest.raises(AttributeError):
select([lake.geom.ST_UnknownFunction(2)])
class TestShapely:
def test_to_shape(self, session, Lake, setup_tables, dialect_name):
if dialect_name in ["sqlite", "geopackage"]:
data_type = str
elif dialect_name in ["mysql", "mariadb"]:
data_type = bytes
else:
data_type = memoryview
lake = Lake(WKTElement("LINESTRING(0 0,1 1)", srid=4326))
session.add(lake)
session.flush()
session.expire(lake)
lake = session.query(Lake).one()
assert isinstance(lake.geom, WKBElement)
assert isinstance(lake.geom.data, data_type)
assert lake.geom.srid == 4326
s = to_shape(lake.geom)
assert isinstance(s, LineString)
assert s.wkt == "LINESTRING (0 0, 1 1)"
lake = Lake(lake.geom)
session.add(lake)
session.flush()
session.expire(lake)
assert isinstance(lake.geom, WKBElement)
assert isinstance(lake.geom.data, data_type)
assert lake.geom.srid == 4326
class TestContraint:
@pytest.fixture
def ConstrainedLake(self, base):
class ConstrainedLake(base):
__tablename__ = "contrained_lake"
__table_args__ = (
CheckConstraint(
"(geom is null and a_str is null) = (checked_str is null)",
"check_geom_sk",
),
)
id = Column(Integer, primary_key=True)
a_str = Column(String, nullable=True)
checked_str = Column(String, nullable=True)
geom = Column(Geometry(geometry_type="LINESTRING", srid=4326))
def __init__(self, geom):
self.geom = geom
return ConstrainedLake
@test_only_with_dialects("postgresql", "sqlite-spatialite3", "sqlite-spatialite4")
def test_insert(self, conn, ConstrainedLake, setup_tables):
# Insert geometries
conn.execute(
ConstrainedLake.__table__.insert(),
[
{
"a_str": None,
"geom": "SRID=4326;LINESTRING(0 0,1 1)",
"checked_str": "test",
},
{"a_str": "test", "geom": None, "checked_str": "test"},
{"a_str": None, "geom": None, "checked_str": None},
],
)
# Fail when trying to insert null geometry
with pytest.raises(IntegrityError):
conn.execute(
ConstrainedLake.__table__.insert(),
[
{"a_str": None, "geom": None, "checked_str": "should fail"},
],
)
class TestReflection:
@pytest.fixture
def setup_reflection_tables(self, reflection_tables_metadata, conn):
reflection_tables_metadata.drop_all(conn, checkfirst=True)
reflection_tables_metadata.create_all(conn)
@test_only_with_dialects("postgresql", "sqlite")
def test_reflection(self, conn, setup_reflection_tables, dialect_name):
skip_pg12_sa1217(conn)
t = Table(
"lake",
MetaData(),
autoload_with=conn,
)
if dialect_name == "postgresql":
# Check index query with explicit schema
t_with_schema = Table("lake", MetaData(), autoload_with=conn, schema="gis")
assert sorted([col.name for col in t.columns]) == sorted(
[col.name for col in t_with_schema.columns]
)
assert sorted([idx.name for idx in t.indexes]) == sorted(
[idx.name for idx in t_with_schema.indexes]
)
if get_postgis_major_version(conn) == 1:
type_ = t.c.geom.type
assert isinstance(type_, Geometry)
assert type_.geometry_type == "GEOMETRY"
assert type_.srid == -1
else:
type_ = t.c.geom.type
assert isinstance(type_, Geometry)
assert type_.geometry_type == "LINESTRING"
assert type_.srid == 4326
assert type_.dimension == 2
if dialect_name != "geopackage":
type_ = t.c.geom_no_idx.type
assert isinstance(type_, Geometry)
assert type_.geometry_type == "LINESTRING"
assert type_.srid == 4326
assert type_.dimension == 2
type_ = t.c.geom_z.type
assert isinstance(type_, Geometry)
assert type_.geometry_type == "LINESTRINGZ"
assert type_.srid == 4326
assert type_.dimension == 3
type_ = t.c.geom_m.type
assert isinstance(type_, Geometry)
assert type_.geometry_type == "LINESTRINGM"
assert type_.srid == 4326
assert type_.dimension == 3
type_ = t.c.geom_zm.type
assert isinstance(type_, Geometry)
assert type_.geometry_type == "LINESTRINGZM"
assert type_.srid == 4326
assert type_.dimension == 4
if dialect_name == "postgresql":
type_ = t.c.geom_geog.type
assert isinstance(type_, Geography)
assert type_.geometry_type == "LINESTRING"
assert type_.srid == 4326
assert type_.dimension == 2
type_ = t.c.geom_geog_no_idx.type
assert isinstance(type_, Geography)
assert type_.geometry_type == "LINESTRING"
assert type_.srid == 4326
assert type_.dimension == 2
type_ = t.c.rast.type
assert isinstance(type_, Raster)
assert type_.geometry_type is None
assert type_.srid == -1
assert type_.dimension is None
type_ = t.c.rast_no_idx.type
assert isinstance(type_, Raster)
assert type_.geometry_type is None
assert type_.srid == -1
assert type_.dimension is None
# Drop the table
t.drop(bind=conn)
# Check the indexes
check_indexes(
conn,
dialect_name,
{
"postgresql": [],
"sqlite": [],
"geopackage": [],
},
table_name=t.name,
)
# Recreate the table to check that the reflected properties are correct
t.create(bind=conn)
# Check the indexes
if dialect_name in ["sqlite", "geopackage"]:
if dialect_name == "geopackage":
col_attributes = _get_spatialite_attrs_gpkg(conn, t.name, "geom")
else:
col_attributes = _get_spatialite_attrs_sqlite(conn, t.name, "geom")
if isinstance(col_attributes[0], int):
sqlite_indexes = [
("lake", "geom", 2, 2, 4326, 1),
("lake", "geom_m", 2002, 3, 4326, 1),
("lake", "geom_no_idx", 2, 2, 4326, 0),
("lake", "geom_z", 1002, 3, 4326, 1),
("lake", "geom_zm", 3002, 4, 4326, 1),
]
else:
sqlite_indexes = [
("lake", "geom", "LINESTRING", "XY", 4326, 1),
("lake", "geom_m", "LINESTRING", "XYM", 4326, 1),
("lake", "geom_no_idx", "LINESTRING", "XY", 4326, 0),
("lake", "geom_z", "LINESTRING", "XYZ", 4326, 1),
("lake", "geom_zm", "LINESTRING", "XYZM", 4326, 1),
]
else:
sqlite_indexes = []
check_indexes(
conn,
dialect_name,
{
"postgresql": [
(
"idx_lake_geom",
"CREATE INDEX idx_lake_geom ON gis.lake USING gist (geom)",
),
(
"idx_lake_geom_geog",
"CREATE INDEX idx_lake_geom_geog ON gis.lake USING gist (geom_geog)",
),
(
"idx_lake_geom_m",
"CREATE INDEX idx_lake_geom_m ON gis.lake USING gist (geom_m)",
),
(
"idx_lake_geom_z",
"CREATE INDEX idx_lake_geom_z ON gis.lake USING gist (geom_z)",
),
(
"idx_lake_geom_zm",
"CREATE INDEX idx_lake_geom_zm ON gis.lake USING gist (geom_zm)",
),
(
"idx_lake_rast",
"CREATE INDEX idx_lake_rast ON gis.lake USING gist (st_convexhull(rast))",
),
(
"lake_pkey",
"CREATE UNIQUE INDEX lake_pkey ON gis.lake USING btree (id)",
),
],
"sqlite": sqlite_indexes,
"geopackage": [("lake", "geom", "gpkg_rtree_index")],
},
table_name=t.name,
)
@test_only_with_dialects("postgresql", "sqlite")
def test_raster_reflection(self, conn, Ocean, setup_tables):
skip_pg12_sa1217(conn)
skip_postgis1(conn)
if SQLA_LT_2:
with pytest.warns(SAWarning):
t = Table("ocean", MetaData(), autoload_with=conn)
else:
t = Table("ocean", MetaData(), autoload_with=conn)
type_ = t.c.rast.type
assert isinstance(type_, Raster)
@test_only_with_dialects("sqlite")
def test_sqlite_reflection_with_discarded_col(self, conn, Lake, setup_tables, dialect_name):
"""Test that a discarded geometry column is not properly reflected with SQLite."""
if dialect_name == "geopackage":
conn.execute(text("""DELETE FROM "gpkg_geometry_columns" WHERE table_name = 'lake';"""))
else:
conn.execute(text("""DELETE FROM "geometry_columns" WHERE f_table_name = 'lake';"""))
t = Table(
"lake",
MetaData(),
autoload_with=conn,
)
# In this case the reflected type is generic with default values
assert t.c.geom.type.geometry_type == "GEOMETRY"
assert t.c.geom.type.dimension == 2
assert t.c.geom.type.extended
assert t.c.geom.type.nullable
assert t.c.geom.type.spatial_index
assert t.c.geom.type.srid == -1
@pytest.fixture
def ocean_view(self, conn, Ocean):
conn.execute(text("CREATE VIEW test_view AS SELECT * FROM ocean;"))
yield Ocean
conn.execute(text("DROP VIEW test_view;"))
@test_only_with_dialects("postgresql", "sqlite")
def test_view_reflection(self, conn, Ocean, setup_tables, ocean_view):
"""Test reflection of a view.
Note: the reflected `Table` object has spatial indexes attached. It would be nice to detect
when a view is reflected to not attach any spatial index.
"""
skip_pg12_sa1217(conn)
skip_postgis1(conn)
t = Table("test_view", MetaData(), autoload_with=conn)
type_ = t.c.rast.type
assert isinstance(type_, Raster)
class TestToMetadata(ComparesTables):
def test_to_metadata(self, Lake):
new_meta = MetaData()
new_Lake = Lake.__table__.to_metadata(new_meta)
self.assert_tables_equal(Lake.__table__, new_Lake)
# Check that the spatial index was not duplicated
assert len(new_Lake.indexes) == 1
class TestAsBinaryWKT:
def test_create_insert(self, conn, dialect_name):
class GeometryWkt(Geometry):
"""Geometry type that uses WKT strings."""
from_text = "ST_GeomFromEWKT"
as_binary = "ST_AsText"
ElementType = WKTElement
dialects_with_srid = ["geopackage", "mysql", "mariadb"]
# Define the table
cols = [
Column("id", Integer, primary_key=True),
]
cols.append(Column("geom_with_srid", GeometryWkt(geometry_type="LINESTRING", srid=4326)))
if dialect_name not in dialects_with_srid:
cols.append(Column("geom", GeometryWkt(geometry_type="LINESTRING")))
t = Table("use_wkt", MetaData(), *cols)
# Create the table
t.drop(bind=conn, checkfirst=True)
t.create(bind=conn)
# Test element insertion
inserted_values = [
{"geom_with_srid": v}
for v in [
"SRID=4326;LINESTRING(0 0,1 1)",
WKTElement("LINESTRING(0 0,2 2)", srid=4326),
WKTElement("SRID=4326;LINESTRING(0 0,3 3)", extended=True),
from_shape(LineString([[0, 0], [4, 4]]), srid=4326),
]
]
if dialect_name not in dialects_with_srid:
for i, v in zip(
inserted_values,
[
"LINESTRING(0 0,1 1)",
WKTElement("LINESTRING(0 0,2 2)"),
WKTElement("SRID=-1;LINESTRING(0 0,3 3)", extended=True),
from_shape(LineString([[0, 0], [4, 4]])),
],
):
i["geom"] = v
conn.execute(t.insert(), inserted_values)
results = conn.execute(t.select())
rows = results.fetchall()
for row_num, row in enumerate(rows):
for num, element in enumerate(row[1:]):
assert isinstance(element, WKTElement)
wkt = conn.execute(element.ST_AsText()).scalar()
assert format_wkt(wkt) == f"LINESTRING(0 0,{row_num + 1} {row_num + 1})"
srid = conn.execute(element.ST_SRID()).scalar()
if num == 1:
assert srid == 0 if dialect_name != "sqlite" else -1
else:
assert srid == 4326
# Drop the table
t.drop(bind=conn)
class TestCompileQuery:
def test_compile_query(self, conn):
wkb = b"\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00@"
elem = WKBElement(wkb)
query = select([func.ST_AsText(elem)])
compiled_with_literal = str(query.compile(conn, compile_kwargs={"literal_binds": True}))
res_text = conn.execute(text(compiled_with_literal)).scalar()
assert res_text == "POINT(1 2)"
compiled_without_literal = str(query.compile(conn, compile_kwargs={"literal_binds": False}))
res_query = conn.execute(query).scalar()
assert res_query == "POINT(1 2)"
assert compiled_with_literal.startswith("SELECT ST_AsText(")
assert "0101000000000000000000f03f0000000000000040" in compiled_with_literal
assert compiled_without_literal.startswith("SELECT ST_AsText(")
assert "0101000000000000000000f03f0000000000000040" not in compiled_without_literal
|