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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
|
#include <string>
#include <iostream>
#include <iomanip>
#include <vector>
#include <sstream>
#include <memory>
#include <cstring>
#include <time.h>
#include "xmlrpc-c/girerr.hpp"
using girerr::error;
#include "xmlrpc-c/base.hpp"
#include "xmlrpc-c/oldcppwrapper.hpp"
#include "xmlrpc-c/registry.hpp"
#include "c_util.h"
#include "tools.hpp"
#include "value.hpp"
using namespace xmlrpc_c;
using namespace std;
namespace {
class intTestSuite : public testSuite {
public:
virtual string suiteName() {
return "intTestSuite";
}
virtual void runtests(unsigned int const) {
value_int int1(7);
TEST(static_cast<int>(int1) == 7);
value_int int2(-7);
TEST(static_cast<int>(int2) == -7);
value val1(int1);
TEST(val1.type() == value::TYPE_INT);
value_int int3(val1);
TEST(static_cast<int>(int3) == 7);
try {
value_int int4(value_double(3.7));
TEST_FAILED("invalid cast double-int suceeded");
} catch (error const&) {}
value const int1x(toValue(7));
TEST(int1x.type() == value::TYPE_INT);
TEST(static_cast<int>(value_int(int1x)) == 7);
int test1x;
fromValue(test1x, int1x);
TEST(test1x == 7);
}
};
class doubleTestSuite : public testSuite {
public:
virtual string suiteName() {
return "doubleTestSuite";
}
virtual void runtests(unsigned int const) {
value_double double1(3.14);
TEST(static_cast<double>(double1) == 3.14);
value val1(double1);
TEST(val1.type() == value::TYPE_DOUBLE);
value_double double2(val1);
TEST(static_cast<double>(double2) == 3.14);
try {
value_double double4(value_int(4));
TEST_FAILED("invalid cast int-double suceeded");
} catch (error const&) {}
value const double1x(toValue(3.14));
TEST(double1x.type() == value::TYPE_DOUBLE);
TEST(static_cast<double>(value_double(double1x)) == 3.14);
double test1x;
fromValue(test1x, double1x);
TEST(test1x == 3.14);
}
};
class booleanTestSuite : public testSuite {
public:
virtual string suiteName() {
return "booleanTestSuite";
}
virtual void runtests(unsigned int const) {
value_boolean boolean1(true);
TEST(static_cast<bool>(boolean1) == true);
value_boolean boolean2(false);
TEST(static_cast<bool>(boolean2) == false);
value val1(boolean1);
TEST(val1.type() == value::TYPE_BOOLEAN);
value_boolean boolean3(val1);
TEST(static_cast<bool>(boolean3) == true);
try {
value_boolean boolean4(value_int(4));
TEST_FAILED("invalid cast int-boolean suceeded");
} catch (error const&) {}
value const boolean1x(toValue(true));
TEST(boolean1x.type() == value::TYPE_BOOLEAN);
TEST(static_cast<bool>(value_boolean(boolean1x)) == true);
bool test1x;
fromValue(test1x, boolean1x);
TEST(test1x == true);
}
};
#if XMLRPC_HAVE_TIMEVAL
static struct timeval
makeTv(time_t const secs,
unsigned int const usecs) {
struct timeval retval;
retval.tv_sec = secs;
retval.tv_usec = usecs;
return retval;
}
static bool
tvIsEqual(struct timeval const comparand,
struct timeval const comparator) {
return
comparand.tv_sec == comparator.tv_sec &&
comparand.tv_usec == comparator.tv_usec;
}
#endif
#if XMLRPC_HAVE_TIMESPEC
static struct timespec
makeTs(time_t const secs,
unsigned int const usecs) {
struct timespec retval;
retval.tv_sec = secs;
retval.tv_nsec = usecs * 1000;
return retval;
}
static bool
tsIsEqual(struct timespec const comparand,
struct timespec const comparator) {
return
comparand.tv_sec == comparator.tv_sec &&
comparand.tv_nsec == comparator.tv_nsec;
}
#endif
static xmlrpc_datetime const
makeXd(time_t const secs,
unsigned int const usecs) {
struct tm const tm = *gmtime(&secs);
xmlrpc_datetime retval;
retval.Y = 1900 + tm.tm_year;
retval.M = 1 + tm.tm_mon;
retval.D = tm.tm_mday;
retval.h = tm.tm_hour;
retval.m = tm.tm_min;
retval.s = tm.tm_sec;
retval.u = usecs;
return retval;
}
static bool
xdIsEqual(xmlrpc_datetime const comparand,
xmlrpc_datetime const comparator) {
return
comparand.Y == comparator.Y &&
comparand.M == comparator.M &&
comparand.D == comparator.D &&
comparand.h == comparator.h &&
comparand.m == comparator.m &&
comparand.s == comparator.s &&
comparand.u == comparator.u;
}
class datetimeTestSuite : public testSuite {
public:
virtual string suiteName() {
return "datetimeTestSuite";
}
virtual void runtests(unsigned int const) {
time_t const testTime(900684535);
string const testTime8601("19980717T140855,000000Z");
value_datetime datetime1("19980717T14:08:55");
TEST(static_cast<time_t>(datetime1) == testTime);
value_datetime datetime2(testTime);
TEST(static_cast<time_t>(datetime2) == testTime);
value val1(datetime1);
TEST(val1.type() == value::TYPE_DATETIME);
value_datetime datetime3(val1);
TEST(static_cast<time_t>(datetime3) == testTime);
#if XMLRPC_HAVE_TIMEVAL
struct timeval const testTimeTv(makeTv(testTime, 0));
value_datetime datetime4(testTimeTv);
TEST(static_cast<time_t>(datetime4) == testTime);
TEST(tvIsEqual(static_cast<timeval>(datetime4), testTimeTv));
#endif
#if XMLRPC_HAVE_TIMESPEC
struct timespec const testTimeTs(makeTs(testTime, 0));
value_datetime datetime5(testTimeTs);
TEST(static_cast<time_t>(datetime5) == testTime);
TEST(tsIsEqual(static_cast<timespec>(datetime5), testTimeTs));
#endif
xmlrpc_datetime const testTimeXd(makeXd(testTime, 5));
value_datetime datetime6(testTimeXd);
TEST(static_cast<time_t>(datetime6) == testTime);
TEST(xdIsEqual(static_cast<xmlrpc_datetime>(datetime6), testTimeXd));
string const iso8601Value(datetime1.iso8601Value());
TEST(iso8601Value == testTime8601);
try {
value_datetime datetime4(value_int(4));
TEST_FAILED("invalid cast int-datetime suceeded");
} catch (error const&) {}
}
};
class stringTestSuite : public testSuite {
public:
virtual string suiteName() {
return "stringTestSuite";
}
virtual void runtests(unsigned int const) {
value_string string1("hello world");
TEST(static_cast<string>(string1) == "hello world");
value_string string2("embedded\0null");
TEST(static_cast<string>(string2) == "embedded\0null");
value val1(string1);
TEST(val1.type() == value::TYPE_STRING);
value_string string3(val1);
TEST(static_cast<string>(string3) == "hello world");
try {
value_string string4(value_int(4));
TEST_FAILED("invalid cast int-string succeeded");
} catch (error const&) {}
value_string string5("hello world", value_string::nlCode_all);
TEST(static_cast<string>(string5) == "hello world");
value_string string6("hello\nthere\rworld\r\n\n",
value_string::nlCode_all);
TEST(static_cast<string>(string6) == "hello\nthere\nworld\n\n");
TEST(string6.crlfValue() == "hello\r\nthere\r\nworld\r\n\r\n");
value_string string7("hello\nthere\rworld\r\n\n",
value_string::nlCode_lf);
TEST(static_cast<string>(string7) == "hello\nthere\rworld\r\n\n");
value const string1x(toValue("hello world"));
TEST(string1x.type() == value::TYPE_STRING);
TEST(static_cast<string>(value_string(string1x)) == "hello world");
string test1x;
fromValue(test1x, string1x);
TEST(test1x == "hello world");
value const string2x(toValue(string("hello world")));
TEST(string2x.type() == value::TYPE_STRING);
TEST(static_cast<string>(value_string(string2x)) == "hello world");
string1.validate();
value_string badString("hello \x18 there");
try {
badString.validate();
TEST_FAILED("'validate' of string containging a control "
"character succeeded");
} catch (error const&) {}
}
};
class bytestringTestSuite : public testSuite {
public:
virtual string suiteName() {
return "bytestringTestSuite";
}
virtual void runtests(unsigned int const) {
unsigned char bytestringArray[] = {0x10, 0x11, 0x12, 0x13, 0x14};
cbytestring
bytestringData(&bytestringArray[0], &bytestringArray[4]);
value_bytestring bytestring1(bytestringData);
cbytestring const dataReadBack1(bytestring1.vectorUcharValue());
TEST(dataReadBack1 == bytestringData);
value val1(bytestring1);
TEST(val1.type() == value::TYPE_BYTESTRING);
value_bytestring bytestring2(val1);
vector<unsigned char> const dataReadBack2(
bytestring2.vectorUcharValue());
TEST(dataReadBack2 == bytestringData);
try {
value_bytestring bytestring4(value_int(4));
TEST_FAILED("invalid cast int-bytestring suceeded");
} catch (error const&) {}
value const bytestring1x(toValue(bytestringData));
TEST(bytestring1x.type() == value::TYPE_BYTESTRING);
vector<unsigned char> const dataReadBack1x(
value_bytestring(bytestring1x).vectorUcharValue());
TEST(dataReadBack1x == bytestringData);
vector<unsigned char> test1x;
fromValue(test1x, bytestring1x);
TEST(test1x == bytestringData);
}
};
class nilTestSuite : public testSuite {
public:
virtual string suiteName() {
return "nilTestSuite";
}
virtual void runtests(unsigned int const) {
value_nil nil1;
value val1(nil1);
TEST(val1.type() == value::TYPE_NIL);
value_nil nil2(val1);
try {
value_nil nil4(value_int(4));
TEST_FAILED("invalid cast int-nil suceeded");
} catch (error const&) {}
}
};
class i8TestSuite : public testSuite {
public:
virtual string suiteName() {
return "i8TestSuite";
}
virtual void runtests(unsigned int const) {
value_i8 int1(7);
TEST(static_cast<xmlrpc_int64>(int1) == 7);
value_i8 int2(-7);
TEST(static_cast<xmlrpc_int64>(int2) == -7);
value_i8 int5(1ull << 40);
TEST(static_cast<xmlrpc_int64>(int5) == (1ull << 40));
value val1(int1);
TEST(val1.type() == value::TYPE_I8);
value_i8 int3(val1);
TEST(static_cast<xmlrpc_int64>(int3) == 7);
try {
value_i8 int4(value_double(3.7));
TEST_FAILED("invalid cast double-i8 suceeded");
} catch (error const&) {}
value const int1x(toValue((xmlrpc_int64)7));
TEST(int1x.type() == value::TYPE_I8);
TEST(static_cast<xmlrpc_int64>(value_i8(int1x)) == 7);
xmlrpc_int64 test1x;
fromValue(test1x, int1x);
TEST(test1x == 7);
}
};
class structTestSuite : public testSuite {
public:
virtual string suiteName() {
return "structTestSuite";
}
virtual void runtests(unsigned int const) {
cstruct structData;
pair<string, value> member("the_integer", value_int(9));
structData.insert(member);
value_struct struct1(structData);
map<string, value> dataReadBack(struct1);
TEST(static_cast<int>(value_int(dataReadBack["the_integer"])) == 9);
value val1(struct1);
TEST(val1.type() == value::TYPE_STRUCT);
value_struct struct2(val1);
try {
value_struct struct4(value_int(4));
TEST_FAILED("invalid cast int-struct suceeded");
} catch (error const&) {}
map<string, int> structDatax;
structDatax["one"] = 1;
structDatax["two"] = 2;
value const struct5(toValue(structDatax));
TEST(struct5.type() == value::TYPE_STRUCT);
map<string, value> dataReadBackx;
dataReadBackx = value_struct(struct5);
TEST(static_cast<int>(value_int(dataReadBackx["two"])) == 2);
map<string, int> test5x;
fromValue(test5x, struct5);
TEST(test5x["two"] == 2);
}
};
class arrayTestSuite : public testSuite {
public:
virtual string suiteName() {
return "arrayTestSuite";
}
virtual void runtests(unsigned int const) {
carray arrayData;
arrayData.push_back(value_int(7));
arrayData.push_back(value_double(2.78));
arrayData.push_back(value_string("hello world"));
value_array array1(arrayData);
TEST(array1.size() == 3);
vector<value> dataReadBack1(array1.vectorValueValue());
TEST(dataReadBack1[0].type() == value::TYPE_INT);
TEST(static_cast<int>(value_int(dataReadBack1[0])) == 7);
TEST(dataReadBack1[1].type() == value::TYPE_DOUBLE);
TEST(static_cast<double>(value_double(dataReadBack1[1])) == 2.78);
TEST(dataReadBack1[2].type() == value::TYPE_STRING);
TEST(static_cast<string>(value_string(dataReadBack1[2])) ==
"hello world");
value val1(array1);
TEST(val1.type() == value::TYPE_ARRAY);
value_array array2(val1);
TEST(array2.size() == 3);
try {
value_array array4(value_int(4));
TEST_FAILED("invalid cast int-array suceeded");
} catch (error const&) {}
int const arrayDatax[] = {7, 4};
value const array5(
arrayValueArray(arrayDatax, ARRAY_SIZE(arrayDatax)));
TEST(array5.type() == value::TYPE_ARRAY);
TEST(value_array(array5).size() == 2);
vector<value> dataReadBackx(value_array(array5).vectorValueValue());
TEST(dataReadBackx.size() == 2);
TEST(static_cast<int>(value_int(dataReadBackx[0])) == 7);
vector<int> test5x;
fromValue(test5x, array5);
TEST(test5x[1] == 4);
vector<string> arrayDataVec;
arrayDataVec.push_back("hello world");
value const array6(toValue(arrayDataVec));
TEST(array6.type() == value::TYPE_ARRAY);
TEST(value_array(array6).size() == 1);
}
};
class arrayArrayTestSuite : public testSuite {
public:
virtual string suiteName() {
return "arrayArrayTestSuite";
}
virtual void runtests(unsigned int const) {
/* Empty array of arrays */
vector<vector<string> > arrayArrayDataVec;
value const arrayArray1(toValue(arrayArrayDataVec));
TEST(arrayArray1.type() == value::TYPE_ARRAY);
TEST(value_array(arrayArray1).size() == 0);
/* Array of 1 empty array */
vector<string> innerArray;
arrayArrayDataVec.push_back(innerArray);
value const arrayArray2(toValue(arrayArrayDataVec));
TEST(arrayArray2.type() == value::TYPE_ARRAY);
TEST(value_array(arrayArray2).size() == 1);
vector<value> dataReadBackx(
value_array(arrayArray2).vectorValueValue());
TEST(dataReadBackx.size() == 1);
TEST(dataReadBackx[0].type() == value::TYPE_ARRAY);
vector<value> dataReadBackx2(
value_array(dataReadBackx[0]).vectorValueValue());
TEST(dataReadBackx2.size() == 0);
}
};
} // unnamed namespace
string
valueTestSuite::suiteName() {
return "valueTestSuite";
}
void
valueTestSuite::runtests(unsigned int const indentation) {
intTestSuite().run(indentation+1);
doubleTestSuite().run(indentation+1);
booleanTestSuite().run(indentation+1);
datetimeTestSuite().run(indentation+1);
stringTestSuite().run(indentation+1);
bytestringTestSuite().run(indentation+1);
nilTestSuite().run(indentation+1);
i8TestSuite().run(indentation+1);
structTestSuite().run(indentation+1);
arrayTestSuite().run(indentation+1);
arrayArrayTestSuite().run(indentation+1);
}
|