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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
// Test Suite for C-API interrupt functions
#include <tut/tut.hpp>
// geos
#include <geos_c.h>
#include <geos/util/Interrupt.h>
// std
#include <thread>
#include "capi_test_utils.h"
namespace tut {
//
// Test Group
//
// Common data used in test cases.
struct test_capiinterrupt_data : public capitest::utility {
static int numcalls;
static int maxcalls;
static GEOSInterruptCallback* nextcb;
static void
interruptNow()
{
GEOS_interruptRequest();
}
static void
countCalls()
{
++numcalls;
if(nextcb) {
(*nextcb)();
}
}
static int
interruptAfterMaxCalls(void* data)
{
return ++*static_cast<int*>(data) >= maxcalls;
}
};
int test_capiinterrupt_data::numcalls = 0;
int test_capiinterrupt_data::maxcalls = 0;
GEOSInterruptCallback* test_capiinterrupt_data::nextcb = nullptr;
typedef test_group<test_capiinterrupt_data> group;
typedef group::object object;
group test_capiinterrupt_group("capi::GEOSInterrupt");
//
// Test Cases
//
/// Test interrupt callback being called
template<>
template<>
void object::test<1>
()
{
numcalls = 0;
initGEOS(notice, notice);
GEOS_interruptRegisterCallback(countCalls);
ensure_equals(numcalls, 0);
GEOSGeometry* geom1 = GEOSGeomFromWKT("LINESTRING(0 0, 1 0)");
ensure("GEOSGeomFromWKT failed", nullptr != geom1);
GEOSGeometry* geom2 = GEOSBuffer(geom1, 1, 8);
ensure("GEOSBuffer failed", nullptr != geom2);
ensure("interrupt callback never called", numcalls > 0);
GEOSGeom_destroy(geom1);
GEOSGeom_destroy(geom2);
GEOS_interruptRegisterCallback(nullptr); /* unregister */
finishGEOS();
}
/// Test interrupt callback being called
template<>
template<>
void object::test<2>
()
{
numcalls = 0;
initGEOS(notice, notice);
GEOS_interruptRegisterCallback(countCalls);
ensure_equals(numcalls, 0);
GEOSGeometry* geom1 = GEOSGeomFromWKT("LINESTRING(0 0, 1 1, 2 2, 4 4)");
GEOSGeometry* geom2 = GEOSGeomFromWKT("LINESTRING(0 0, 1 1.01, 4 4.001)");
ensure("GEOSGeomFromWKT failed", nullptr != geom1);
GEOSGeometry* geom3 = GEOSSnap(geom1, geom2, 0.1);
ensure("GEOSSnap failed", nullptr != geom3);
ensure("interrupt callback never called", numcalls > 0);
GEOSGeom_destroy(geom1);
GEOSGeom_destroy(geom2);
GEOSGeom_destroy(geom3);
GEOS_interruptRegisterCallback(nullptr); /* unregister */
finishGEOS();
}
/// Test interrupt callback being NOT reset by initGEOS
template<>
template<>
void object::test<3>
()
{
numcalls = 0;
GEOS_interruptRegisterCallback(countCalls);
initGEOS(notice, notice);
ensure_equals(numcalls, 0);
GEOSGeometry* geom1 = GEOSGeomFromWKT("LINESTRING(0 0, 1 0)");
ensure("GEOSGeomFromWKT failed", nullptr != geom1);
GEOSGeometry* geom2 = GEOSBuffer(geom1, 1, 8);
ensure("GEOSBufferWithStyle failed", nullptr != geom2);
ensure("interrupt callback never called", numcalls > 0);
GEOSGeom_destroy(geom1);
GEOSGeom_destroy(geom2);
GEOS_interruptRegisterCallback(nullptr);
finishGEOS();
}
/// Test interrupting from callback
template<>
template<>
void object::test<4>
()
{
initGEOS(notice, notice);
GEOSGeometry* geom1 = GEOSGeomFromWKT("LINESTRING(0 0, 1 0)");
ensure("GEOSGeomFromWKT failed", nullptr != geom1);
GEOS_interruptRegisterCallback(interruptNow);
GEOSGeometry* geom2 = GEOSBuffer(geom1, 1, 8);
ensure("GEOSBuffer wasn't interrupted", nullptr == geom2);
GEOS_interruptRegisterCallback(nullptr); /* unregister */
// TODO: check the actual exception ? (sent to notice() callback)
GEOSGeom_destroy(geom1);
finishGEOS();
}
/// Test chaining interrupt callbacks
template<>
template<>
void object::test<5>
()
{
numcalls = 0;
initGEOS(notice, notice);
GEOSGeometry* geom1 = GEOSGeomFromWKT("LINESTRING(0 0, 1 0)");
ensure("GEOSGeomFromWKT failed", nullptr != geom1);
GEOS_interruptRegisterCallback(interruptNow);
nextcb = GEOS_interruptRegisterCallback(countCalls);
GEOSGeometry* geom2 = GEOSBuffer(geom1, 1, 8);
ensure("GEOSBuffer wasn't interrupted", nullptr == geom2);
ensure_equals(numcalls, 1);
GEOS_interruptRegisterCallback(nullptr); /* unregister */
nextcb = nullptr;
GEOSGeom_destroy(geom1);
finishGEOS();
}
// Test callback is thread-local
template<>
template<>
void object::test<6>
()
{
using geos::util::CurrentThreadInterrupt;
maxcalls = 3;
int calls_1 = 0;
int calls_2 = 0;
GEOSContextHandle_t h1 = initGEOS_r(notice, notice);
GEOSContextHandle_t h2 = initGEOS_r(notice, notice);
GEOSContext_setInterruptCallback_r(h1, interruptAfterMaxCalls, &calls_1);
GEOSContext_setInterruptCallback_r(h2, interruptAfterMaxCalls, &calls_2);
// get previously registered callback and verify there was none
// (the context registered its callback only when invoking a function)
ensure(CurrentThreadInterrupt::registerCallback(nullptr, nullptr) == nullptr);
auto buffer = [](GEOSContextHandle_t handle) {
GEOSWKTReader* reader = GEOSWKTReader_create_r(handle);
GEOSGeometry* geom1 = GEOSWKTReader_read_r(handle, reader, "LINESTRING (0 0, 1 0)");
GEOSGeometry* geom2 = GEOSBuffer_r(handle, geom1, 1, 8);
GEOSGeom_destroy_r(handle, geom2);
GEOSGeom_destroy_r(handle, geom1);
GEOSWKTReader_destroy_r(handle, reader);
};
std::thread t1(buffer, h1);
std::thread t2(buffer, h2);
t1.join();
t2.join();
ensure_equals(calls_1, maxcalls);
ensure_equals(calls_2, maxcalls);
// get previously registered callback and verify there was none
// (context unregistered its callback after completing GEOSBuffer)
ensure(CurrentThreadInterrupt::registerCallback(nullptr, nullptr) == nullptr);
finishGEOS_r(h1);
finishGEOS_r(h2);
}
} // namespace tut
|