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
|
/**
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This file is part of osm2pgsql (https://osm2pgsql.org/).
*
* Copyright (C) 2006-2025 by the osm2pgsql developer community.
* For a full list of authors see the git log.
*/
#include <catch.hpp>
#include "common-import.hpp"
#include "common-options.hpp"
namespace {
testing::db::import_t db;
void require_tables(testing::pg::conn_t const &conn)
{
conn.require_has_table("osm2pgsql_test_point");
conn.require_has_table("osm2pgsql_test_line");
conn.require_has_table("osm2pgsql_test_polygon");
conn.require_has_table("osm2pgsql_test_roads");
}
} // anonymous namespace
TEST_CASE("liechtenstein slim regression simple")
{
REQUIRE_NOTHROW(db.run_file(testing::opt_t().slim(),
"liechtenstein-2013-08-03.osm.pbf"));
auto conn = db.db().connect();
require_tables(conn);
REQUIRE(1342 == conn.get_count("osm2pgsql_test_point"));
REQUIRE(3231 == conn.get_count("osm2pgsql_test_line"));
REQUIRE(375 == conn.get_count("osm2pgsql_test_roads"));
REQUIRE(4130 == conn.get_count("osm2pgsql_test_polygon"));
// Check size of lines
conn.assert_double(
1696.04,
"SELECT ST_Length(way) FROM osm2pgsql_test_line WHERE osm_id = 1101");
conn.assert_double(1151.26,
"SELECT ST_Length(ST_Transform(way,4326)::geography) "
"FROM osm2pgsql_test_line WHERE osm_id = 1101");
conn.assert_double(
311.289,
"SELECT way_area FROM osm2pgsql_test_polygon WHERE osm_id = 3265");
conn.assert_double(
311.289,
"SELECT ST_Area(way) FROM osm2pgsql_test_polygon WHERE osm_id = 3265");
conn.assert_double(143.845,
"SELECT ST_Area(ST_Transform(way,4326)::geography) FROM "
"osm2pgsql_test_polygon WHERE osm_id = 3265");
// Check a point's location
REQUIRE(1 == conn.get_count("osm2pgsql_test_point",
"ST_DWithin(way, 'SRID=3857;POINT(1062645.12 "
"5972593.4)'::geometry, 0.1)"));
}
TEST_CASE("liechtenstein slim latlon")
{
REQUIRE_NOTHROW(db.run_file(testing::opt_t().slim().srs(PROJ_LATLONG),
"liechtenstein-2013-08-03.osm.pbf"));
auto conn = db.db().connect();
require_tables(conn);
REQUIRE(1342 == conn.get_count("osm2pgsql_test_point"));
REQUIRE(3229 == conn.get_count("osm2pgsql_test_line"));
REQUIRE(374 == conn.get_count("osm2pgsql_test_roads"));
REQUIRE(4130 == conn.get_count("osm2pgsql_test_polygon"));
// Check size of lines
conn.assert_double(
0.0105343,
"SELECT ST_Length(way) FROM osm2pgsql_test_line WHERE osm_id = 1101");
conn.assert_double(1151.26,
"SELECT ST_Length(ST_Transform(way,4326)::geography) "
"FROM osm2pgsql_test_line WHERE osm_id = 1101");
conn.assert_double(
1.70718e-08,
"SELECT way_area FROM osm2pgsql_test_polygon WHERE osm_id = 3265");
conn.assert_double(
1.70718e-08,
"SELECT ST_Area(way) FROM osm2pgsql_test_polygon WHERE osm_id = 3265");
conn.assert_double(143.845,
"SELECT ST_Area(ST_Transform(way,4326)::geography) FROM "
"osm2pgsql_test_polygon WHERE osm_id = 3265");
// Check a point's location
REQUIRE(1 == conn.get_count("osm2pgsql_test_point",
"ST_DWithin(way, 'SRID=4326;POINT(9.5459035 "
"47.1866494)'::geometry, 0.00001)"));
}
TEST_CASE("way area slim flatnode")
{
REQUIRE_NOTHROW(db.run_file(testing::opt_t().slim().flatnodes(),
"test_output_pgsql_way_area.osm"));
auto conn = db.db().connect();
require_tables(conn);
REQUIRE(0 == conn.get_count("osm2pgsql_test_point"));
REQUIRE(0 == conn.get_count("osm2pgsql_test_line"));
REQUIRE(0 == conn.get_count("osm2pgsql_test_roads"));
REQUIRE(1 == conn.get_count("osm2pgsql_test_polygon"));
}
TEST_CASE("route relation slim flatnode")
{
REQUIRE_NOTHROW(db.run_file(testing::opt_t().slim().flatnodes(),
"test_output_pgsql_route_rel.osm"));
auto conn = db.db().connect();
require_tables(conn);
REQUIRE(0 == conn.get_count("osm2pgsql_test_point"));
REQUIRE(2 == conn.get_count("osm2pgsql_test_line"));
REQUIRE(1 == conn.get_count("osm2pgsql_test_roads"));
REQUIRE(0 == conn.get_count("osm2pgsql_test_polygon"));
}
TEST_CASE("liechtenstein slim bz2 parsing regression")
{
REQUIRE_NOTHROW(db.run_file(testing::opt_t().slim(),
"liechtenstein-2013-08-03.osm.bz2"));
auto conn = db.db().connect();
require_tables(conn);
REQUIRE(1342 == conn.get_count("osm2pgsql_test_point"));
REQUIRE(3231 == conn.get_count("osm2pgsql_test_line"));
REQUIRE(375 == conn.get_count("osm2pgsql_test_roads"));
REQUIRE(4130 == conn.get_count("osm2pgsql_test_polygon"));
}
|