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 221 222 223 224 225 226 227
|
#include <tut/tut.hpp>
// geos
#include <geos_c.h>
// std
#include <limits>
#include "capi_test_utils.h"
namespace tut {
//
// Test Group
//
// Common data used in test cases.
struct test_geosidentical_data : public capitest::utility {};
typedef test_group<test_geosidentical_data> group;
typedef group::object object;
group test_geosidentical_group("capi::GEOSEqualsIdentical");
// empty inputs of different types
template<>
template<>
void object::test<1>
()
{
geom1_ = GEOSGeomFromWKT("POINT EMPTY");
geom2_ = GEOSGeomFromWKT("LINESTRING EMPTY");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// empty inputs of different dimensions
template<>
template<>
void object::test<2>
()
{
geom1_ = GEOSGeomFromWKT("POINT EMPTY");
geom2_ = GEOSGeomFromWKT("POINT Z EMPTY");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// non-empty inputs of different dimensions
template<>
template<>
void object::test<3>
()
{
geom1_ = GEOSGeomFromWKT("POINT Z (1 2 3)");
geom2_ = GEOSGeomFromWKT("POINT M (1 2 3)");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// non-empty inputs of different dimensions
template<>
template<>
void object::test<4>
()
{
geom1_ = GEOSGeomFromWKT("POINT ZM (1 2 3 4)");
geom2_ = GEOSGeomFromWKT("POINT Z (1 2 3)");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// inputs with different structure
template<>
template<>
void object::test<5>
()
{
geom1_ = GEOSGeomFromWKT("LINESTRING (1 1, 2 2)");
geom2_ = GEOSGeomFromWKT("MULTILINESTRING ((1 1, 2 2))");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// inputs with different type
template<>
template<>
void object::test<6>
()
{
geom1_ = GEOSGeomFromWKT("GEOMETRYCOLLECTION (LINESTRING (1 1, 2 2))");
geom2_ = GEOSGeomFromWKT("MULTILINESTRING ((1 1, 2 2))");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// inputs with identical non-finite values
template<>
template<>
void object::test<7>
()
{
geom1_ = GEOSGeom_createPointFromXY(std::numeric_limits<double>::quiet_NaN(), std::numeric_limits<double>::infinity());
geom2_ = GEOSGeom_createPointFromXY(std::numeric_limits<double>::quiet_NaN(), std::numeric_limits<double>::infinity());
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 1);
}
// inputs with almost-identical non-finite values
template<>
template<>
void object::test<8>
()
{
geom1_ = GEOSGeom_createPointFromXY(std::numeric_limits<double>::quiet_NaN(), 0);
geom2_ = GEOSGeom_createPointFromXY(std::numeric_limits<double>::signaling_NaN(), 0);
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 1);
}
// equal lines
template<>
template<>
void object::test<9>
()
{
geom1_ = GEOSGeomFromWKT("LINESTRING M (1 1 0, 2 2 1)");
geom2_ = GEOSGeomFromWKT("LINESTRING M (1 1 0, 2 2 1)");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 1);
}
// different lines
template<>
template<>
void object::test<10>
()
{
geom1_ = GEOSGeomFromWKT("LINESTRING M (1 1 0, 2 2 1)");
geom2_ = GEOSGeomFromWKT("LINESTRING M (1 1 1, 2 2 1)");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// equal polygons
template<>
template<>
void object::test<11>
()
{
geom1_ = GEOSGeomFromWKT("POLYGON ((0 0, 1 0, 1 1, 0 0))");
geom2_ = GEOSGeomFromWKT("POLYGON ((0 0, 1 0, 1 1, 0 0))");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 1);
}
// different polygons (ordering)
template<>
template<>
void object::test<12>
()
{
geom1_ = GEOSGeomFromWKT("POLYGON ((0 0, 1 0, 1 1, 0 0))");
geom2_ = GEOSGeomFromWKT("POLYGON ((1 0, 1 1, 0 0, 1 0))");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// different polygons (number of holes)
template<>
template<>
void object::test<13>
()
{
geom1_ = GEOSGeomFromWKT("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0), (1 1, 2 1, 2 2, 1 1))");
geom2_ = GEOSGeomFromWKT("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0), (1 1, 2 1, 2 2, 1 1), (3 3, 4 3, 4 4, 3 3))");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// identical collections
template<>
template<>
void object::test<14>
()
{
geom1_ = GEOSGeomFromWKT("MULTILINESTRING ((1 1, 2 2), (2 2, 3 3))");
geom2_ = GEOSGeomFromWKT("MULTILINESTRING ((1 1, 2 2), (2 2, 3 3))");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 1);
}
// different collections (structure)
template<>
template<>
void object::test<15>
()
{
geom1_ = GEOSGeomFromWKT("MULTILINESTRING ((1 1, 2 2), (2 2, 3 3))");
geom2_ = GEOSGeomFromWKT("MULTILINESTRING ((2 2, 3 3), (1 1, 2 2))");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 0);
}
// negative zero and positive zero are equal
template<>
template<>
void object::test<16>
()
{
geom1_ = GEOSGeom_createPointFromXY(1, 0.0);
geom2_ = GEOSGeom_createPointFromXY(1, -0.0);
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 1);
}
template<>
template<>
void object::test<17>
()
{
geom1_ = GEOSGeomFromWKT("CIRCULARSTRING (0 0, 1 1, 2 0)");
geom2_ = GEOSGeomFromWKT("CIRCULARSTRING (0 0, 1 1, 2 0)");
ensure_equals(GEOSEqualsIdentical(geom1_, geom2_), 1);
}
} // namespace tut
|