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
|
#include <tut/tut.hpp>
// geos
#include <geos_c.h>
#include "capi_test_utils.h"
namespace tut {
//
// Test Group
//
struct test_geosunion_data : public capitest::utility {};
typedef test_group<test_geosunion_data> group;
typedef group::object object;
group test_geosunion("capi::GEOSUnion");
template<>
template<>
void object::test<1>()
{
GEOSGeometry* a = GEOSGeomFromWKT("POINT (2 8)");
GEOSGeometry* b = GEOSGeomFromWKT("POINT (3 9)");
ensure(a);
ensure(b);
GEOSSetSRID(a, 4326);
GEOSGeometry* result = GEOSUnion(a, b);
GEOSGeometry* expected = GEOSGeomFromWKT("MULTIPOINT ((2 8), (3 9))");
ensure(result);
ensure(expected);
ensure_equals(GEOSEqualsExact(result, expected, 0), 1);
ensure_equals(GEOSGetSRID(a), GEOSGetSRID(result));
GEOSGeom_destroy(a);
GEOSGeom_destroy(b);
GEOSGeom_destroy(result);
GEOSGeom_destroy(expected);
}
// Verify that no crash occurs in overlay with NaN coordinates
// https://github.com/libgeos/geos/issues/606
template<>
template<>
void object::test<2>()
{
std::string wkb1 = "010100000000000000000000000000000000000840";
std::string wkb2 = "01020000000300000049544C553736090000FFFF544E494F500000000000000000FFFFFF2B2B2B2B2BFFFFFFFFFFFFFFFF00FFFFFFFFFFFFFF";
geom1_ = GEOSGeomFromHEX_buf((unsigned char*) wkb1.c_str(), wkb1.size());
geom2_ = GEOSGeomFromHEX_buf((unsigned char*) wkb2.c_str(), wkb2.size());
ensure(geom1_);
ensure(geom2_);
GEOSGeometry* result = GEOSUnion(geom1_, geom2_);
(void) result; // no crash
}
template<>
template<>
void object::test<3>()
{
geom1_ = fromWKT("CIRCULARSTRING (0 0, 1 1, 2 0)");
geom2_ = fromWKT("LINESTRING (1 0, 2 1)");
ensure(geom1_);
ensure(geom2_);
result_ = GEOSUnion(geom1_, geom2_);
ensure("curved geometry not supported", result_ == nullptr);
}
} // namespace tut
|