Files
osm2pgsql/tests/test-output-pgsql-area.cpp
Jochen Topf 61bdfb4bc5 Add/update copyright notice on all C++ files
This adds a copyright notice to all C++ files and the README clarifying
the license. (There is no change of the license.) This also removes a
few names explicitly mentioned as copyright holders, instead refering to
the git log which has a full list of all osm2pgsql developers. (There is
also still the AUTHORS file which names the most important developers.)

The only exception is the sprompt.cpp file which was taken from
PostgreSQL and keeps its original license information (and, of course,
the files in contrib).
2020-12-19 11:25:07 +01:00

66 lines
1.9 KiB
C++

/**
* SPDX-License-Identifier: GPL-2.0-or-later
*
* This file is part of osm2pgsql (https://osm2pgsql.org/).
*
* Copyright (C) 2006-2020 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("default projection")
{
options_t options = testing::opt_t().slim();
REQUIRE_NOTHROW(db.run_file(options, "test_output_pgsql_area.osm"));
auto conn = db.db().connect();
REQUIRE(2 == conn.get_count("osm2pgsql_test_polygon"));
conn.assert_double(
1.23927e+10,
"SELECT way_area FROM osm2pgsql_test_polygon WHERE name='poly'");
conn.assert_double(
9.91828e+10,
"SELECT way_area FROM osm2pgsql_test_polygon WHERE name='multi'");
}
TEST_CASE("latlon projection")
{
options_t options = testing::opt_t().slim().srs(PROJ_LATLONG);
REQUIRE_NOTHROW(db.run_file(options, "test_output_pgsql_area.osm"));
auto conn = db.db().connect();
REQUIRE(2 == conn.get_count("osm2pgsql_test_polygon"));
conn.assert_double(
1, "SELECT way_area FROM osm2pgsql_test_polygon WHERE name='poly'");
conn.assert_double(
8, "SELECT way_area FROM osm2pgsql_test_polygon WHERE name='multi'");
}
TEST_CASE("latlon projection with way_area reprojection")
{
options_t options = testing::opt_t().slim().srs(PROJ_LATLONG);
options.reproject_area = true;
REQUIRE_NOTHROW(db.run_file(options, "test_output_pgsql_area.osm"));
auto conn = db.db().connect();
REQUIRE(2 == conn.get_count("osm2pgsql_test_polygon"));
conn.assert_double(
1.23927e+10,
"SELECT way_area FROM osm2pgsql_test_polygon WHERE name='poly'");
conn.assert_double(
9.91828e+10,
"SELECT way_area FROM osm2pgsql_test_polygon WHERE name='multi'");
}