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 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
|
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <cppunit/extensions/HelperMacros.h>
#include "CppAssertHelper.h"
#include "ZKMocks.h"
#include <proto.h>
using namespace std;
class Zookeeper_operations : public CPPUNIT_NS::TestFixture
{
CPPUNIT_TEST_SUITE(Zookeeper_operations);
#ifndef THREADED
CPPUNIT_TEST(testPing);
CPPUNIT_TEST(testUnsolicitedPing);
CPPUNIT_TEST(testTimeoutCausedByWatches1);
CPPUNIT_TEST(testTimeoutCausedByWatches2);
#else
CPPUNIT_TEST(testAsyncWatcher1);
CPPUNIT_TEST(testAsyncGetOperation);
#endif
CPPUNIT_TEST(testOperationsAndDisconnectConcurrently1);
CPPUNIT_TEST(testOperationsAndDisconnectConcurrently2);
CPPUNIT_TEST(testConcurrentOperations1);
CPPUNIT_TEST_SUITE_END();
zhandle_t *zh;
FILE *logfile;
static void watcher(zhandle_t *, int, int, const char *,void*){}
public:
Zookeeper_operations() {
logfile = openlogfile("Zookeeper_operations");
}
~Zookeeper_operations() {
if (logfile) {
fflush(logfile);
fclose(logfile);
logfile = 0;
}
}
void setUp()
{
zoo_set_log_stream(logfile);
zoo_deterministic_conn_order(0);
zh=0;
}
void tearDown()
{
zookeeper_close(zh);
}
class AsyncGetOperationCompletion: public AsyncCompletion{
public:
AsyncGetOperationCompletion():called_(false),rc_(ZAPIERROR){}
virtual void dataCompl(int rc, const char *value, int len, const Stat *stat){
synchronized(mx_);
called_=true;
rc_=rc;
value_.erase();
if(rc!=ZOK) return;
value_.assign(value,len);
if(stat)
stat_=*stat;
}
bool operator()()const{
synchronized(mx_);
return called_;
}
mutable Mutex mx_;
bool called_;
int rc_;
string value_;
NodeStat stat_;
};
#ifndef THREADED
// send two get data requests; verify that the corresponding completions called
void testConcurrentOperations1()
{
Mock_gettimeofday timeMock;
ZookeeperServer zkServer;
// must call zookeeper_close() while all the mocks are in scope
CloseFinally guard(&zh);
zh=zookeeper_init("localhost:2121",watcher,10000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// simulate connected state
forceConnected(zh);
int fd=0;
int interest=0;
timeval tv;
// first operation
AsyncGetOperationCompletion res1;
zkServer.addOperationResponse(new ZooGetResponse("1",1));
int rc=zoo_aget(zh,"/x/y/1",0,asyncCompletion,&res1);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// second operation
AsyncGetOperationCompletion res2;
zkServer.addOperationResponse(new ZooGetResponse("2",1));
rc=zoo_aget(zh,"/x/y/2",0,asyncCompletion,&res2);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// process the send queue
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
while((rc=zookeeper_process(zh,interest))==ZOK) {
millisleep(100);
//printf("%d\n", rc);
}
//printf("RC = %d", rc);
CPPUNIT_ASSERT_EQUAL((int)ZNOTHING,rc);
CPPUNIT_ASSERT_EQUAL((int)ZOK,res1.rc_);
CPPUNIT_ASSERT_EQUAL(string("1"),res1.value_);
CPPUNIT_ASSERT_EQUAL((int)ZOK,res2.rc_);
CPPUNIT_ASSERT_EQUAL(string("2"),res2.value_);
}
// send two getData requests and disconnect while the second request is
// outstanding;
// verify the completions are called
void testOperationsAndDisconnectConcurrently1()
{
Mock_gettimeofday timeMock;
ZookeeperServer zkServer;
// must call zookeeper_close() while all the mocks are in scope
CloseFinally guard(&zh);
zh=zookeeper_init("localhost:2121",watcher,10000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// simulate connected state
forceConnected(zh);
int fd=0;
int interest=0;
timeval tv;
// first operation
AsyncGetOperationCompletion res1;
zkServer.addOperationResponse(new ZooGetResponse("1",1));
int rc=zoo_aget(zh,"/x/y/1",0,asyncCompletion,&res1);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// second operation
AsyncGetOperationCompletion res2;
zkServer.addOperationResponse(new ZooGetResponse("2",1));
rc=zoo_aget(zh,"/x/y/2",0,asyncCompletion,&res2);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// process the send queue
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// simulate a disconnect
zkServer.setConnectionLost();
rc=zookeeper_interest(zh,&fd,&interest,&tv);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZCONNECTIONLOSS,rc);
CPPUNIT_ASSERT_EQUAL((int)ZOK,res1.rc_);
CPPUNIT_ASSERT_EQUAL(string("1"),res1.value_);
CPPUNIT_ASSERT_EQUAL((int)ZCONNECTIONLOSS,res2.rc_);
CPPUNIT_ASSERT_EQUAL(string(""),res2.value_);
}
// send two getData requests and simulate timeout while the both request
// are pending;
// verify the completions are called
void testOperationsAndDisconnectConcurrently2()
{
Mock_gettimeofday timeMock;
ZookeeperServer zkServer;
// must call zookeeper_close() while all the mocks are in scope
CloseFinally guard(&zh);
zh=zookeeper_init("localhost:2121",watcher,10000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// simulate connected state
forceConnected(zh);
int fd=0;
int interest=0;
timeval tv;
// first operation
AsyncGetOperationCompletion res1;
zkServer.addOperationResponse(new ZooGetResponse("1",1));
int rc=zoo_aget(zh,"/x/y/1",0,asyncCompletion,&res1);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// second operation
AsyncGetOperationCompletion res2;
zkServer.addOperationResponse(new ZooGetResponse("2",1));
rc=zoo_aget(zh,"/x/y/2",0,asyncCompletion,&res2);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// simulate timeout
timeMock.tick(+10); // advance system time by 10 secs
// the next call to zookeeper_interest should return ZOPERATIONTIMEOUT
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOPERATIONTIMEOUT,rc);
// make sure the completions have been called
CPPUNIT_ASSERT_EQUAL((int)ZOPERATIONTIMEOUT,res1.rc_);
CPPUNIT_ASSERT_EQUAL((int)ZOPERATIONTIMEOUT,res2.rc_);
}
class PingCountingServer: public ZookeeperServer{
public:
PingCountingServer():pingCount_(0){}
// called when a client request is received
virtual void onMessageReceived(const RequestHeader& rh, iarchive* ia){
if(rh.type==ZOO_PING_OP){
pingCount_++;
}
}
int pingCount_;
};
// establish a connection; idle for a while
// verify ping was sent at least once
void testPing()
{
const int TIMEOUT=9; // timeout in secs
Mock_gettimeofday timeMock;
PingCountingServer zkServer;
// must call zookeeper_close() while all the mocks are in scope
CloseFinally guard(&zh);
// receive timeout is in milliseconds
zh=zookeeper_init("localhost:1234",watcher,TIMEOUT*1000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// simulate connected state
forceConnected(zh);
int fd=0;
int interest=0;
timeval tv;
// Round 1.
int rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// simulate waiting for the select() call to timeout;
// advance the system clock accordingly
timeMock.tick(tv);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZNOTHING,rc);
// verify no ping sent
CPPUNIT_ASSERT(zkServer.pingCount_==0);
// Round 2.
// the client should have the idle threshold exceeded, by now
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// assume the socket is writable, so no idling here; move on to
// zookeeper_process immediately
rc=zookeeper_process(zh,interest);
// ZNOTHING means the client hasn't received a ping response yet
CPPUNIT_ASSERT_EQUAL((int)ZNOTHING,rc);
// verify a ping is sent
CPPUNIT_ASSERT_EQUAL(1,zkServer.pingCount_);
// Round 3.
// we're going to receive a server PING response and make sure
// that the client has updated its last_recv timestamp
zkServer.addRecvResponse(new PingResponse);
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// pseudo-sleep for a short while (10 ms)
timeMock.millitick(10);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// only one ping so far?
CPPUNIT_ASSERT_EQUAL(1,zkServer.pingCount_);
CPPUNIT_ASSERT(timeMock==zh->last_recv);
// Round 4
// make sure that a ping is not sent if something is outstanding
AsyncGetOperationCompletion res1;
rc=zoo_aget(zh,"/x/y/1",0,asyncCompletion,&res1);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
timeMock.tick(tv);
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZNOTHING,rc);
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// pseudo-sleep for a short while (10 ms)
timeMock.millitick(10);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZNOTHING,rc);
// only one ping so far?
CPPUNIT_ASSERT_EQUAL(1,zkServer.pingCount_);
}
// ZOOKEEPER-2253: Permit unsolicited pings
void testUnsolicitedPing()
{
const int TIMEOUT=9; // timeout in secs
Mock_gettimeofday timeMock;
PingCountingServer zkServer;
// must call zookeeper_close() while all the mocks are in scope
CloseFinally guard(&zh);
// receive timeout is in milliseconds
zh=zookeeper_init("localhost:1234",watcher,TIMEOUT*1000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// simulate connected state
forceConnected(zh);
int fd=0;
int interest=0;
timeval tv;
int rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// verify no ping sent
CPPUNIT_ASSERT(zkServer.pingCount_==0);
// we're going to receive a unsolicited PING response; ensure
// that the client has updated its last_recv timestamp
timeMock.tick(tv);
zkServer.addRecvResponse(new PingResponse);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
CPPUNIT_ASSERT(timeMock==zh->last_recv);
}
// simulate a watch arriving right before a ping is due
// assert the ping is sent nevertheless
void testTimeoutCausedByWatches1()
{
const int TIMEOUT=9; // timeout in secs
Mock_gettimeofday timeMock;
PingCountingServer zkServer;
// must call zookeeper_close() while all the mocks are in scope
CloseFinally guard(&zh);
// receive timeout is in milliseconds
zh=zookeeper_init("localhost:1234",watcher,TIMEOUT*1000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// simulate connected state
forceConnected(zh);
int fd=0;
int interest=0;
timeval tv;
// Round 1.
int rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// simulate waiting for the select() call to timeout;
// advance the system clock accordingly
timeMock.tick(tv);
timeMock.tick(-1); // set the clock to a millisecond before a ping is due
// trigger a watch now
zkServer.addRecvResponse(new ZNodeEvent(ZOO_CHANGED_EVENT,"/x/y/z"));
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// arrival of a watch sets the last_recv to the current time
CPPUNIT_ASSERT(timeMock==zh->last_recv);
// spend 1 millisecond by processing the watch
timeMock.tick(1);
// Round 2.
// a ping is due; zookeeper_interest() must send it now
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// no delay here -- as if the socket is immediately writable
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZNOTHING,rc);
// verify a ping is sent
CPPUNIT_ASSERT_EQUAL(1,zkServer.pingCount_);
}
// similar to testTimeoutCausedByWatches1, but this time the watch is
// triggered while the client has an outstanding request
// assert the ping is sent on time
void testTimeoutCausedByWatches2()
{
const int TIMEOUT=9; // timeout in secs
Mock_gettimeofday now;
PingCountingServer zkServer;
// must call zookeeper_close() while all the mocks are in scope
CloseFinally guard(&zh);
// receive timeout is in milliseconds
zh=zookeeper_init("localhost:1234",watcher,TIMEOUT*1000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// simulate connected state
forceConnected(zh);
// queue up a request; keep it pending (as if the server is busy or has died)
AsyncGetOperationCompletion res1;
zkServer.addOperationResponse(new ZooGetResponse("2",1));
int rc=zoo_aget(zh,"/x/y/1",0,asyncCompletion,&res1);
int fd=0;
int interest=0;
timeval tv;
// Round 1.
// send the queued up zoo_aget() request
Mock_gettimeofday beginningOfTimes(now); // remember when we started
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// no delay -- the socket is writable
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// Round 2.
// what's next?
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
// no response from the server yet -- waiting in the select() call
now.tick(tv);
// a watch has arrived, thus preventing the connection from timing out
zkServer.addRecvResponse(new ZNodeEvent(ZOO_CHANGED_EVENT,"/x/y/z"));
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc); // read the watch message
CPPUNIT_ASSERT_EQUAL(0,zkServer.pingCount_); // not yet!
//Round 3.
// now is the time to send a ping; make sure it's actually sent
rc=zookeeper_interest(zh,&fd,&interest,&tv);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
rc=zookeeper_process(zh,interest);
CPPUNIT_ASSERT_EQUAL((int)ZNOTHING,rc);
// verify a ping is sent
CPPUNIT_ASSERT_EQUAL(1,zkServer.pingCount_);
// make sure only 1/3 of the timeout has passed
CPPUNIT_ASSERT_EQUAL((int32_t)TIMEOUT/3*1000,toMilliseconds(now-beginningOfTimes));
}
#else
class TestGetDataJob: public TestJob{
public:
TestGetDataJob(ZookeeperServer* svr,zhandle_t* zh, int reps=500)
:svr_(svr),zh_(zh),rc_(ZAPIERROR),reps_(reps){}
virtual void run(){
int i;
for(i=0;i<reps_;i++){
char buf;
int size=sizeof(buf);
if (i % 10 == 0) {
// We need to pause every once in a while so we don't
// get too far ahead and finish before the disconnect
millisleep(1);
}
svr_->addOperationResponse(new ZooGetResponse("1",1));
rc_=zoo_get(zh_,"/x/y/z",0,&buf,&size,0);
if(rc_!=ZOK){
break;
}
}
}
ZookeeperServer* svr_;
zhandle_t* zh_;
int rc_;
int reps_;
};
class TestConcurrentOpJob: public TestGetDataJob{
public:
static const int REPS=500;
TestConcurrentOpJob(ZookeeperServer* svr,zhandle_t* zh):
TestGetDataJob(svr,zh,REPS){}
virtual TestJob* clone() const {
return new TestConcurrentOpJob(svr_,zh_);
}
virtual void validate(const char* file, int line) const{
CPPUNIT_ASSERT_EQUAL_MESSAGE_LOC("ZOK != rc",(int)ZOK,rc_,file,line);
}
};
void testConcurrentOperations1()
{
for(int counter=0; counter<50; counter++){
// frozen time -- no timeouts and no pings
Mock_gettimeofday timeMock;
ZookeeperServer zkServer;
Mock_poll pollMock(&zkServer,ZookeeperServer::FD);
// must call zookeeper_close() while all the mocks are in the scope!
CloseFinally guard(&zh);
zh=zookeeper_init("localhost:2121",watcher,10000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// make sure the client has connected
CPPUNIT_ASSERT(ensureCondition(ClientConnected(zh),1000)<1000);
TestJobManager jmgr(TestConcurrentOpJob(&zkServer,zh),10);
jmgr.startAllJobs();
jmgr.wait();
// validate test results
VALIDATE_JOBS(jmgr);
}
}
class ZKGetJob: public TestJob{
public:
static const int REPS=1000;
ZKGetJob(zhandle_t* zh)
:zh_(zh),rc_(ZAPIERROR){}
virtual TestJob* clone() const {
return new ZKGetJob(zh_);
}
virtual void run(){
int i;
for(i=0;i<REPS;i++){
char buf;
int size=sizeof(buf);
rc_=zoo_get(zh_,"/xyz",0,&buf,&size,0);
if(rc_!=ZOK){
break;
}
}
//TEST_TRACE(("Finished %d iterations",i));
}
virtual void validate(const char* file, int line) const{
CPPUNIT_ASSERT_EQUAL_MESSAGE_LOC("ZOK != rc",(int)ZOK,rc_,file,line);
}
zhandle_t* zh_;
int rc_;
};
// this test connects to a real ZK server and creates the /xyz node and sends
// lots of zoo_get requests.
// to run this test use the following command:
// zktest-mt Zookeeper_operations::testOperationsAndDisconnectConcurrently2 localhost:3181
// where the second parameter is the server host and port
void testOperationsAndDisconnectConcurrently2()
{
if(globalTestConfig.getTestName().find(__func__)==string::npos ||
globalTestConfig.getExtraOptCount()==0)
{
// only run this test when specifically asked so
return;
}
string host(*(globalTestConfig.getExtraOptBegin()));
zhandle_t* lzh=zookeeper_init(host.c_str(),watcher,10000,0,0,0);
CPPUNIT_ASSERT(lzh!=0);
// make sure the client has connected
CPPUNIT_ASSERT_MESSAGE("Unable to connect to the host",
ensureCondition(ClientConnected(zh),5000)<5000);
char realpath[1024];
int rc=zoo_create(lzh,"/xyz","1",1,&ZOO_OPEN_ACL_UNSAFE,0,realpath,sizeof(realpath)-1);
CPPUNIT_ASSERT(rc==ZOK || rc==ZNODEEXISTS);
zookeeper_close(lzh);
for(int counter=0; counter<200; counter++){
TEST_TRACE(("Loop count %d",counter));
CloseFinally guard(&zh);
zh=zookeeper_init(host.c_str(),watcher,10000,0,0,0);
CPPUNIT_ASSERT(zh!=0);
// make sure the client has connected
CPPUNIT_ASSERT_MESSAGE("Unable to connect to the host",
ensureCondition(ClientConnected(zh),5000)<5000);
TestJobManager jmgr(ZKGetJob(zh),10);
jmgr.startJobsImmediately();
jmgr.wait();
VALIDATE_JOBS(jmgr);
TEST_TRACE(("run %d finished",counter));
}
}
class TestConcurrentOpWithDisconnectJob: public TestGetDataJob{
public:
static const int REPS=1000;
TestConcurrentOpWithDisconnectJob(ZookeeperServer* svr,zhandle_t* zh):
TestGetDataJob(svr,zh,REPS){}
virtual TestJob* clone() const {
return new TestConcurrentOpWithDisconnectJob(svr_,zh_);
}
virtual void validate(const char* file, int line) const{
CPPUNIT_ASSERT_EQUAL_MESSAGE_LOC("ZCONNECTIONLOSS != rc",(int)ZCONNECTIONLOSS,rc_,file,line);
}
};
// this test is not 100% accurate in a sense it may not detect all error cases.
// TODO: I can't think of a test that is 100% accurate and doesn't interfere
// with the code being tested (in terms of introducing additional
// implicit synchronization points)
void testOperationsAndDisconnectConcurrently1()
{
for(int counter=0; counter<50; counter++){
//TEST_TRACE(("Loop count %d",counter));
// frozen time -- no timeouts and no pings
Mock_gettimeofday timeMock;
ZookeeperServer zkServer;
Mock_poll pollMock(&zkServer,ZookeeperServer::FD);
// must call zookeeper_close() while all the mocks are in the scope!
CloseFinally guard(&zh);
zh=zookeeper_init("localhost:2121",watcher,10000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// make sure the client has connected
CPPUNIT_ASSERT(ensureCondition(ClientConnected(zh),1000)<1000);
TestJobManager jmgr(TestConcurrentOpWithDisconnectJob(&zkServer,zh),10);
jmgr.startJobsImmediately();
// let everything startup before we shutdown the server
millisleep(4);
// reconnect attempts will start failing immediately
zkServer.setServerDown(0);
// next recv call will return 0
zkServer.setConnectionLost();
jmgr.wait();
VALIDATE_JOBS(jmgr);
}
}
// call zoo_aget() in the multithreaded mode
void testAsyncGetOperation()
{
Mock_gettimeofday timeMock;
ZookeeperServer zkServer;
Mock_poll pollMock(&zkServer,ZookeeperServer::FD);
// must call zookeeper_close() while all the mocks are in the scope!
CloseFinally guard(&zh);
zh=zookeeper_init("localhost:2121",watcher,10000,TEST_CLIENT_ID,0,0);
CPPUNIT_ASSERT(zh!=0);
// make sure the client has connected
CPPUNIT_ASSERT(ensureCondition(ClientConnected(zh),1000)<1000);
AsyncGetOperationCompletion res1;
zkServer.addOperationResponse(new ZooGetResponse("1",1));
int rc=zoo_aget(zh,"/x/y/1",0,asyncCompletion,&res1);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
CPPUNIT_ASSERT(ensureCondition(res1,1000)<1000);
CPPUNIT_ASSERT_EQUAL((int)ZOK,res1.rc_);
CPPUNIT_ASSERT_EQUAL(string("1"),res1.value_);
}
class ChangeNodeWatcher: public WatcherAction{
public:
ChangeNodeWatcher():changed_(false){}
virtual void onNodeValueChanged(zhandle_t*,const char* path){
synchronized(mx_);
changed_=true;
if(path!=0) path_=path;
}
// this predicate checks if CHANGE_EVENT event type was triggered, unlike
// the isWatcherTriggered() that returns true whenever a watcher is triggered
// regardless of the event type
SyncedBoolCondition isNodeChangedTriggered() const{
return SyncedBoolCondition(changed_,mx_);
}
bool changed_;
string path_;
};
class AsyncWatcherCompletion: public AsyncCompletion{
public:
AsyncWatcherCompletion(ZookeeperServer& zkServer):zkServer_(zkServer){}
virtual void statCompl(int rc, const Stat *stat){
// we received a server response, now enqueue a watcher event
// to trigger the watcher
zkServer_.addRecvResponse(new ZNodeEvent(ZOO_CHANGED_EVENT,"/x/y/z"));
}
ZookeeperServer& zkServer_;
};
// verify that async watcher is called for znode events (CREATED, DELETED etc.)
void testAsyncWatcher1(){
Mock_gettimeofday timeMock;
ZookeeperServer zkServer;
Mock_poll pollMock(&zkServer,ZookeeperServer::FD);
// must call zookeeper_close() while all the mocks are in the scope!
CloseFinally guard(&zh);
ChangeNodeWatcher action;
zh=zookeeper_init("localhost:2121",activeWatcher,10000,
TEST_CLIENT_ID,&action,0);
CPPUNIT_ASSERT(zh!=0);
// make sure the client has connected
CPPUNIT_ASSERT(ensureCondition(ClientConnected(zh),1000)<1000);
// set the watcher
AsyncWatcherCompletion completion(zkServer);
// prepare a response for the zoo_aexists() request
zkServer.addOperationResponse(new ZooStatResponse);
int rc=zoo_aexists(zh,"/x/y/z",1,asyncCompletion,&completion);
CPPUNIT_ASSERT_EQUAL((int)ZOK,rc);
CPPUNIT_ASSERT(ensureCondition(action.isNodeChangedTriggered(),1000)<1000);
CPPUNIT_ASSERT_EQUAL(string("/x/y/z"),action.path_);
}
#endif
};
CPPUNIT_TEST_SUITE_REGISTRATION(Zookeeper_operations);
|