mirror of
https://github.com/osm2pgsql-dev/osm2pgsql.git
synced 2025-08-13 13:38:01 +00:00
104 lines
2.9 KiB
C++
104 lines
2.9 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 <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include "tests/middle-tests.hpp"
|
|
#include "tests/common-pg.hpp"
|
|
#include "tests/common.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))
|
|
|
|
// "simple" test modeled on the basic regression test from
|
|
// the python script. this is just to check everything is
|
|
// working as expected before we start the complex stuff.
|
|
void test_regression_simple() {
|
|
std::unique_ptr<pg::tempdb> db;
|
|
|
|
try {
|
|
db.reset(new pg::tempdb);
|
|
db->check_tblspc(); // Unlike others, these tests require a test tablespace
|
|
} catch (const std::exception &e) {
|
|
std::cerr << "Unable to setup database: " << e.what() << "\n";
|
|
throw skip_test();
|
|
}
|
|
|
|
std::string proc_name("test-output-pgsql"), 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(2, argv);
|
|
options.database_options = db->database_options;
|
|
options.num_procs = 1;
|
|
options.prefix = "osm2pgsql_test";
|
|
options.slim = true;
|
|
options.style = "default.style";
|
|
|
|
options.tblsslim_index = "tablespacetest";
|
|
options.tblsslim_data = "tablespacetest";
|
|
|
|
auto out_test = std::make_shared<output_pgsql_t>(mid_pgsql.get(), options);
|
|
|
|
osmdata_t osmdata(mid_pgsql, out_test);
|
|
|
|
testing::parse("tests/liechtenstein-2013-08-03.osm.pbf", "pbf",
|
|
options, &osmdata);
|
|
|
|
db->assert_has_table("osm2pgsql_test_point");
|
|
db->assert_has_table("osm2pgsql_test_line");
|
|
db->assert_has_table("osm2pgsql_test_polygon");
|
|
db->assert_has_table("osm2pgsql_test_roads");
|
|
|
|
db->check_count(1342, "SELECT count(*) FROM osm2pgsql_test_point");
|
|
db->check_count(3231, "SELECT count(*) FROM osm2pgsql_test_line");
|
|
db->check_count( 375, "SELECT count(*) FROM osm2pgsql_test_roads");
|
|
db->check_count(4130, "SELECT count(*) FROM osm2pgsql_test_polygon");
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
int main(int argc, char *argv[]) {
|
|
RUN_TEST(test_regression_simple);
|
|
|
|
return 0;
|
|
}
|