File: EdgeGraphTest.cpp

package info (click to toggle)
geos 3.14.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,212 kB
  • sloc: cpp: 199,103; xml: 56,065; ansic: 6,162; sh: 287; makefile: 26
file content (176 lines) | stat: -rw-r--r-- 5,006 bytes parent folder | download
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#include <tut/tut.hpp>
// geos
#include <geos/edgegraph/EdgeGraph.h>
#include <geos/edgegraph/HalfEdge.h>
#include <geos/edgegraph/EdgeGraphBuilder.h>
#include <geos/geom/Envelope.h>
#include <geos/io/WKTReader.h>

using namespace geos::edgegraph;
using namespace geos::geom;

namespace tut {

// dummy data, not used
struct test_edgegraph_data {

    geos::io::WKTReader reader_;

    HalfEdge* addEdge(EdgeGraph& graph, double p0x, double p0y, double p1x, double p1y) {
        return graph.addEdge(CoordinateXYZM(Coordinate(p0x, p0y)), CoordinateXYZM(Coordinate(p1x, p1y)));
    }

    std::unique_ptr<EdgeGraph> build(std::string wkt) {
        auto geocol = reader_.read<GeometryCollection>(wkt);
        ensure("could not cast input geometry to collection", geocol.get());
        return EdgeGraphBuilder::build(geocol.get());
    }

    void checkNodeValid(HalfEdge* e) {
        bool isNodeValid = e->isEdgesSorted();
        ensure("Found non-sorted edges around node", isNodeValid);
    }

    void checkNodeValid(EdgeGraph& graph, Coordinate& p0, Coordinate& p1) {
        HalfEdge* e = graph.findEdge(p0, p1);
        bool isNodeValid = e->isEdgesSorted();
        ensure("Found non-sorted edges around node", isNodeValid);
    }

    void checkEdge(EdgeGraph& graph, Coordinate& p0, Coordinate& p1) {
        HalfEdge* e = graph.findEdge(p0, p1);
        ensure("checkEdge could not find edge", e);
    }

    void checkEdgeRing(EdgeGraph& graph, Coordinate& p, std::vector<Coordinate>& dest) {
        HalfEdge* e = graph.findEdge(p, dest[0]);
        HalfEdge* onext = e;
        std::size_t i = 0;
        do {
            ensure("checkEdgeRing failed", onext->dest().equals2D(dest[i++]));
            onext = onext->oNext();
        } while (onext != e);
    }

    void checkNextPrev(EdgeGraph& graph) {
        std::vector<const HalfEdge*> edges;
        graph.getVertexEdges(edges);
        for (const auto* e: edges) {
            ensure("checkNextPrev failed", e->next()->prev() == e);
        }
    }

    HalfEdge* findEdge(EdgeGraph& graph, double x1, double y1, double x2, double y2) {
        return graph.findEdge(Coordinate(x1, y1), Coordinate(x2, y2));
    }

    void checkNext(EdgeGraph& graph, double x1, double y1, double x2, double y2, double x3, double y3) {
        HalfEdge* e1 = findEdge(graph, x1, y1, x2, y2);
        HalfEdge* e2 = findEdge(graph, x2, y2, x3, y3);
        ensure("checkNext failed next()", e1->next() == e2);
        ensure("checkNext failed prev()", e2->prev() == e1);
    }

    void checkNextPrev(EdgeGraph& graph, double x1, double y1, double x2, double y2) {
        HalfEdge* e = findEdge(graph, x1, y1, x2, y2);
        ensure("checkNextPrev failed", e->next()->prev() == e);
    }

};

using group = test_group<test_edgegraph_data>;
using object = group::object;

group test_edgegraph_group("geos::edgegraph::EdgeGraph");

//
// testNode
//
template<>
template<>
void object::test<1> ()
{
    std::unique_ptr<EdgeGraph> graph = build("GEOMETRYCOLLECTION(LINESTRING(0 0, 1 0), LINESTRING(0 0, 0 1), LINESTRING(0 0, -1 0))");
    std::vector<Coordinate>coords = { Coordinate(1, 0), Coordinate(0, 1), Coordinate(-1, 0) };

    Coordinate p0(0,0);
    Coordinate p1(1,0);
    checkEdgeRing(*graph, p0, coords);
    checkNodeValid(*graph, p0, p1);
    checkEdge(*graph, p0, p1);

    checkNextPrev(*graph);

    checkNext(*graph, 1, 0, 0, 0, 0, 1);
    checkNext(*graph, 0, 1, 0, 0, -1, 0);
    checkNext(*graph, -1, 0, 0, 0, 1, 0);

    checkNextPrev(*graph, 1, 0, 0, 0);
    checkNextPrev(*graph, 0, 1, 0, 0);
    checkNextPrev(*graph, -1, 0, 0, 0);

    ensure("testNode findEdge failed", findEdge(*graph, 0, 0, 1, 0)->degree() == 3 );
}

//
// testCCWAfterInserts
//
template<>
template<>
void object::test<2> ()
{
    EdgeGraph graph;
    HalfEdge* e1 = addEdge(graph, 50, 39, 35, 42);
    addEdge(graph, 50, 39, 50, 60);
    addEdge(graph, 50, 39, 68, 35);
    checkNodeValid(e1);
}

//
// testCCWAfterInserts2
//
template<>
template<>
void object::test<3> ()
{
    EdgeGraph graph;
    HalfEdge* e1 = addEdge(graph, 50, 200, 0, 200);
    addEdge(graph, 50, 200, 190, 50);
    addEdge(graph, 50, 200, 200, 200);
    checkNodeValid(e1);
}

//
// testRingGraph
//
template<>
template<>
void object::test<4> ()
{
    std::unique_ptr<EdgeGraph> graph = build("MULTILINESTRING ((10 10, 10 90), (10 90, 90 90), (90 90, 90 10), (90 10, 10 10))");
    HalfEdge* e = findEdge(*graph, 10, 10, 10, 90);
    HalfEdge* eNext = findEdge(*graph, 10, 90, 90, 90);
    ensure(e->next() == eNext);
    ensure(eNext->prev() == e);

    HalfEdge* eSym = findEdge(*graph, 10, 90, 10, 10);
    ensure(e->sym() == eSym);
    ensure(e->orig().equals2D(Coordinate(10, 10)));
    ensure(e->dest().equals2D(Coordinate(10, 90)));

    checkNextPrev(*graph);
}

// testSingleEdgeGraph
template<>
template<>
void object::test<5> ()
{
    std::unique_ptr<EdgeGraph> graph = build("MULTILINESTRING ((10 10, 20 20))");
    checkNextPrev(*graph);
}



} // namespace tut