1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270
|
#!/usr/bin/env perl
#
# PostGIS - Spatial Types for PostgreSQL
# http://postgis.net
#
# Copyright (C) 2012-2024 Sandro Santilli <strk@kbt.io>
# Copyright (C) 2014-2015 Regina Obe <lr@pcorp.us>
# Copyright (C) 2012-2013 Paul Ramsey <pramsey@cleverelephant.ca>
#
# This is free software; you can redistribute and/or modify it under
# the terms of the GNU General Public Licence. See the COPYING file.
#
#$| = 1;
use File::Basename(dirname,fileparse,basename);
use File::Temp 'tempdir';
use Time::HiRes qw(time);
use File::Copy;
use File::Path(mkpath);
use Cwd 'abs_path';
use Getopt::Long;
use strict;
##################################################################
# Add . to @INC if removed for CVE-2016-1238
##################################################################
BEGIN {
push @INC, "." if(!grep /^\.$/, @INC);
}
##################################################################
# Usage ./run_test.pl <testname> [<testname>]
#
# Create the spatial database 'postgis_reg' (or whatever $DB
# is set to) if it doesn't already exist.
#
# Run the <testname>.sql script
# Check output against <testname>_expected
#
# Use `-` as the testname to drop into an interactive shell
#
##################################################################
##################################################################
# Global configuration items
##################################################################
our $DB = $ENV{"POSTGIS_REGRESS_DB"} || "postgis_reg";
our $REGDIR = $ENV{"POSTGIS_REGRESS_DIR"} || abs_path(dirname($0));
our $DB_OWNER = $ENV{"POSTGIS_REGRESS_DB_OWNER"};
our $DB_ROLE_EXT_MKR = $ENV{"POSTGIS_REGRESS_ROLE_EXT_CREATOR"} || $DB_OWNER;
our $TOP_SOURCEDIR = ${REGDIR} . '/..';
our $ABS_TOP_SOURCEDIR = abs_path(${TOP_SOURCEDIR});
our $TOP_BUILDDIR = $ENV{"POSTGIS_TOP_BUILD_DIR"};
our $sysdiff = !system("diff --strip-trailing-cr $0 $0 2> /dev/null");
##################################################################
# Set up some global variables
##################################################################
my $RUN = 0;
my $FAIL = 0;
my $SKIP = 0;
our $TEST = "";
##################################################################
# Parse command line opts
##################################################################
my $OPT_CLEAN = 0;
my $OPT_NODROP = 0;
my $OPT_NOCREATE = 0;
my $OPT_UPGRADE = 0;
my $OPT_DUMPRESTORE = 0;
my $OPT_WITH_TIGER = 0;
my $OPT_WITH_TOPO = 0;
my $OPT_WITH_RASTER = 0;
my $OPT_WITH_SFCGAL = 0;
my $OPT_EXPECT = 0;
my $OPT_EXTENSIONS = 0;
my $OPT_LEGACY = 0;
my @OPT_HOOK_AFTER_CREATE;
my @OPT_HOOK_AFTER_CREATE_DB;
my @OPT_HOOK_AFTER_RESTORE;
my @OPT_HOOK_BEFORE_DUMP;
my @OPT_HOOK_BEFORE_TEST;
my @OPT_HOOK_AFTER_TEST;
my @OPT_HOOK_BEFORE_UNINSTALL;
my @OPT_HOOK_BEFORE_UPGRADE;
my @OPT_HOOK_AFTER_UPGRADE;
my $OPT_EXTVERSION = '';
my $OPT_UPGRADE_PATH = '';
our $OPT_UPGRADE_FROM = '';
my $OPT_UPGRADE_TO = '';
our $VERBOSE = 0;
our $OPT_SCHEMA = 'public';
GetOptions (
'verbose+' => \$VERBOSE,
'clean' => \$OPT_CLEAN,
'nodrop' => \$OPT_NODROP,
'upgrade+' => \$OPT_UPGRADE,
'upgrade-path=s' => \$OPT_UPGRADE_PATH,
'dumprestore' => \$OPT_DUMPRESTORE,
'nocreate' => \$OPT_NOCREATE,
'tiger' => \$OPT_WITH_TIGER,
'topology' => \$OPT_WITH_TOPO,
'raster' => \$OPT_WITH_RASTER,
'sfcgal' => \$OPT_WITH_SFCGAL,
'expect' => \$OPT_EXPECT,
'extensions' => \$OPT_EXTENSIONS,
'legacy' => \$OPT_LEGACY,
'schema=s' => \$OPT_SCHEMA,
'build-dir=s' => \$TOP_BUILDDIR,
'after-create-script=s' => \@OPT_HOOK_AFTER_CREATE,
'after-create-db-script=s' => \@OPT_HOOK_AFTER_CREATE_DB,
'after-test-script=s' => \@OPT_HOOK_AFTER_TEST,
'before-uninstall-script=s' => \@OPT_HOOK_BEFORE_UNINSTALL,
'before-test-script=s' => \@OPT_HOOK_BEFORE_TEST,
'before-upgrade-script=s' => \@OPT_HOOK_BEFORE_UPGRADE,
'before-dump-script=s' => \@OPT_HOOK_BEFORE_DUMP,
'after-upgrade-script=s' => \@OPT_HOOK_AFTER_UPGRADE,
'after-restore-script=s' => \@OPT_HOOK_AFTER_RESTORE
);
if ( @ARGV < 1 )
{
usage();
}
sub findOrDie
{
my $exec = shift;
my $verbose = shift;
printf "Checking for %s ... ", $exec if $verbose gt 1;
foreach my $d ( split /:/, $ENV{PATH} )
{
my $path = $d . '/' . $exec;
if ( -x $path ) {
if ( $verbose gt 1 ) {
print "found";
print " ($path)" if $verbose gt 1;
print "\n";
}
return $path
}
}
print STDERR "Unable to find $exec executable.\n";
print STDERR "PATH is " . $ENV{"PATH"} . "\n";
die "HINT: use POSTGIS_TOP_BUILD_DIR env or --build-dir switch the specify top build dir.\n";
}
# If build dir is not given, try to guess
if ( "${TOP_BUILDDIR}" eq "" )
{
foreach my $d ( $ENV{'PWD'}, "${TOP_SOURCEDIR}" )
{
if ( -e ${d} . '/postgis_revision.h' )
{
$TOP_BUILDDIR="${d}";
last;
}
}
}
# Prepend scripts' build dirs to path
# TODO: make this conditional ?
$ENV{PATH} = $TOP_BUILDDIR . '/loader:' .
$TOP_BUILDDIR . '/raster/loader:' .
$TOP_BUILDDIR . '/utils:' .
$ENV{PATH};
our $SHP2PGSQL;
sub shp2pgsql
{
$SHP2PGSQL = findOrDie 'shp2pgsql', @_ unless defined($SHP2PGSQL);
return $SHP2PGSQL;
}
our $PGSQL2SHP;
sub pgsql2shp
{
$PGSQL2SHP = findOrDie 'pgsql2shp', @_ unless defined($PGSQL2SHP);
return $PGSQL2SHP;
}
our $RASTER2PGSQL;
sub raster2pgsql
{
$RASTER2PGSQL = findOrDie 'raster2pgsql', @_ unless defined($RASTER2PGSQL);
return $RASTER2PGSQL;
}
our $POSTGIS_RESTORE;
sub postgis_restore
{
$POSTGIS_RESTORE = findOrDie 'postgis_restore.pl', @_ unless defined($POSTGIS_RESTORE);
}
if ( $OPT_UPGRADE_PATH )
{
$OPT_UPGRADE = 1 if not $OPT_UPGRADE; # implied
my @path = split ('--', $OPT_UPGRADE_PATH);
$OPT_UPGRADE_FROM = $path[0]
|| die "Malformed upgrade path, <from>--<to> expected, $OPT_UPGRADE_PATH given";
$OPT_UPGRADE_TO = $path[1]
|| die "Malformed upgrade path, <from>--<to> expected, $OPT_UPGRADE_PATH given";
print "Upgrade path: ${OPT_UPGRADE_FROM} --> ${OPT_UPGRADE_TO}\n";
}
# Split-raster extension was introduced in PostGIS-3.0.0
sub has_split_raster_ext
{
my $fullver = shift;
# unpackaged is always current, so does have
# split raster already.
return 1 if $fullver =~ /^unpackaged$/;
$fullver =~ s/unpackaged//;
my @ver = split(/\./, $fullver);
return 0 if ( $ver[0] < 3 );
return 1;
}
##################################################################
# Set the locale to "C" so error messages match
# Save original locale to set back
##################################################################
my $ORIG_LC_ALL = $ENV{"LC_ALL"};
my $ORIG_LANG = $ENV{"LANG"};
$ENV{"LC_ALL"} = "C";
$ENV{"LANG"} = "C";
# Add locale info to the psql options
# Add pg12 precision suppression
my $PGOPTIONS = $ENV{"PGOPTIONS"};
$PGOPTIONS .= " -c lc_messages=C";
$PGOPTIONS .= " -c client_min_messages=NOTICE";
$PGOPTIONS .= " -c extra_float_digits=0";
$ENV{"PGOPTIONS"} = $PGOPTIONS;
# Calculate the regression directory locations
my $STAGED_INSTALL_DIR = $TOP_BUILDDIR . "/regress/00-regress-install";
my $STAGED_SCRIPTS_DIR = $STAGED_INSTALL_DIR . "/share/contrib/postgis";
my $OBJ_COUNT_PRE = 0;
my $OBJ_COUNT_POST = 0;
##################################################################
# Set up the temporary directory
##################################################################
# Pre-flight to check if we need
# to find shp2pgsql/pgsql2shp/raster2pgsql
foreach $TEST (@ARGV)
{
if ( -r "${TEST}.dbf" )
{
shp2pgsql($VERBOSE);
pgsql2shp($VERBOSE);
}
elsif ( -r "${TEST}.tif" )
{
raster2pgsql($VERBOSE);
}
}
##################################################################
# Set up the temporary directory
##################################################################
my $TMPDIR;
if ( $ENV{'PGIS_REG_TMPDIR'} )
{
$TMPDIR = $ENV{'PGIS_REG_TMPDIR'};
}
elsif ( -d "/tmp/" && -w "/tmp/" )
{
$TMPDIR = "/tmp/pgis_reg";
}
else
{
$TMPDIR = tempdir( CLEANUP => 0 );
}
mkpath $TMPDIR; # make sure tmp dir exists
# Set log name
my $REGRESS_LOG = "${TMPDIR}/regress_log";
# Report
print "TMPDIR is $TMPDIR\n" if $VERBOSE gt 1;
##################################################################
# Prepare the database
##################################################################
my @dblist = grep(/1/, split(/\n/, `
psql -tAc "
SELECT 1 FROM pg_catalog.pg_database
WHERE datname = '${DB}'
" template1
`));
my $pgvernum = `
psql -tAc "SELECT current_setting('server_version_num')" template1
`;
my $defextver = `
psql -XtAc "
SELECT default_version
FROM pg_catalog.pg_available_extensions
WHERE name = 'postgis'
" template1
`;
chop $defextver;
my $dbcount = @dblist;
if ( $dbcount == 0 )
{
if ( $OPT_NOCREATE )
{
print "Database $DB does not exist.\n";
print "Run without the --nocreate flag to create it.\n";
exit(1);
}
else
{
create_spatial();
}
}
else
{
if ( $OPT_NOCREATE )
{
print "Using existing database $DB\n";
}
else
{
print STDERR "Database $DB already exists, dropping.\n";
`dropdb $DB`;
create_spatial();
}
}
unless ( $OPT_NOCREATE )
{
foreach my $hook (@OPT_HOOK_AFTER_CREATE)
{
print "Running after-create script $hook\n";
die unless load_sql_file($hook, 1);
}
}
my $libver = sql("select postgis_lib_version()");
if ( ! $libver )
{
`dropdb $DB`;
print "\nSomething went wrong (no PostGIS installed in $DB).\n";
print "For details, check $REGRESS_LOG\n\n";
exit(1);
}
sub compute_executor_slow_factor
{
my $ms_to_fetch_full_version = sql(<<EOF
CREATE TEMP TABLE _start AS SELECT clock_timestamp() c;
SELECT FROM postgis_full_version();
SELECT EXTRACT(milliseconds FROM clock_timestamp()-c)
FROM _start;
EOF
);
my $default_ms_to_fetch_full_version = 10;
my $test_executor_slow_factor = 1;
if ( $ms_to_fetch_full_version gt $default_ms_to_fetch_full_version )
{
$test_executor_slow_factor = $ms_to_fetch_full_version / $default_ms_to_fetch_full_version;
}
#
print "Executor slow factor: $test_executor_slow_factor ($ms_to_fetch_full_version ms to fetch full version)\n";
sql("ALTER DATABASE \\\"$DB\\\" SET test.executor_slow_factor = $test_executor_slow_factor");
}
compute_executor_slow_factor;
sub staged_scripts_dir
{
unless ( -d $STAGED_SCRIPTS_DIR ) {
print STDERR "Unable to find $STAGED_SCRIPTS_DIR directory.\n";
print STDERR "TOP_BUILDDIR is $TOP_BUILDDIR.\n";
die "HINT: use POSTGIS_TOP_BUILD_DIR env or --build-dir switch the specify top build dir.\n";
}
$STAGED_SCRIPTS_DIR;
}
sub scriptdir
{
my ( $version, $systemwide ) = @_;
my $scriptdir;
if ( $systemwide or ( $version and $version ne $libver ) ) {
my $pgis_majmin = $version;
$pgis_majmin =~ s/^([1-9]*\.[0-9]*).*/\1/;
$scriptdir = `pg_config --sharedir`;
chop $scriptdir;
$scriptdir .= "/contrib/postgis-" . $pgis_majmin;
} else {
$scriptdir = staged_scripts_dir()
}
#print "XXX: scriptdir: $scriptdir\n";
return $scriptdir;
}
sub semver_lessthan
{
my ($a,$b) = @_;
my @acomp = split(/\./, $a);
my @bcomp = split(/\./, $b);
foreach my $ac (@acomp) {
my $bc = shift(@bcomp);
return 0 if not defined($bc); # $b has less components
return 1 if ( $ac < $bc ); # $a is less than $b
return 0 if ( $ac > $bc ); # $a is not less than $b
}
# $a is equal to $b so far, if $b has more elements,
# it is bigger
return @bcomp ? 1 : 0;
}
if ( $OPT_DUMPRESTORE )
{
my $DBDUMP = dump_db();
die unless defined $DBDUMP;
print "Dropping db '${DB}'\n";
my $rv = system("dropdb ${DB} >> $REGRESS_LOG 2>&1");
if ( $rv ) {
fail("Could not drop ${DB}", $REGRESS_LOG);
die;
}
print "Creating db '${DB}'\n";
$rv = create_db();
if ( ! $rv ) {
fail("Could not create db ${DB} (create_db returned $rv)", $REGRESS_LOG);
die;
}
die unless restore_db($DBDUMP);
# Update libver
$libver = sql("select postgis_lib_version()");
unlink($DBDUMP);
}
if ( $OPT_UPGRADE )
{
my $upgradesleft = $OPT_UPGRADE;
print "Upgrading from postgis $libver ($upgradesleft upgrades requested)\n";
foreach my $hook (@OPT_HOOK_BEFORE_UPGRADE)
{
print "Running before-upgrade-script $hook\n";
die unless load_sql_file($hook, 1);
}
while ( $upgradesleft-- )
{
if ( $OPT_EXTENSIONS )
{
die unless upgrade_spatial_extensions();
}
else
{
die unless upgrade_spatial();
}
}
foreach my $hook (@OPT_HOOK_AFTER_UPGRADE)
{
print "Running after-upgrade-script $hook\n";
die unless load_sql_file($hook, 1);
}
# Update libver
$libver = sql("select postgis_lib_version()");
}
##################################################################
# Report PostGIS environment
##################################################################
my $geosver = sql("select postgis_geos_version()");
my $projver = sql("select postgis_proj_version()");
my $libbuilddate = sql("select postgis_lib_build_date()");
my $pgsqlver = sql("select version()");
my $gdalver = sql("select postgis_gdal_version()") if $OPT_WITH_RASTER;
my $sfcgalver = sql("select postgis_sfcgal_version()") if $OPT_WITH_SFCGAL;
my $scriptver = sql("select postgis_scripts_installed()");
# postgis_lib_revision was introduced in 3.1.0
my $librev = semver_lessthan($scriptver, "3.1.0") ?
sql("select postgis_svn_version()") :
sql("select postgis_lib_revision()");
my $raster_scriptver = sql("select postgis_raster_scripts_installed()")
if ( $OPT_WITH_RASTER );
print "$pgsqlver\n";
print " Postgis $libver - (${librev}) - $libbuilddate\n";
print " scripts ${scriptver}\n";
print " raster scripts ${raster_scriptver}\n" if ( $OPT_WITH_RASTER );
print " GEOS: $geosver\n" if $geosver;
print " PROJ: $projver\n" if $projver;
print " SFCGAL: $sfcgalver\n" if $sfcgalver;
print " GDAL: $gdalver\n" if $gdalver;
# allow hook scripts to perform arbitrary reports via output of INFO strings
system("grep INFO $REGRESS_LOG | sed 's/INFO://'");
##################################################################
# Run the tests
##################################################################
print "\nRunning tests\n\n";
foreach $TEST (@ARGV)
{
my $TEST_OBJ_COUNT_PRE;
my $TEST_OBJ_COUNT_POST;
my $TEST_START_TIME;
if ( "${TEST}" eq '-' )
{
my $scriptdir = scriptdir($libver, $OPT_EXTENSIONS);
print "-- Entering interactive shell --\n";
# TODO: add more variables?
my $cmd = "psql -Xq"
. " -v \"regdir=$REGDIR\""
. " -v \"top_builddir=$TOP_BUILDDIR\""
. " -v \"scriptdir=$scriptdir\""
. " -v \"schema=$OPT_SCHEMA.\""
# TODO: inject search_path somehow
#. " -c \"SET search_path TO public,$OPT_SCHEMA,topology\""
. " ${DB}"
;
my $rv = system($cmd);
print "-- Moving on with tests, if any --\n";
next;
}
# catch a common mistake (strip trailing .sql)
$TEST =~ s/.sql$//;
foreach my $hook (@OPT_HOOK_BEFORE_TEST)
{
print " Running before-test-script $hook\n" if $VERBOSE > 1;
die unless load_sql_file($hook, 1);
}
start_test($TEST);
$TEST_OBJ_COUNT_PRE = count_postgis_objects();
# Check for a "-pre.pl" file in case there are setup commands
unless ( eval_file("${TEST}-pre.pl") )
{
chop($@);
fail("Failed evaluating ${TEST}-pre.pl: $@");
next;
}
# Check for a "-pre.sql" file in case there is setup SQL needed before
# the test can be run.
if ( -r "${TEST}-pre.sql" )
{
run_simple_sql("${TEST}-pre.sql");
show_progress();
}
# Check .dbf *before* .sql as loader test could
# create the .sql
# Check for .dbf not just .shp since the loader can load
# .dbf files without a .shp.
$TEST_START_TIME = time;
if ( -r "${TEST}.dbf" )
{
pass("in ".int(1000*(time-$TEST_START_TIME))." ms") if ( run_loader_test() );
}
elsif ( -r "${TEST}.tif" )
{
my $rv = run_raster_loader_test("${TEST}.tif");
pass("in ".int(1000*(time-$TEST_START_TIME))." ms") if $rv;
}
elsif ( -r "${TEST}.tif.ref" )
{
open(REF, "${TEST}.tif.ref");
my $raster_ref = <REF>;
close(REF);
chop $raster_ref;
#print "Raster ref: [$raster_ref]\n";
# Resolve raster_ref relative to ${TEST} dirname
my $raster_path = dirname(${TEST}) . '/' . $raster_ref;
#print "Raster path: [$raster_path]\n";
my $rv = run_raster_loader_test($raster_path);
pass("in ".int(1000*(time-$TEST_START_TIME))." ms") if $rv;
}
elsif ( -r "${TEST}.sql" )
{
my $rv = run_simple_test("${TEST}.sql", "${TEST}_expected");
pass("in ".int(1000*(time-$TEST_START_TIME))." ms") if $rv;
}
elsif ( -r "${TEST}.dmp" )
{
pass("in ".int(1000*(time-$TEST_START_TIME))." ms") if run_dumper_test();
}
else
{
print " skipped (can't read any ${TEST}.{sql,dbf,tif,dmp})\n";
$SKIP++;
# Even though we skipped this test, we will still run the cleanup
# scripts
}
if ( -r "${TEST}-post.sql" )
{
my $rv = run_simple_sql("${TEST}-post.sql");
if ( ! $rv )
{
print " ... but cleanup sql failed!";
}
}
# Check for a "-post.pl" file in case there are teardown commands
eval_file("${TEST}-post.pl");
$TEST_OBJ_COUNT_POST = count_postgis_objects();
if ( $TEST_OBJ_COUNT_POST != $TEST_OBJ_COUNT_PRE )
{
fail("PostGIS object count pre-test ($TEST_OBJ_COUNT_POST) != post-test ($TEST_OBJ_COUNT_PRE)");
}
foreach my $hook (@OPT_HOOK_AFTER_TEST)
{
print " Running after-test-script $hook\n" if $VERBOSE > 1;
die unless load_sql_file($hook, 1);
}
}
foreach my $hook (@OPT_HOOK_BEFORE_UNINSTALL)
{
start_test("before-uninstall-script $hook");
show_progress();
pass() if load_sql_file($hook, 1);
}
###################################################################
# Uninstall postgis (serves as an uninstall test)
##################################################################
# We only test uninstall if we've been asked to drop
# and we did create
# and nobody requested raster or topology
# (until they have an uninstall script themself)
if ( (! $OPT_NODROP) && $OBJ_COUNT_PRE > 0 )
{
uninstall_spatial();
}
##################################################################
# Summary report
##################################################################
print "\nRun tests: $RUN\n";
print "Failed: $FAIL\n";
if ( $OPT_CLEAN )
{
rmtree($TMPDIR);
}
if ( ! ($OPT_NODROP || $OPT_NOCREATE) )
{
system("dropdb $DB");
}
else
{
print "Drop database ${DB} manually\n";
}
# Set the locale back to the original
$ENV{"LC_ALL"} = $ORIG_LC_ALL;
$ENV{"LANG"} = $ORIG_LANG;
exit($FAIL);
##################################################################
# Utility functions
#
sub usage
{
die qq{
Usage: $0 [<options>] <testname> [<testname>]
Options:
-v, --verbose be verbose about failures
--nocreate do not create the regression database on start
--upgrade upgrade db before running tests, can be passed
multiple times to perform multiple upgrades.
--upgrade-path upgrade path, format <from>--<to>.
<from> can be specified as "unpackaged<version>"
to specify a script version to start from.
<to> can be specified as ":auto" to request
upgrades to default version, and be appended
an exclamation mark (ie: ":auto!" or "3.0.0!") to
request upgrade via postgis_extensions_upgrade()
if available.
--dumprestore dump and (after upgrade, if --upgrade is given)
restore spatially-enabled db before running tests
--nodrop do not drop the regression database on exit
--schema where to install/find PostGIS (relocatable) PostGIS
(defaults to "public")
--raster load also raster extension
--tiger load also tiger_geocoder extension
--topology load also topology extension
--sfcgal use also sfcgal backend
--clean cleanup test logs on exit
--expect save obtained output as expected
--extension load using extensions
--legacy load also legacy scripts
--build-dir <path>
specify where to find the top build dir of PostGIS,
to find binaries and scripts
--after-create-script <path>
script to load after spatial db creation
(multiple switches supported, to be run in given order)
--after-create-db-script <path>
script to load after db creation
(multiple switches supported, to be run in given order)
--before-uninstall-script <path>
script to load before spatial extension uninstall
(multiple switches supported, to be run in given order)
--before-dump-script <path>
script to load before dump, if --dumprestore is given
(multiple switches supported, to be run in given order)
--after-restore-script <path>
script to load after restore, if --dumprestore is given
(multiple switches supported, to be run in given order)
--before-upgrade-script <path>
script to load before upgrade
(multiple switches supported, to be run in given order)
--after-upgrade-script <path>
script to load after upgrade
(multiple switches supported, to be run in given order)
--before-test-script <path>
script to load before each test run
(multiple switches supported, to be run in given order)
--after-test-script <path>
script to load after each test run
(multiple switches supported, to be run in given order)
Environment Variables:
POSTGIS_REGRESS_DB
Name of database to create and use for regression tests.
Defaults to "postgis_reg"
POSTGIS_REGRESS_DB_OWNER
PostgreSQL role to become owner of the regress db.
Defaults to connecting user (determined by libpq env
variables)
POSTGIS_REGRESS_ROLE_EXT_CREATOR
PostgreSQL role to switch to for creating/upgrading the
postgis extensions. Defaults to POSTGIS_REGRESS_DB_OWNER
POSTGIS_REGRESS_DIR
Base directory of regress tests. Defaults to
name of directory containing this script.
};
}
# start_test <name>
sub start_test
{
my $test = shift;
my $abstest = abs_path($test);
if ( defined($abstest) )
{
$test = $abstest;
}
$test =~ s|${ABS_TOP_SOURCEDIR}/||;
print " $test ";
$RUN++;
show_progress();
}
# Print a entry
sub echo_inline
{
my $msg = shift;
print $msg;
}
# Print a single dot
sub show_progress
{
print ".";
}
# pass <msg>
sub pass
{
my $msg = shift;
printf(" ok %s\n", $msg);
}
# fail <msg> <log>
sub fail
{
my $msg = shift;
my $log = shift;
if ( ! $log )
{
printf(" failed (%s)\n", $msg);
}
elsif ( $VERBOSE )
{
printf(" failed (%s: %s)\n", $msg, $log);
print "-----------------------------------------------------------------------------\n";
open(LOG, "$log") or die "Cannot open log file $log\n";
print while(<LOG>);
close(LOG);
print "-----------------------------------------------------------------------------\n";
}
else
{
printf(" failed (%s: %s)\n", $msg, $log);
}
$FAIL++;
}
##################################################################
# run_simple_sql
# Run an sql script and hide results unless it fails.
# SQL input file name is $1
##################################################################
sub run_simple_sql
{
my $sql = shift;
if ( ! -r $sql )
{
fail("can't read $sql");
return 0;
}
# Dump output to a temp file.
my $tmpfile = sprintf("%s/test_%s_tmp", $TMPDIR, $RUN);
my $cmd = "psql -v \"VERBOSITY=terse\" "
. " -v \"regdir=$REGDIR\""
. " -v \"top_builddir=$TOP_BUILDDIR\""
. " -tXAq $DB < $sql > $tmpfile 2>&1";
#print($cmd);
my $rv = system($cmd);
# Check if psql errored out.
if ( $rv != 0 )
{
fail("Unable to run sql script $sql", $tmpfile);
return 0;
}
# Check for ERROR lines
open FILE, "$tmpfile";
my @lines = <FILE>;
close FILE;
my @errors = grep(/^ERROR/, @lines);
if ( @errors > 0 )
{
fail("Errors while running sql script $sql", $tmpfile);
return 0;
}
unlink $tmpfile;
return 1;
}
sub drop_table
{
my $tblname = shift;
my $cmd = "psql -tXAq -d $DB -c \"DROP TABLE IF EXISTS $tblname\" >> $REGRESS_LOG 2>&1";
my $rv = system($cmd);
die "Could not run: $cmd\n" if $rv;
}
sub sql
{
my $sql = shift;
# TODO: capture or discard stderr ?
my $result = `psql -qtXA -d $DB -c 'SET search_path TO public,$OPT_SCHEMA' -c "$sql" | sed '/^SET\$/d'`;
$result =~ s/[\n\r]*$//;
$result;
}
sub eval_file
{
my $file = shift;
my $pl;
if ( -r $file )
{
do $file or return 0;
#system($^X, $file) == 0 or return 0;
}
1;
}
##################################################################
# run_simple_test
# Run an sql script and compare results with the given expected output
# SQL input is ${TEST}.sql, expected output is {$TEST}_expected
##################################################################
sub run_simple_test
{
my $sql = shift;
my $expected = shift;
my $msg = shift;
if ( ! -r "$sql" )
{
fail("can't read $sql");
return 0;
}
if ( ! $OPT_EXPECT )
{
if ( ! -r "$expected" )
{
fail("can't read $expected");
return 0;
}
}
show_progress();
my $outfile = sprintf("%s/test_%s_out", $TMPDIR, $RUN);
my $betmpdir = sprintf("%s/pgis_reg_tmp/", $TMPDIR);
my $tmpfile = sprintf("%s/test_%s_tmp", $betmpdir, $RUN);
my $diffile = sprintf("%s/test_%s_diff", $TMPDIR, $RUN);
mkpath($betmpdir);
chmod 0777, $betmpdir;
my $scriptdir = scriptdir($libver, $OPT_EXTENSIONS);
my ($sqlfile,$sqldir) = fileparse($sql);
my $cmd = "cd $sqldir; psql -v \"VERBOSITY=terse\""
. " -v \"tmpfile='$tmpfile'\""
. " -v \"scriptdir=$scriptdir\""
. " -v \"regdir=$REGDIR\""
. " -v \"top_builddir=$TOP_BUILDDIR\""
. " -v \"schema=$OPT_SCHEMA.\""
. " -c \"SET search_path TO public,$OPT_SCHEMA,topology\""
. " -tXAq -f $sqlfile $DB > $outfile 2>&1";
my $rv = system($cmd);
if ( $rv ) {
fail "psql exited with an error", $outfile;
die;
}
# Check for ERROR lines
open(FILE, "$outfile");
my @lines = <FILE>;
close(FILE);
# Strip the lines we don't care about
@lines = grep(!/^\s+$/, @lines);
# Morph values into expected forms
for ( my $i = 0; $i < @lines; $i++ )
{
$lines[$i] =~ s/Infinity/inf/g;
$lines[$i] =~ s/Inf/inf/g;
$lines[$i] =~ s/1\.#INF/inf/g;
$lines[$i] =~ s/[eE]([+-])0+(\d+)/e$1$2/g;
$lines[$i] =~ s/Self-intersection .*/Self-intersection/;
$lines[$i] =~ s/^ROLLBACK/COMMIT/;
$lines[$i] =~ s/^psql.*(NOTICE|WARNING|ERROR):/\1:/g;
}
# Write out output file
open(FILE, ">$outfile");
foreach my $l (@lines)
{
print FILE $l;
}
close(FILE);
# Clean up interim stuff
#remove_tree($betmpdir);
if ( $OPT_EXPECT )
{
print " (expected)";
copy($outfile, $expected);
}
else
{
my $diff = diff($expected, $outfile);
if ( $diff )
{
open(FILE, ">$diffile");
print FILE $diff;
close(FILE);
fail("${msg}diff expected obtained", $diffile);
return 0;
}
else
{
unlink $outfile;
return 1;
}
}
return 1;
}
##################################################################
# This runs the loader once and checks the output of it.
# It will NOT run if neither the expected SQL nor the expected
# select results file exists, unless you pass true for the final
# parameter.
#
# $1 - Description of this run of the loader, used for error messages.
# $2 - Table name to load into.
# $3 - The name of the file containing what the
# SQL generated by shp2pgsql should look like.
# $4 - The name of the file containing the expected results of
# SELECT geom FROM _tblname should look like.
# $5 - Command line options for shp2pgsql.
# $6 - If you pass true, this will run the loader even if neither
# of the expected results files exists (though of course
# the results won't be compared with anything).
##################################################################
sub run_loader_and_check_output
{
my $description = shift;
my $tblname = shift;
my $expected_sql_file = shift;
my $expected_select_results_file = shift;
my $loader_options = shift;
my $run_always = shift;
my ( $cmd, $rv );
my $outfile = "${TMPDIR}/loader.out";
my $errfile = "${TMPDIR}/loader.err";
# ON_ERROR_STOP is used by psql to return non-0 on an error
my $psql_opts = " --quiet --no-psqlrc --variable ON_ERROR_STOP=true";
if ( $run_always || -r $expected_sql_file || -r $expected_select_results_file )
{
show_progress();
# Produce the output SQL file.
$cmd = shp2pgsql() . " $loader_options -g the_geom ${TEST}.shp $tblname > $outfile 2> $errfile";
$rv = system($cmd);
if ( $rv )
{
fail(" $description: running $cmd", "$errfile");
return 0;
}
# Compare the output SQL file with the expected if there is one.
if ( -r $expected_sql_file )
{
show_progress();
my $diff = diff($expected_sql_file, $outfile);
if ( $diff )
{
fail(" $description: actual SQL does not match expected.", "$outfile");
return 0;
}
}
# Run the loader SQL script.
show_progress();
$cmd = "psql $psql_opts -f $outfile $DB > $errfile 2>&1";
$rv = system($cmd);
if ( $rv )
{
fail(" $description: running shp2pgsql output","$errfile");
return 0;
}
# Run the select script (if there is one)
if ( -r "${TEST}.select.sql" )
{
$rv = run_simple_test("${TEST}.select.sql",$expected_select_results_file, $description);
return 0 if ( ! $rv );
}
}
return 1;
}
##################################################################
# This runs the dumper once and checks the output of it.
# It will NOT run if the expected shp file does not exist, unless
# you pass true for the final parameter.
#
# $1 - Description of this run of the dumper, used for error messages.
# $2 - Table name to dump from.
# $3 - "Expected" .shp file to compare with.
# $4 - If you pass true, this will run the loader even if neither
# of the expected results files exists (though of course
# the results won't be compared with anything).
##################################################################
sub run_dumper_and_check_output
{
my $description = shift;
my $tblname = shift;
my $expected_shp_file = shift;
my $run_always = shift;
my ($cmd, $rv);
my $errfile = "${TMPDIR}/dumper.err";
if ( $run_always || -r $expected_shp_file )
{
show_progress();
$cmd = pgsql2shp() . " -f ${TMPDIR}/dumper $DB $tblname > $errfile 2>&1";
$rv = system($cmd);
if ( $rv )
{
fail("$description: dumping loaded table", $errfile);
return 0;
}
# Compare with expected output if there is any.
if ( -r $expected_shp_file )
{
show_progress();
my $diff = diff($expected_shp_file, "$TMPDIR/dumper.shp");
if ( $diff )
{
# ls -lL "${TMPDIR}"/dumper.shp "$_expected_shp_file" > "${TMPDIR}"/dumper.diff
fail("$description: dumping loaded table", "${TMPDIR}/dumper.diff");
return 0;
}
}
}
return 1;
}
##################################################################
# This runs the loader once and checks the output of it.
# It will NOT run if neither the expected SQL nor the expected
# select results file exists, unless you pass true for the final
# parameter.
#
# $1 - Description of this run of the loader, used for error messages.
# $2 - Table name to load into.
# $3 - The name of the file containing what the
# SQL generated by shp2pgsql should look like.
# $4 - The name of the file containing the expected results of
# SELECT rast FROM _tblname should look like.
# $5 - Command line options for raster2pgsql.
# $6 - If you pass true, this will run the loader even if neither
# of the expected results files exists (though of course
# the results won't be compared with anything).
##################################################################
sub run_raster_loader_and_check_output
{
my $description = shift;
my $raster_file = shift;
my $tblname = shift;
my $expected_sql_file = shift;
my $expected_select_results_file = shift;
my $loader_options = shift;
my $run_always = shift;
# ON_ERROR_STOP is used by psql to return non-0 on an error
my $psql_opts="--no-psqlrc --variable ON_ERROR_STOP=true";
my ($cmd, $rv);
my $outfile = "${TMPDIR}/loader.out";
my $errfile = "${TMPDIR}/loader.err";
if ( $run_always || -r $expected_sql_file || -r $expected_select_results_file )
{
show_progress();
# Produce the output SQL file.
$cmd = raster2pgsql() . " $loader_options $raster_file $tblname > $outfile 2> $errfile";
$rv = system($cmd);
if ( $rv )
{
fail("$description: running raster2pgsql", $errfile);
return 0;
}
if ( -r $expected_sql_file )
{
show_progress();
my $diff = diff($expected_sql_file, $outfile);
if ( $diff )
{
fail(" $description: actual SQL does not match expected.", "$outfile");
return 0;
}
}
# Run the loader SQL script.
show_progress();
$cmd = "psql $psql_opts -f $outfile $DB > $errfile 2>&1";
$rv = system($cmd);
if ( $rv )
{
fail(" $description: running raster2pgsql output","$errfile");
return 0;
}
# Run the select script (if there is one)
if ( -r "${TEST}.select.sql" )
{
$rv = run_simple_test("${TEST}.select.sql",$expected_select_results_file, $description);
return 0 if ( ! $rv );
}
}
return 1;
}
##################################################################
# run_loader_test
#
# Load a shapefile with different methods, create a 'select *' SQL
# test and run simple test with provided expected output.
#
# SHP input is ${TEST}.shp, expected output is {$TEST}.expected
##################################################################
sub run_loader_test
{
# See if there is a custom command-line options file
my $opts_file = "${TEST}.opts";
my $custom_opts="";
if ( -r $opts_file )
{
open(FILE, $opts_file);
my @opts;
while (<FILE>) {
next if /^\s*#/;
chop;
s/{regdir}/$REGDIR/;
push @opts, $_;
}
close(FILE);
$custom_opts = join(" ", @opts);
}
my $tblname="loadedshp";
# If we have some expected files to compare with, run in wkt mode.
if ( ! run_loader_and_check_output("wkt test", $tblname, "${TEST}-w.sql.expected", "${TEST}-w.select.expected", "-w $custom_opts") )
{
drop_table($tblname) unless $OPT_NODROP;
return 0;
}
drop_table($tblname);
# If we have some expected files to compare with, run in geography mode.
if ( ! run_loader_and_check_output("geog test", $tblname, "${TEST}-G.sql.expected", "${TEST}-G.select.expected", "-G $custom_opts") )
{
drop_table($tblname) unless $OPT_NODROP;
return 0;
}
# If we have some expected files to compare with, run the dumper and compare shape files.
if ( ! run_dumper_and_check_output("dumper geog test", $tblname, "${TEST}-G.shp.expected") )
{
drop_table($tblname) unless $OPT_NODROP;
return 0;
}
drop_table($tblname);
# Always run in wkb ("normal") mode, even if there are no expected files to compare with.
if( ! run_loader_and_check_output("wkb test", $tblname, "${TEST}.sql.expected", "${TEST}.select.expected", "$custom_opts", "true") )
{
drop_table($tblname) unless $OPT_NODROP;
return 0;
}
# If we have some expected files to compare with, run the dumper and compare shape files.
if( ! run_dumper_and_check_output("dumper wkb test", $tblname, "${TEST}.shp.expected") )
{
drop_table($tblname) unless $OPT_NODROP;
return 0;
}
drop_table($tblname);
# Some custom parameters can be incompatible with -D.
if ( $custom_opts )
{
# If we have some expected files to compare with, run in wkt dump mode.
if ( ! run_loader_and_check_output("wkt dump test", $tblname, "${TEST}-wD.sql.expected") )
{
drop_table($tblname) unless $OPT_NODROP;
return 0;
}
drop_table($tblname);
# If we have some expected files to compare with, run in wkt dump mode.
if ( ! run_loader_and_check_output("geog dump test", $tblname, "${TEST}-GD.sql.expected") )
{
drop_table($tblname) unless $OPT_NODROP;
return 0;
}
drop_table($tblname);
# If we have some expected files to compare with, run in wkb dump mode.
if ( ! run_loader_and_check_output("wkb dump test", $tblname, "${TEST}-D.sql.expected") )
{
drop_table($tblname) unless $OPT_NODROP;
return 0;
}
drop_table($tblname);
}
return 1;
}
##################################################################
# run_dumper_test
#
# Run dumper and compare output with various expectances
# test and run simple test with provided expected output.
#
# input is ${TEST}.dmp, where first line is considered to be the
# [table|query] argument for pgsql2shp and all the next lines,
# if any are options.
#
##################################################################
sub run_dumper_test
{
my $dump_file = "${TEST}.dmp";
# ON_ERROR_STOP is used by psql to return non-0 on an error
my $psql_opts="--no-psqlrc --variable ON_ERROR_STOP=true";
my $shpfile = "${TMPDIR}/dumper-" . basename(${TEST}) . "-shp";
my $outfile = "${TMPDIR}/dumper-" . basename(${TEST}) . ".out";
my $errfile = "${TMPDIR}/dumper-" . basename(${TEST}) . ".err";
# Produce the output SHP file.
open DUMPFILE, "$dump_file" or die "Cannot open dump file $dump_file\n";
my @dumplines = <DUMPFILE>;
close DUMPFILE;
chomp(@dumplines);
my $dumpstring = shift @dumplines;
@dumplines = map { local $_ = $_; s/{regdir}/$REGDIR/; $_ } @dumplines;
my @cmd = ( pgsql2shp(), "-f", ${shpfile});
push @cmd, @dumplines;
push @cmd, ${DB};
push @cmd, $dumpstring;
#print "CMD: " . join (' ', @cmd) . "\n";
open my $stdout_save, '>&', *STDOUT or die "Cannot dup stdout\n";
open my $stderr_save, '>&', *STDERR or die "Cannot dup stdout\n";
open STDOUT, ">${outfile}" or die "Cannot write to ${outfile}\n";
open STDERR, ">${errfile}" or die "Cannot write to ${errfile}\n";
my $rv = system(@cmd);
open STDERR, '>&', $stderr_save;
open STDOUT, '>&', $stdout_save;
show_progress();
if ( $rv )
{
fail("dumping", "$errfile");
return 0;
}
my $numtests = 0;
foreach my $ext ("shp","prj","dbf","shx") {
my $obtained = ${shpfile}.".".$ext;
my $expected = ${TEST}."_expected.".$ext;
if ( $OPT_EXPECT )
{
copy($obtained, $expected);
}
elsif ( -r ${expected} ) {
show_progress();
$numtests++;
my $diff = diff($expected, $obtained);
if ( $diff )
{
my $diffile = sprintf("%s/dumper_test_%s_diff", $TMPDIR, $ext);
open(FILE, ">$diffile");
print FILE $diff;
close(FILE);
fail("diff expected obtained", $diffile);
return 0;
}
}
}
#show_progress();
if ( $OPT_EXPECT ) {
print " (expected)";
}
elsif ( ! $numtests ) {
fail("no expectances!");
return 0;
}
return 1;
}
##################################################################
# run_raster_loader_test
##################################################################
sub run_raster_loader_test
{
my $raster_file = shift;
# See if there is a custom command-line options file
my $opts_file = "${TEST}.opts";
my $custom_opts="";
if ( -r $opts_file )
{
my $regdir = abs_path(dirname(${TEST}));
open(FILE, $opts_file);
my @opts;
while (<FILE>) {
next if /^\s*#/;
chop;
s/{regdir}/$regdir/;
push @opts, $_;
}
close(FILE);
$custom_opts = join(" ", @opts);
}
my $tblname="loadedrast";
# If we have some expected files to compare with, run in geography mode.
if ( ! run_raster_loader_and_check_output("test", $raster_file, $tblname, "${TEST}.sql.expected", "${TEST}.select.expected", $custom_opts, "true") )
{
return 0;
}
drop_table($tblname);
return 1;
}
##################################################################
# Count database objects
##################################################################
sub count_db_objects
{
my $count = sql("WITH counts as (
select count(*) from pg_type union all
select count(*) from pg_proc union all
select count(*) from pg_cast union all
select count(*) from pg_aggregate union all
select count(*) from pg_operator union all
select count(*) from pg_opclass union all
select count(*) from pg_namespace
where nspname NOT LIKE 'pg_%'
and nspname != '${OPT_SCHEMA}'
union all
select count(*) from pg_opfamily
)
select sum(count) from counts");
return $count;
}
##################################################################
# Count postgis objects
##################################################################
sub count_postgis_objects
{
my $count = sql("WITH counts as (
select count(*) from spatial_ref_sys
)
select sum(count) from counts");
return $count;
}
##################################################################
# Create the spatial database
##################################################################
sub create_db
{
my $createcmd = "createdb --encoding=UTF-8 --template=template0 --lc-collate=C";
if ( $pgvernum ge 150000 ) {
$createcmd .= " --locale=C --locale-provider=libc";
}
if ( $DB_OWNER ) {
$createcmd .= " --owner $DB_OWNER";
}
$createcmd .= " $DB > $REGRESS_LOG 2>&1";
return 0 if system($createcmd);
foreach my $hook (@OPT_HOOK_AFTER_CREATE_DB)
{
print "Running after-create-db-script $hook\n";
die unless load_sql_file($hook, 1);
}
return 1;
}
sub create_spatial
{
my ($cmd, $rv);
print "Creating database '$DB'.\n";
$rv = create_db();
# Count database objects before installing anything
$OBJ_COUNT_PRE = count_db_objects();
if ( $OPT_EXTENSIONS )
{
exit($FAIL) unless prepare_spatial_extensions();
}
else
{
if ( ! $OPT_UPGRADE_FROM )
{
exit($FAIL) unless prepare_spatial();
return 1;
}
if ( $OPT_UPGRADE_FROM !~ /^unpackaged(.*)/ )
{
die "--upgrade-path without --extension is only supported with source unpackaged*";
}
if ( $OPT_UPGRADE_TO != ':auto' )
{
die "--upgrade-path without --extension is only supported with target :auto";
}
exit($FAIL) unless prepare_spatial($1);
}
return 1;
}
sub load_sql_file
{
my $file = shift;
my $strict = shift;
my $werror = shift;
my $tmplog = ${REGRESS_LOG} . '.tmp';
if ( -e $file )
{
# ON_ERROR_STOP is used by psql to return non-0 on an error
my $psql_opts = "--quiet --no-psqlrc --variable ON_ERROR_STOP=true";
my $cmd = "psql $psql_opts -c 'CREATE SCHEMA IF NOT EXISTS $OPT_SCHEMA' ";
$cmd .= "-c 'SET search_path TO $OPT_SCHEMA,topology'";
$cmd .= " -v \"opt_dumprestore=${OPT_DUMPRESTORE}\"";
$cmd .= " -v \"regdir=$REGDIR\"";
$cmd .= " -Xf $file $DB > $tmplog 2>&1";
#print " $file\n" if $VERBOSE;
my $rv = system($cmd);
if ( $rv )
{
fail "Error encountered loading $file", $tmplog;
return 0;
}
if ( $werror )
{
if ( system("grep -A3 WARNING $tmplog") == 0 )
{
fail "Warnings encountered loading $file", $tmplog;
return 0;
}
}
system("cat $tmplog >> $REGRESS_LOG");
}
elsif ( $strict )
{
fail "Unable to find $file";
return 0;
}
return 1;
}
# Prepare the database for spatial operations (extension method)
sub prepare_spatial_extensions
{
# ON_ERROR_STOP is used by psql to return non-0 on an error
my $psql_opts = "--no-psqlrc --variable ON_ERROR_STOP=true";
if ( $DB_ROLE_EXT_MKR ) {
print "Using role '$DB_ROLE_EXT_MKR' for spatial extensions creation.\n";
$psql_opts .= " -c \"set role='$DB_ROLE_EXT_MKR'\"";
}
my $sql = "CREATE SCHEMA IF NOT EXISTS ${OPT_SCHEMA}";
my $cmd = "psql $psql_opts -c \"". $sql . "\" $DB >> $REGRESS_LOG 2>&1";
my $rv = system($cmd);
if ( $rv ) {
fail "Error encountered creating target schema ${OPT_SCHEMA}", $REGRESS_LOG;
return 0;
}
my $sql = "CREATE EXTENSION postgis";
if ( $OPT_UPGRADE_FROM ) {
if ( $OPT_UPGRADE_FROM =~ /^unpackaged(.*)/ ) {
return prepare_spatial($1);
}
$sql .= " VERSION '" . $OPT_UPGRADE_FROM . "'";
}
$sql .= " SCHEMA " . $OPT_SCHEMA;
print "Preparing db '${DB}' using: ${sql}\n";
my $cmd = "psql $psql_opts -c \"". $sql . "\" $DB >> $REGRESS_LOG 2>&1";
my $rv = system($cmd);
if ( $rv ) {
fail "Error encountered creating EXTENSION POSTGIS", $REGRESS_LOG;
return 0;
}
if ( $OPT_WITH_TOPO )
{
my $sql = "CREATE EXTENSION postgis_topology";
if ( $OPT_UPGRADE_FROM ) {
$sql .= " VERSION '" . $OPT_UPGRADE_FROM . "'";
}
print "Preparing db '${DB}' using: ${sql}\n";
$cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
if ( $rv ) {
fail "Error encountered creating EXTENSION POSTGIS_TOPOLOGY", $REGRESS_LOG;
return 0;
}
}
if ( $OPT_WITH_TIGER )
{
my $sql = "CREATE EXTENSION postgis_tiger_geocoder CASCADE";
if ( $OPT_UPGRADE_FROM ) {
$sql .= " VERSION '" . $OPT_UPGRADE_FROM . "'";
}
print "Preparing db '${DB}' using: ${sql}\n";
$cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
if ( $rv ) {
fail "Error encountered creating EXTENSION POSTGIS_TIGER_GEOCODER", $REGRESS_LOG;
return 0;
}
}
my $extver = $OPT_UPGRADE_FROM ? $OPT_UPGRADE_FROM : $OPT_UPGRADE_TO ? $OPT_UPGRADE_TO : $defextver;
if ( $OPT_WITH_RASTER && has_split_raster_ext($extver) )
{
my $sql = "CREATE EXTENSION postgis_raster";
if ( $OPT_UPGRADE_FROM ) {
$sql .= " VERSION '" . $OPT_UPGRADE_FROM . "'";
}
$sql .= " SCHEMA " . $OPT_SCHEMA;
print "Preparing db '${DB}' using: ${sql}\n";
$cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
if ( $rv ) {
fail "Error encountered creating EXTENSION POSTGIS_RASTER", $REGRESS_LOG;
return 0;
}
}
if ( $OPT_WITH_SFCGAL )
{
{
my $sql = "CREATE EXTENSION postgis_sfcgal";
if ( $OPT_UPGRADE_FROM ) {
if ( semver_lessthan($OPT_UPGRADE_FROM, "2.2.0") )
{
print "NOTICE: skipping SFCGAL extension create "
. "as not available in version '$OPT_UPGRADE_FROM'\n";
last;
}
$sql .= " VERSION '" . $OPT_UPGRADE_FROM . "'";
}
$sql .= " SCHEMA " . $OPT_SCHEMA;
print "Preparing db '${DB}' using: ${sql}\n";
$cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
if ( $rv ) {
fail "Error encountered creating EXTENSION POSTGIS_SFCGAL", $REGRESS_LOG;
return 0;
}
}
}
return 1;
}
# Prepare the database for spatial operations (old method)
sub prepare_spatial
{
my $version = shift;
my $werror = defined ($version) ? 0 : 1; # threat warnings as errors
my $scriptdir = scriptdir($version);
print "Loading PostGIS in '${DB} using scripts from $scriptdir'\n";
# Load postgis.sql into the database
return 0 unless load_sql_file("${scriptdir}/postgis.sql", 1, $werror);
return 0 unless load_sql_file("${scriptdir}/postgis_comments.sql", 0, $werror);
return 0 unless load_sql_file("${scriptdir}/spatial_ref_sys.sql", 0, $werror);
if ( $OPT_LEGACY )
{
print "Loading legacy.sql from $scriptdir\n";
return 0 unless load_sql_file("${scriptdir}/legacy.sql", 0, $werror);
}
if ( $OPT_WITH_TOPO )
{
print "Loading Topology into '${DB}'\n";
return 0 unless load_sql_file("${scriptdir}/topology.sql", 1, $werror);
return 0 unless load_sql_file("${scriptdir}/topology_comments.sql", 0, $werror);
}
if ( $OPT_WITH_RASTER )
{
print "Loading Raster into '${DB}'\n";
return 0 unless load_sql_file("${scriptdir}/rtpostgis.sql", 1, $werror);
return 0 unless load_sql_file("${scriptdir}/raster_comments.sql", 0, $werror);
}
if ( $OPT_WITH_SFCGAL )
{
print "Loading SFCGAL into '${DB}'\n";
return 0 unless load_sql_file("${scriptdir}/sfcgal.sql", 1, $werror);
return 0 unless load_sql_file("${scriptdir}/sfcgal_comments.sql", 0, $werror);
}
return 1;
}
sub upgrade_extension_sql
{
my ($extname, $from, $to) = @_;
my $sql = '';
if ( "${libver}" eq "${to}" ) {
if ( semver_lessthan($to, "3.4.0") ) {
$sql .= "ALTER EXTENSION $extname UPDATE TO '${to}next'; ";
} else {
$sql .= "ALTER EXTENSION $extname UPDATE TO 'ANY'; ";
}
}
$sql .= "ALTER EXTENSION $extname UPDATE TO '${to}'";
return $sql;
}
sub package_extension_sql
{
my ($extname, $extver) = @_;
my $sql;
if ( $pgvernum lt 130000 ) {
$sql = "CREATE EXTENSION IF NOT EXISTS ${extname} VERSION '${extver}' FROM unpackaged;";
} else {
$sql = "CREATE EXTENSION IF NOT EXISTS ${extname} VERSION unpackaged;";
$sql .= "ALTER EXTENSION ${extname} UPDATE TO '${extver}'";
}
return $sql;
}
# Upgrade an existing database (soft upgrade)
sub upgrade_spatial
{
my $version = shift;
my $scriptdir = scriptdir($version);
print "Upgrading PostGIS in '${DB}' using scripts from $scriptdir\n" ;
my $script = "${STAGED_SCRIPTS_DIR}/postgis_upgrade.sql";
print "Upgrading core\n";
return 0 unless load_sql_file($script, 1);
if ( $OPT_WITH_TOPO )
{
$script = "${STAGED_SCRIPTS_DIR}/topology_upgrade.sql";
print "Upgrading topology\n";
return 0 unless load_sql_file($script, 1);
}
if ( $OPT_WITH_RASTER )
{
$script = "${STAGED_SCRIPTS_DIR}/rtpostgis_upgrade.sql";
print "Upgrading raster\n";
return 0 unless load_sql_file($script, 1);
}
if ( $OPT_WITH_SFCGAL )
{
$script = "${STAGED_SCRIPTS_DIR}/sfcgal_upgrade.sql";
print "Upgrading sfcgal\n";
return 0 unless load_sql_file($script, 1);
}
return 1;
}
# Upgrade an existing database (soft upgrade, extension method)
sub upgrade_spatial_extensions
{
# ON_ERROR_STOP is used by psql to return non-0 on an error
my $psql_opts = "--no-psqlrc --variable ON_ERROR_STOP=true";
my $sql;
my $upgrade_via_function = 0;
if ( $DB_ROLE_EXT_MKR ) {
print "Using role '$DB_ROLE_EXT_MKR' for spatial extensions upgrade.\n";
$psql_opts .= " -c \"set role='$DB_ROLE_EXT_MKR'\"";
}
if ( $OPT_UPGRADE_TO =~ /!$/ )
{
$OPT_UPGRADE_TO =~ s/!$//;
my $from = $OPT_UPGRADE_FROM;
$from =~ s/^unpackaged//;
if ( ! $from || ! semver_lessthan($from, "3.0.0") )
{
$upgrade_via_function = 1;
}
else
{
print "WARNING: postgis_extensions_upgrade()".
" not available or functional in version $from.".
" We'll use manual upgrade.\n";
}
}
if ( $OPT_UPGRADE_TO =~ /^:auto/ )
{
$OPT_UPGRADE_TO = $defextver;
}
my $nextver = $OPT_UPGRADE_TO ? "${OPT_UPGRADE_TO}" : "${libver}";
if ( $upgrade_via_function )
{
# TODO: pass ${nextver} if supported by OPT_UPGRADE_FROM ?
$sql = "SELECT postgis_extensions_upgrade()";
}
elsif ( $OPT_UPGRADE_FROM =~ /^unpackaged/ )
{
$sql = package_extension_sql('postgis', ${nextver});
}
else
{
$sql = upgrade_extension_sql('postgis', ${libver}, ${nextver});
}
print "Upgrading PostGIS in '${DB}' using: ${sql}\n" ;
my $cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
#print "CMD: " . $cmd . "\n";
my $rv = system($cmd);
if ( $rv ) {
fail "Error encountered updating EXTENSION POSTGIS", $REGRESS_LOG;
return 0;
}
# Handle raster split if coming from pre-split extension
# and going to split raster
if ( $OPT_UPGRADE_FROM &&
( not $OPT_UPGRADE_FROM =~ /^unpackaged/ ) &&
has_split_raster_ext($OPT_UPGRADE_TO) &&
not has_split_raster_ext($OPT_UPGRADE_FROM) )
{
# upgrade of postgis must have unpackaged raster, so
# we create it again here
my $sql = package_extension_sql('postgis_raster', ${nextver});
print "Packaging PostGIS Raster in '${DB}' using: ${sql}\n" ;
my $cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
my $rv = system($cmd);
if ( $rv ) {
fail "Error encountered creating EXTENSION POSTGIS_RASTER from unpackaged on upgrade", $REGRESS_LOG;
return 0;
}
if ( ! $OPT_WITH_RASTER )
{
print "Marking PostGIS Raster as present for later drop\n";
$OPT_WITH_RASTER=1
}
}
if ( $upgrade_via_function )
{
# The function does everything
return 1;
}
if ( $OPT_WITH_RASTER && has_split_raster_ext(${nextver}) )
{
my $sql;
if ( $OPT_UPGRADE_FROM =~ /^unpackaged/ ) {
$sql = package_extension_sql('postgis_raster', ${nextver});
}
else {
$sql = upgrade_extension_sql('postgis_raster', ${libver}, ${nextver});
}
print "Upgrading PostGIS Raster in '${DB}' using: ${sql}\n" ;
my $cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
my $rv = system($cmd);
if ( $rv ) {
fail "Error encountered updating EXTENSION POSTGIS_RASTER", $REGRESS_LOG;
return 0;
}
}
if ( $OPT_WITH_TOPO )
{
my $sql;
if ( $OPT_UPGRADE_FROM =~ /^unpackaged/ ) {
$sql = package_extension_sql('postgis_topology', ${nextver});
}
else {
$sql = upgrade_extension_sql('postgis_topology', ${libver}, ${nextver});
}
print "Upgrading PostGIS Topology in '${DB}' using: ${sql}\n";
my $cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
my $rv = system($cmd);
if ( $rv ) {
fail "Error encountered updating EXTENSION POSTGIS_TOPOLOGY", $REGRESS_LOG;
return 0;
}
}
if ( $OPT_WITH_SFCGAL )
{
my $sql;
if ( $OPT_UPGRADE_FROM =~ /^unpackaged/ ) {
$sql = package_extension_sql('postgis_sfcgal', ${nextver});
}
elsif ( $OPT_UPGRADE_FROM && semver_lessthan($OPT_UPGRADE_FROM, "2.2.0") )
{
print "NOTICE: installing SFCGAL extension on upgrade "
. "as it was not available in version '$OPT_UPGRADE_FROM'\n";
$sql = "CREATE EXTENSION postgis_sfcgal VERSION '${nextver}'";
}
else
{
$sql = upgrade_extension_sql('postgis_sfcgal', ${libver}, ${nextver});
}
$cmd = "psql $psql_opts -c \"" . $sql . "\" $DB >> $REGRESS_LOG 2>&1";
print "Upgrading PostGIS SFCGAL in '${DB}' using: ${sql}\n" ;
$rv = system($cmd);
if ( $rv ) {
fail "Error encountered creating EXTENSION POSTGIS_SFCGAL", $REGRESS_LOG;
return 0;
}
}
return 1;
}
sub drop_spatial
{
my $ok = 1;
if ( $OPT_WITH_TOPO )
{
load_sql_file("${STAGED_SCRIPTS_DIR}/uninstall_topology.sql");
}
if ( $OPT_WITH_RASTER )
{
load_sql_file("${STAGED_SCRIPTS_DIR}/uninstall_rtpostgis.sql");
}
if ( $OPT_WITH_SFCGAL )
{
load_sql_file("${STAGED_SCRIPTS_DIR}/uninstall_sfcgal.sql");
}
if ( $OPT_LEGACY )
{
load_sql_file("${STAGED_SCRIPTS_DIR}/uninstall_legacy.sql");
}
load_sql_file("${STAGED_SCRIPTS_DIR}/uninstall_postgis.sql");
return 1;
}
sub drop_spatial_extensions
{
# ON_ERROR_STOP is used by psql to return non-0 on an error
my $psql_opts="--no-psqlrc --variable ON_ERROR_STOP=true";
my ($cmd, $rv);
if ( $OPT_WITH_TOPO )
{
# NOTE: "manually" dropping topology schema as EXTENSION does not
# take care of that itself, see
# http://trac.osgeo.org/postgis/ticket/2138
$cmd = "psql $psql_opts -c \"DROP EXTENSION postgis_topology; DROP SCHEMA topology;\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
if ( $rv ) {
fail "Error encountered dropping EXTENSION postgis_topology", $REGRESS_LOG;
return 0;
}
}
if ( $OPT_WITH_SFCGAL )
{
$cmd = "psql $psql_opts -c \"DROP EXTENSION postgis_sfcgal;\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
if ( $rv ) {
fail "Error encountered dropping EXTENSION postgis_sfcgal", $REGRESS_LOG;
return 0;
}
}
if ( $OPT_WITH_RASTER )
{
$cmd = "psql $psql_opts -c \"DROP EXTENSION IF EXISTS postgis_raster;\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
if ( $rv ) {
fail "Error encountered dropping EXTENSION postgis_raster", $REGRESS_LOG;
return 0;
}
}
if ( $OPT_WITH_TIGER )
{
$cmd = "psql $psql_opts -c \"DROP EXTENSION IF EXISTS postgis_tiger_geocoder;
DROP EXTENSION IF EXISTS fuzzystrmatch;
DROP SCHEMA IF EXISTS tiger;
DROP SCHEMA IF EXISTS tiger_data;
\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
return 0 if $rv;
if ( $rv ) {
fail "Error encountered dropping EXTENSION postgis_tiger_geocoder", $REGRESS_LOG;
return 0;
}
}
$cmd = "psql $psql_opts -c \"DROP EXTENSION postgis\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
if ( $rv ) {
fail "Error encountered dropping EXTENSION POSTGIS", $REGRESS_LOG;
return 0;
}
return 1;
}
# Drop spatial from an existing database
sub uninstall_spatial
{
my $ok;
start_test("uninstall");
if ( $OPT_EXTENSIONS )
{
$ok = drop_spatial_extensions();
}
else
{
$ok = drop_spatial();
}
return $ok if ! $ok;
show_progress(); # on to objects count
$OBJ_COUNT_POST = count_db_objects();
if ( $OBJ_COUNT_POST != $OBJ_COUNT_PRE )
{
fail("Object count pre-install ($OBJ_COUNT_PRE) != post-uninstall ($OBJ_COUNT_POST)");
if ( $OPT_UPGRADE_FROM )
{
my $fromversion = $OPT_UPGRADE_FROM;
$fromversion =~ s/unpackaged//;
print
"\n-------------------------------------------------\n",
"Need to add these to an after_upgrade.sql script?",
"\n-------------------------------------------------\n",
sql("
SELECT format(
'SELECT _postgis_drop_function_by_identity(%L, %L, %L);',
proname,
pg_catalog.pg_get_function_identity_arguments(oid),
'$fromversion'
)
FROM pg_proc
WHERE pronamespace = '${OPT_SCHEMA}'::regnamespace
ORDER BY 1;
"),
"\n-------------------------------------------------\n",
}
return 0;
}
pass("($OBJ_COUNT_PRE)");
return 1;
}
# Dump the database, return dump filename
sub dump_db
{
my $rv;
my $DBDUMP = $TMPDIR . '/' . $DB . '.dump';
foreach my $hook (@OPT_HOOK_BEFORE_DUMP)
{
print "Running before-dump-script $hook\n";
die unless load_sql_file($hook, 1);
}
print "Dumping database '${DB}'\n";
$rv = system("pg_dump -Fc -f${DBDUMP} ${DB} >> $REGRESS_LOG 2>&1");
if ( $rv ) {
fail("Could not dump ${DB}", $REGRESS_LOG);
return undef;
}
return ${DBDUMP};
}
# Restore the dump file passed as first argument
sub restore_db
{
my $rv;
my $DBDUMP = shift;
my $ext_dump = $OPT_EXTENSIONS && $OPT_UPGRADE_FROM !~ /^unpackaged/;
# If dump is not from extension-based database
# we need to prepare the target
unless ( $ext_dump )
{
if ( $OPT_UPGRADE_FROM =~ /^unpackaged(.*)/ ) {
die unless prepare_spatial($1);
} else {
die unless prepare_spatial();
}
}
if ( $ext_dump ) {
print "Restoring database '${DB}' using pg_restore\n";
$rv = system("pg_restore -d ${DB} ${DBDUMP} >> $REGRESS_LOG 2>&1");
} else {
print "Restoring database '${DB}' using postgis_restore.pl\n";
my $cmd = postgis_restore() . " ${DBDUMP} | psql --set ON_ERROR_STOP=1 -X ${DB} >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
}
if ( $rv ) {
fail("Could not restore ${DB}", $REGRESS_LOG);
return 0;
}
if ( $OPT_WITH_TOPO )
{
# We need to re-add "topology" to the search_path as it is lost
# on dump/reload, see https://trac.osgeo.org/postgis/ticket/3454
my $psql_opts = "--no-psqlrc --variable ON_ERROR_STOP=true";
my $cmd = "psql $psql_opts -c \"SELECT topology.AddToSearchPath('topology')\" $DB >> $REGRESS_LOG 2>&1";
$rv = system($cmd);
if ( $rv ) {
fail("Error encountered adding topology to search path after restore", $REGRESS_LOG);
return 0;
}
}
foreach my $hook (@OPT_HOOK_AFTER_RESTORE)
{
print "Running after-restore-script $hook\n";
die unless load_sql_file($hook, 1);
}
return 1;
}
# Dump and restore the database
sub diff
{
my ($expected_file, $obtained_file) = @_;
my $diffstr = '';
if ( $sysdiff ) {
$diffstr = `diff --strip-trailing-cr -u $expected_file $obtained_file 2>&1`;
return $diffstr;
}
open(OBT, $obtained_file) || return "Cannot open $obtained_file\n";
open(EXP, $expected_file) || return "Cannot open $expected_file\n";
my $lineno = 0;
while (!eof(OBT) or !eof(EXP)) {
# TODO: check for premature end of one or the other ?
my $obtline=<OBT>;
my $expline=<EXP>;
$obtline =~ s/\r?\n$//; # Strip line endings
$expline =~ s/\r?\n$//; # Strip line endings
$lineno++;
if ( $obtline ne $expline ) {
my $diffln .= "$lineno.OBT: $obtline\n";
$diffln .= "$lineno.EXP: $expline\n";
$diffstr .= $diffln;
}
}
close(OBT);
close(EXP);
return $diffstr;
}
|