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
|
/**
* 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 "options.hpp"
/**
* Tests that the conninfo strings are appropriately generated
* This test is stricter than it needs to be, as it also cares about order,
* but the current implementation always uses the same order, and attempting to
* parse a conninfo string is complex.
*/
TEST_CASE("Connection info parsing", "[NoDB]")
{
database_options_t db;
CHECK(db.conninfo() == "fallback_application_name='osm2pgsql'");
db.db = "foo";
CHECK(db.conninfo() ==
"fallback_application_name='osm2pgsql' dbname='foo'");
db = database_options_t();
db.username = "bar";
CHECK(db.conninfo() == "fallback_application_name='osm2pgsql' user='bar'");
db = database_options_t();
db.password = "bar";
CHECK(db.conninfo() ==
"fallback_application_name='osm2pgsql' password='bar'");
db = database_options_t();
db.host = "bar";
CHECK(db.conninfo() == "fallback_application_name='osm2pgsql' host='bar'");
db = database_options_t();
db.port = "bar";
CHECK(db.conninfo() == "fallback_application_name='osm2pgsql' port='bar'");
db = database_options_t();
db.db = "foo";
db.username = "bar";
db.password = "baz";
db.host = "bzz";
db.port = "123";
CHECK(db.conninfo() == "fallback_application_name='osm2pgsql' dbname='foo' "
"user='bar' password='baz' host='bzz' port='123'");
}
|