File: SegmentNodeTest.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 (220 lines) | stat: -rw-r--r-- 5,116 bytes parent folder | download | duplicates (2)
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
//
// Test Suite for geos::noding::SegmentNode class.

#include <tut/tut.hpp>
// geos
#include <geos/noding/SegmentNode.h>
#include <geos/noding/NodedSegmentString.h>
#include <geos/geom/Coordinate.h>
#include <geos/geom/CoordinateSequence.h>
#include <geos/util.h>
// std
#include <memory>

namespace tut {
//
// Test Group
//

// Common data used by all tests
struct test_segmentnode_data {

    typedef std::unique_ptr<geos::geom::CoordinateSequence>
    CoordSeqPtr;

    typedef std::unique_ptr<geos::noding::SegmentString>
    SegmentStringPtr;

    test_segmentnode_data()
    {}
};

typedef test_group<test_segmentnode_data> group;
typedef group::object object;

group test_segmentnode_group("geos::noding::SegmentNode");

//
// Test Cases
//

// Test of overridden constructor
template<>
template<>
void object::test<1>
()
{
    using geos::geom::Coordinate;
    using geos::noding::NodedSegmentString;
    using geos::noding::SegmentNode;

    // Create coordinates sequence
    const std::size_t coords_size = 2;
    auto cs = geos::detail::make_unique<geos::geom::CoordinateSequence>(0u, coords_size);

    ensure(nullptr != cs.get());

    Coordinate c0(0, 0);
    Coordinate c1(3, 3);
    cs->add(c0);
    cs->add(c1);

    ensure_equals(cs->size(), coords_size);

    // Create SegmentString instance

    NodedSegmentString segment(cs.release(), false, false, nullptr);

    ensure_equals(segment.size(), coords_size);

    // Construct a node on the given NodedSegmentString
    {
        const std::size_t segment_index = 0;
        SegmentNode node(segment, Coordinate(3, 3), segment_index,
                         segment.getSegmentOctant(segment_index));

        ensure_equals(node.segmentIndex, segment_index);

        // only first endpoint is considered interior
        ensure(node.isInterior());

        //
        // TODO - mloskot
        //  1. What's the purpose of isEndPoint() and how to test it?
        //  2. Add new test cases
        //

    }

}

template<>
template<>
void object::test<2>
()
{
    using geos::geom::Coordinate;
    using geos::noding::NodedSegmentString;
    using geos::noding::SegmentNode;

    // Create coordinates sequence
    const std::size_t coords_size = 2;
    auto cs = geos::detail::make_unique<geos::geom::CoordinateSequence>(0u, coords_size);

    ensure(nullptr != cs.get());

    Coordinate c0(0, 0);
    Coordinate c1(3, 3);
    cs->add(c0);
    cs->add(c1);

    ensure_equals(cs->size(), coords_size);

    // Create SegmentString instance

    NodedSegmentString segment(cs.release(), false, false, nullptr);

    ensure_equals(segment.size(), coords_size);

    // Construct an interior node on the given NodedSegmentString
    {
        const std::size_t segment_index = 0;
        SegmentNode node(segment, Coordinate(0, 0), segment_index,
                         segment.getSegmentOctant(segment_index));

        ensure_equals(node.segmentIndex, segment_index);

        // on first endpoint ...
        ensure(! node.isInterior());

    }

}

template<>
template<>
void object::test<3>
()
{
    using geos::geom::Coordinate;
    using geos::noding::NodedSegmentString;
    using geos::noding::SegmentNode;

    // Create coordinates sequence
    const std::size_t coords_size = 2;
    auto cs = geos::detail::make_unique<geos::geom::CoordinateSequence>(0u, coords_size);

    ensure(nullptr != cs.get());

    Coordinate c0(0, 0);
    Coordinate c1(3, 3);
    cs->add(c0);
    cs->add(c1);

    ensure_equals(cs->size(), coords_size);

    // Create SegmentString instance

    NodedSegmentString segment(cs.release(), false, false, nullptr);

    ensure_equals(segment.size(), coords_size);

    // Construct an interior node on the given NodedSegmentString
    {
        const std::size_t segment_index = 0;
        SegmentNode node(segment, Coordinate(2, 2), segment_index,
                         segment.getSegmentOctant(segment_index));

        ensure_equals(node.segmentIndex, segment_index);

        // on first endpoint ...
        ensure(node.isInterior());

    }

}

template<>
template<>
void object::test<4>
()
{
    using geos::geom::Coordinate;
    using geos::noding::NodedSegmentString;
    using geos::noding::SegmentNode;

    // Create coordinates sequence
    const std::size_t coords_size = 2;
    auto cs = geos::detail::make_unique<geos::geom::CoordinateSequence>(0u, coords_size);

    ensure(nullptr != cs.get());

    Coordinate c0(0, 0);
    Coordinate c1(3, 3);
    cs->add(c0);
    cs->add(c1);

    ensure_equals(cs->size(), coords_size);

    // Create SegmentString instance

    NodedSegmentString segment(cs.release(), false, false, nullptr);

    ensure_equals(segment.size(), coords_size);

    // Construct a node that doesn't even intersect !!
    {
        const std::size_t segment_index = 0;
        SegmentNode node(segment, Coordinate(1, 2), segment_index,
                         segment.getSegmentOctant(segment_index));

        ensure_equals(node.segmentIndex, segment_index);

        // on first endpoint ...
        ensure(node.isInterior());

    }

}

} // namespace tut