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
|
/**
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This file is part of osm2pgsql (https://osm2pgsql.org/).
*
* Copyright (C) 2006-2021 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"
static testing::db::import_t db;
TEST_CASE("multi backend tag import")
{
options_t options = testing::opt_t()
.slim()
.multi("test_output_multi_tags.json")
.srs(PROJ_LATLONG);
REQUIRE_NOTHROW(db.run_file(options, "test_output_multi_tags.osm"));
auto conn = db.db().connect();
// Check we got the right tables
conn.require_has_table("test_points_1");
conn.require_has_table("test_points_2");
conn.require_has_table("test_line_1");
conn.require_has_table("test_polygon_1");
conn.require_has_table("test_polygon_2");
// Check we didn't get any extra in the tables
REQUIRE(2 == conn.get_count("test_points_1"));
REQUIRE(2 == conn.get_count("test_points_2"));
REQUIRE(1 == conn.get_count("test_line_1"));
REQUIRE(1 == conn.get_count("test_line_2"));
REQUIRE(1 == conn.get_count("test_polygon_1"));
REQUIRE(1 == conn.get_count("test_polygon_2"));
// Check that the first table for each type got the right transform
REQUIRE(1 == conn.get_count("test_points_1",
"foo IS NULL and bar = 'n1' AND baz IS NULL"));
REQUIRE(1 == conn.get_count("test_points_1",
"foo IS NULL and bar = 'n2' AND baz IS NULL"));
REQUIRE(1 == conn.get_count("test_line_1",
"foo IS NULL and bar = 'w1' AND baz IS NULL"));
REQUIRE(1 == conn.get_count("test_polygon_1",
"foo IS NULL and bar = 'w2' AND baz IS NULL"));
// Check that the second table also got the right transform
REQUIRE(1 == conn.get_count("test_points_2",
"foo IS NULL and bar IS NULL AND baz = 'n1'"));
REQUIRE(1 == conn.get_count("test_points_2",
"foo IS NULL and bar IS NULL AND baz = 'n2'"));
REQUIRE(1 == conn.get_count("test_line_2",
"foo IS NULL and bar IS NULL AND baz = 'w1'"));
REQUIRE(1 == conn.get_count("test_polygon_2",
"foo IS NULL and bar IS NULL AND baz = 'w2'"));
}
|