File: test-geom-output.cpp

package info (click to toggle)
osm2pgsql 2.1.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,652 kB
  • sloc: cpp: 59,934; python: 1,039; ansic: 763; sh: 25; makefile: 14
file content (141 lines) | stat: -rw-r--r-- 3,778 bytes parent folder | download | duplicates (4)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/**
 * SPDX-License-Identifier: GPL-2.0-or-later
 *
 * This file is part of osm2pgsql (https://osm2pgsql.org/).
 *
 * Copyright (C) 2006-2025 by the osm2pgsql developer community.
 * For a full list of authors see the git log.
 */

#include <catch.hpp>

#include "geom-output.hpp"

#include <sstream>

TEST_CASE("nullgeom_t output", "[NoDB]")
{
    geom::nullgeom_t const g;
    std::stringstream ss1;
    ss1 << g;
    CHECK(ss1.str() == "NULL");

    geom::geometry_t const geom;
    std::stringstream ss2;
    ss2 << geom;
    CHECK(ss2.str() == "NULL(NULL)");
}

TEST_CASE("point_t output", "[NoDB]")
{
    geom::point_t const g{1, 2};
    std::stringstream ss1;
    ss1 << g;
    CHECK(ss1.str() == "1 2");

    geom::geometry_t const geom{g};
    std::stringstream ss2;
    ss2 << geom;
    CHECK(ss2.str() == "POINT(1 2)");
}

TEST_CASE("linestring_t output", "[NoDB]")
{
    geom::linestring_t g{{1, 2}, {2, 2}};
    std::stringstream ss1;
    ss1 << g;
    CHECK(ss1.str() == "1 2,2 2");

    geom::geometry_t const geom{std::move(g)};
    std::stringstream ss2;
    ss2 << geom;
    CHECK(ss2.str() == "LINESTRING(1 2,2 2)");
}

TEST_CASE("polygon_t with no inner rings output", "[NoDB]")
{
    geom::polygon_t g{geom::ring_t{{0, 0}, {1, 0}, {1, 1}, {0, 1}, {0, 0}}};
    std::stringstream ss1;
    ss1 << g;
    CHECK(ss1.str() == "(0 0,1 0,1 1,0 1,0 0)");

    geom::geometry_t const geom{std::move(g)};
    std::stringstream ss2;
    ss2 << geom;
    CHECK(ss2.str() == "POLYGON((0 0,1 0,1 1,0 1,0 0))");
}

TEST_CASE("polygon_t with inner ring output", "[NoDB]")
{
    geom::polygon_t g{geom::ring_t{{0, 0}, {3, 0}, {3, 3}, {0, 3}, {0, 0}}};
    g.add_inner_ring(geom::ring_t{{1, 1}, {1, 2}, {2, 2}, {2, 1}, {1, 1}});
    std::stringstream ss1;
    ss1 << g;
    CHECK(ss1.str() == "(0 0,3 0,3 3,0 3,0 0),(1 1,1 2,2 2,2 1,1 1)");

    geom::geometry_t const geom{std::move(g)};
    std::stringstream ss2;
    ss2 << geom;
    CHECK(ss2.str() == "POLYGON((0 0,3 0,3 3,0 3,0 0),(1 1,1 2,2 2,2 1,1 1))");
}

TEST_CASE("multipoint_t output", "[NoDB]")
{
    geom::multipoint_t g;
    g.add_geometry({1, 2});
    g.add_geometry({4, 3});
    std::stringstream ss1;
    ss1 << g;
    CHECK(ss1.str() == "(1 2),(4 3)");

    geom::geometry_t const geom{std::move(g)};
    std::stringstream ss2;
    ss2 << geom;
    CHECK(ss2.str() == "MULTIPOINT((1 2),(4 3))");
}

TEST_CASE("multilinestring_t output", "[NoDB]")
{
    geom::multilinestring_t g;
    g.add_geometry({{1, 2}, {2, 2}});
    g.add_geometry({{4, 3}, {1, 1}});
    std::stringstream ss1;
    ss1 << g;
    CHECK(ss1.str() == "(1 2,2 2),(4 3,1 1)");

    geom::geometry_t const geom{std::move(g)};
    std::stringstream ss2;
    ss2 << geom;
    CHECK(ss2.str() == "MULTILINESTRING((1 2,2 2),(4 3,1 1))");
}

TEST_CASE("multipolygon_t output", "[NoDB]")
{
    geom::multipolygon_t g;
    g.add_geometry(geom::polygon_t{geom::ring_t{{0, 0}, {0, 1}, {1, 1}}});
    g.add_geometry(geom::polygon_t{geom::ring_t{{2, 2}, {2, 3}, {3, 2}}});
    std::stringstream ss1;
    ss1 << g;
    CHECK(ss1.str() == "((0 0,0 1,1 1)),((2 2,2 3,3 2))");

    geom::geometry_t const geom{std::move(g)};
    std::stringstream ss2;
    ss2 << geom;
    CHECK(ss2.str() == "MULTIPOLYGON(((0 0,0 1,1 1)),((2 2,2 3,3 2)))");
}

TEST_CASE("collection_t output", "[NoDB]")
{
    geom::collection_t g;
    g.add_geometry(geom::geometry_t{
        geom::polygon_t{geom::ring_t{{0, 0}, {0, 1}, {1, 1}}}});
    g.add_geometry(geom::geometry_t{geom::point_t{2, 3}});
    std::stringstream ss1;
    ss1 << g;
    CHECK(ss1.str() == "POLYGON((0 0,0 1,1 1)),POINT(2 3)");

    geom::geometry_t const geom{std::move(g)};
    std::stringstream ss2;
    ss2 << geom;
    CHECK(ss2.str() == "GEOMETRYCOLLECTION(POLYGON((0 0,0 1,1 1)),POINT(2 3))");
}