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
|
//
// Test Suite for C-API GEOSGeoJSONReader_read
#include <tut/tut.hpp>
#include "capi_test_utils.h"
namespace tut {
//
// Test Group
//
// Common data used in test cases.
struct test_capigeosgeomreadgeojson_data : public capitest::utility {
GEOSGeoJSONReader* reader_;
test_capigeosgeomreadgeojson_data() : reader_(nullptr)
{
reader_ = GEOSGeoJSONReader_create();
}
~test_capigeosgeomreadgeojson_data()
{
GEOSGeoJSONReader_destroy(reader_);
reader_ = nullptr;
}
void
test_geojson(std::string const& geojson, std::string const& wkt)
{
geom1_ = GEOSGeoJSONReader_readGeometry(reader_, &geojson[0]);
ensure("GEOSGeoJSONReader_readGeometry failed to create geometry", nullptr != geom1_);
geom2_ = fromWKT(wkt.c_str());
ensure_geometry_equals(geom1_, geom2_);
}
};
typedef test_group<test_capigeosgeomreadgeojson_data> group;
typedef group::object object;
group test_capigeosgeomreadgeojson_group("capi::GEOSGeomGeoJSONRead");
//
// Test Cases
//
template<>
template<>
void object::test<1>
()
{
std::string geojson("{\"type\":\"Point\",\"coordinates\":[-117.0,33.0]}");
std::string wkt("POINT(-117.0 33.0)");
test_geojson(geojson, wkt);
}
template<>
template<>
void object::test<2>
()
{
std::string geojson("{\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[-117.0,33.0]}},{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[-122.0,45.0]}}]}");
std::string wkt("GEOMETRYCOLLECTION (POINT (-117.000 33.000), POINT (-122.000 45.000))");
test_geojson(geojson, wkt);
}
template<>
template<>
void object::test<3>
()
{
std::string geojson("<gml>NOT_GEO_JSON</gml>");
geom1_ = GEOSGeoJSONReader_readGeometry(reader_, &geojson[0]);
ensure(geom1_ == nullptr);
}
}
|