mirror of
https://github.com/osm2pgsql-dev/osm2pgsql.git
synced 2025-07-28 04:21:47 +00:00
151 lines
5.1 KiB
C++
151 lines
5.1 KiB
C++
#include <iostream>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <cassert>
|
|
#include <sstream>
|
|
#include <stdexcept>
|
|
#include <memory>
|
|
|
|
#include "osmtypes.hpp"
|
|
#include "osmdata.hpp"
|
|
#include "output-pgsql.hpp"
|
|
#include "options.hpp"
|
|
#include "middle-pgsql.hpp"
|
|
#include "middle-ram.hpp"
|
|
#include "taginfo_impl.hpp"
|
|
#include "parse.hpp"
|
|
|
|
#include <libpq-fe.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include "tests/common-pg.hpp"
|
|
|
|
namespace {
|
|
|
|
struct skip_test : public std::exception {
|
|
const char *what() const noexcept { return "Test skipped."; }
|
|
};
|
|
|
|
void run_test(const char* test_name, void (*testfunc)()) {
|
|
try {
|
|
fprintf(stderr, "%s\n", test_name);
|
|
testfunc();
|
|
|
|
} catch (const skip_test &) {
|
|
exit(77); // <-- code to skip this test.
|
|
|
|
} catch (const std::exception& e) {
|
|
fprintf(stderr, "%s\n", e.what());
|
|
fprintf(stderr, "FAIL\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
fprintf(stderr, "PASS\n");
|
|
}
|
|
#define RUN_TEST(x) run_test(#x, &(x))
|
|
|
|
void check_count(pg::conn_ptr &conn, int expected, const std::string &query) {
|
|
pg::result_ptr res = conn->exec(query);
|
|
|
|
int ntuples = PQntuples(res->get());
|
|
if (ntuples != 1) {
|
|
throw std::runtime_error((boost::format("Expected only one tuple from a query "
|
|
"to check COUNT(*), but got %1%. Query "
|
|
"was: %2%.")
|
|
% ntuples % query).str());
|
|
}
|
|
|
|
std::string numstr = PQgetvalue(res->get(), 0, 0);
|
|
int count = boost::lexical_cast<int>(numstr);
|
|
|
|
if (count != expected) {
|
|
throw std::runtime_error((boost::format("Expected %1%, but got %2%, when running "
|
|
"query: %3%.")
|
|
% expected % count % query).str());
|
|
}
|
|
}
|
|
|
|
void assert_has_table(pg::conn_ptr &test_conn, const std::string &table_name) {
|
|
std::string query = (boost::format("select count(*) from pg_catalog.pg_class "
|
|
"where oid = '%1%'::regclass")
|
|
% table_name).str();
|
|
|
|
check_count(test_conn, 1, query);
|
|
}
|
|
|
|
void test_other_output_schema() {
|
|
std::unique_ptr<pg::tempdb> db;
|
|
|
|
try {
|
|
db.reset(new pg::tempdb);
|
|
} catch (const std::exception &e) {
|
|
std::cerr << "Unable to setup database: " << e.what() << "\n";
|
|
throw skip_test();
|
|
}
|
|
|
|
pg::conn_ptr schema_conn = pg::conn::connect(db->conninfo());
|
|
|
|
schema_conn->exec("CREATE SCHEMA myschema;"
|
|
"CREATE TABLE myschema.osm2pgsql_test_point (id bigint);"
|
|
"CREATE TABLE myschema.osm2pgsql_test_line (id bigint);"
|
|
"CREATE TABLE myschema.osm2pgsql_test_polygon (id bigint);"
|
|
"CREATE TABLE myschema.osm2pgsql_test_roads (id bigint)");
|
|
|
|
std::string proc_name("test-output-pgsql-schema"), input_file("-");
|
|
char *argv[] = { &proc_name[0], &input_file[0], nullptr };
|
|
|
|
std::shared_ptr<middle_pgsql_t> mid_pgsql(new middle_pgsql_t());
|
|
options_t options = options_t::parse(2, argv);
|
|
options.conninfo = db->conninfo().c_str();
|
|
options.num_procs = 1;
|
|
options.prefix = "osm2pgsql_test";
|
|
options.style = "default.style";
|
|
|
|
auto out_test = std::make_shared<output_pgsql_t>(mid_pgsql.get(), options);
|
|
|
|
osmdata_t osmdata(mid_pgsql, out_test);
|
|
|
|
std::unique_ptr<parse_delegate_t> parser(new parse_delegate_t(options.extra_attributes, options.bbox, options.projection, false));
|
|
|
|
osmdata.start();
|
|
|
|
parser->stream_file("libxml2", "tests/test_output_pgsql_z_order.osm", &osmdata);
|
|
|
|
parser.reset(nullptr);
|
|
|
|
osmdata.stop();
|
|
|
|
// start a new connection to run tests on
|
|
pg::conn_ptr test_conn = pg::conn::connect(db->conninfo());
|
|
|
|
assert_has_table(test_conn, "public.osm2pgsql_test_point");
|
|
assert_has_table(test_conn, "public.osm2pgsql_test_line");
|
|
assert_has_table(test_conn, "public.osm2pgsql_test_polygon");
|
|
assert_has_table(test_conn, "public.osm2pgsql_test_roads");
|
|
assert_has_table(test_conn, "public.osm2pgsql_test_point");
|
|
assert_has_table(test_conn, "public.osm2pgsql_test_line");
|
|
assert_has_table(test_conn, "public.osm2pgsql_test_polygon");
|
|
assert_has_table(test_conn, "public.osm2pgsql_test_roads");
|
|
|
|
check_count(test_conn, 2, "SELECT COUNT(*) FROM public.osm2pgsql_test_point");
|
|
check_count(test_conn, 11, "SELECT COUNT(*) FROM public.osm2pgsql_test_line");
|
|
check_count(test_conn, 1, "SELECT COUNT(*) FROM public.osm2pgsql_test_polygon");
|
|
check_count(test_conn, 8, "SELECT COUNT(*) FROM public.osm2pgsql_test_roads");
|
|
check_count(test_conn, 0, "SELECT COUNT(*) FROM myschema.osm2pgsql_test_point");
|
|
check_count(test_conn, 0, "SELECT COUNT(*) FROM myschema.osm2pgsql_test_line");
|
|
check_count(test_conn, 0, "SELECT COUNT(*) FROM myschema.osm2pgsql_test_polygon");
|
|
check_count(test_conn, 0, "SELECT COUNT(*) FROM myschema.osm2pgsql_test_roads");
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
int main(int argc, char *argv[]) {
|
|
RUN_TEST(test_other_output_schema);
|
|
|
|
return 0;
|
|
}
|