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 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974
|
#include "util/fake_etcd.h"
#include <gflags/gflags.h>
#include <glog/logging.h>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <atomic>
#include <functional>
#include <memory>
#include <mutex>
#include <string>
#include <thread>
#include <vector>
#include "base/notification.h"
#include "util/libevent_wrapper.h"
#include "util/status_test_util.h"
#include "util/sync_task.h"
#include "util/testing.h"
#include "util/thread_pool.h"
DECLARE_string(trusted_root_certs);
DEFINE_string(cert_dir, "test/testdata/urlfetcher_test_certs",
"Directory containing the test certs.");
namespace cert_trans {
using std::bind;
using std::chrono::duration;
using std::chrono::seconds;
using std::deque;
using std::function;
using std::lock_guard;
using std::map;
using std::mutex;
using std::placeholders::_1;
using std::placeholders::_2;
using std::placeholders::_3;
using std::string;
using std::this_thread::sleep_for;
using std::unique_ptr;
using std::vector;
using testing::DoAll;
using testing::ElementsAre;
using testing::InvokeWithoutArgs;
using testing::Matches;
using testing::Mock;
using testing::MockFunction;
using testing::StrictMock;
using testing::TestInfo;
using testing::UnitTest;
using testing::_;
using util::Status;
using util::SyncTask;
using util::testing::StatusIs;
DEFINE_string(etcd, "", "etcd server address");
DEFINE_int32(etcd_port, 4001, "etcd server port");
const char kValue[] = "value";
const char kValue2[] = "value2";
class FakeEtcdTest : public ::testing::Test {
public:
FakeEtcdTest()
: base_(std::make_shared<libevent::Base>()),
event_pump_(base_),
pool_(),
fetcher_(base_.get(), &pool_),
client_(FLAGS_etcd.empty()
? new FakeEtcdClient(base_.get())
: new EtcdClient(&pool_, &fetcher_, FLAGS_etcd,
FLAGS_etcd_port)),
key_prefix_(BuildKeyPrefix()) {
}
protected:
Status BlockingGet(const string& key, EtcdClient::Node* node,
int64_t* etcd_index = nullptr) {
SyncTask task(base_.get());
EtcdClient::GetResponse resp;
client_->Get(key, &resp, task.task());
task.Wait();
if (etcd_index) {
*etcd_index = resp.etcd_index;
}
*node = resp.node;
return task.status();
}
Status BlockingCreate(const string& key, const string& value,
int64_t* created_index) {
SyncTask task(base_.get());
EtcdClient::Response resp;
client_->Create(key, value, &resp, task.task());
task.Wait();
*created_index = resp.etcd_index;
return task.status();
}
Status BlockingCreateWithTTL(const string& key, const string& value,
const seconds& ttl, int64_t* created_index) {
SyncTask task(base_.get());
EtcdClient::Response resp;
client_->CreateWithTTL(key, value, ttl, &resp, task.task());
task.Wait();
*created_index = resp.etcd_index;
return task.status();
}
Status BlockingUpdate(const string& key, const string& value,
int64_t old_index, int64_t* modified_index) {
SyncTask task(base_.get());
EtcdClient::Response resp;
client_->Update(key, value, old_index, &resp, task.task());
task.Wait();
*modified_index = resp.etcd_index;
return task.status();
}
Status BlockingUpdateWithTTL(const string& key, const string& value,
const seconds& ttl, int64_t previous_index,
int64_t* modified_index) {
SyncTask task(base_.get());
EtcdClient::Response resp;
client_->UpdateWithTTL(key, value, ttl, previous_index, &resp,
task.task());
task.Wait();
*modified_index = resp.etcd_index;
return task.status();
}
Status BlockingForceSet(const string& key, const string& value,
int64_t* modified_index) {
SyncTask task(base_.get());
EtcdClient::Response resp;
client_->ForceSet(key, value, &resp, task.task());
task.Wait();
*modified_index = resp.etcd_index;
return task.status();
}
Status BlockingForceSetWithTTL(const string& key, const string& value,
const seconds& ttl, int64_t* modified_index) {
SyncTask task(base_.get());
EtcdClient::Response resp;
client_->ForceSetWithTTL(key, value, ttl, &resp, task.task());
task.Wait();
*modified_index = resp.etcd_index;
return task.status();
}
Status BlockingDelete(const string& key, int64_t previous_index) {
SyncTask task(base_.get());
client_->Delete(key, previous_index, task.task());
task.Wait();
return task.status();
}
Status BlockingGetStats(map<string, int64_t>* stats) {
SyncTask task(base_.get());
EtcdClient::StatsResponse resp;
client_->GetStoreStats(&resp, task.task());
task.Wait();
if (task.status().ok()) {
*stats = resp.stats;
}
return task.status();
}
static string BuildKeyPrefix() {
const TestInfo* const test_info(
UnitTest::GetInstance()->current_test_info());
string retval("/testing/");
retval.append(test_info->test_case_name());
retval.append("/");
retval.append(test_info->name());
return retval;
}
std::shared_ptr<libevent::Base> base_;
libevent::EventPumpThread event_pump_;
ThreadPool pool_;
UrlFetcher fetcher_;
const unique_ptr<EtcdClient> client_;
const string key_prefix_;
};
TEST_F(FakeEtcdTest, Create) {
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["createSuccess"];
int64_t created_index;
EXPECT_OK(BlockingCreate(key_prefix_, kValue, &created_index));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EtcdClient::Node node;
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(kValue, node.value_);
EXPECT_EQ(created_index, node.created_index_);
EXPECT_EQ(created_index, node.modified_index_);
}
TEST_F(FakeEtcdTest, CreateFailsIfExists) {
int64_t created_index;
EXPECT_OK(BlockingCreate(key_prefix_, kValue, &created_index));
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["createFail"];
EXPECT_THAT(BlockingCreate(key_prefix_, kValue, &created_index),
StatusIs(util::error::FAILED_PRECONDITION));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
}
TEST_F(FakeEtcdTest, Update) {
int64_t created_index;
EXPECT_OK(BlockingCreate(key_prefix_, kValue, &created_index));
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["compareAndSwapSuccess"];
int64_t modified_index;
EXPECT_OK(
BlockingUpdate(key_prefix_, kValue2, created_index, &modified_index));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EtcdClient::Node node;
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(kValue2, node.value_);
EXPECT_EQ(created_index, node.created_index_);
EXPECT_EQ(modified_index, node.modified_index_);
EXPECT_LT(created_index, modified_index);
}
TEST_F(FakeEtcdTest, UpdateFailsWithIncorrectPreviousIndex) {
int64_t created_index;
EXPECT_OK(BlockingCreate(key_prefix_, kValue, &created_index));
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["compareAndSwapFail"];
int64_t modified_index(-1);
EXPECT_THAT(BlockingUpdate(key_prefix_, kValue2, created_index - 1,
&modified_index),
StatusIs(util::error::FAILED_PRECONDITION));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EXPECT_EQ(-1, modified_index);
EtcdClient::Node node;
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(kValue, node.value_); // Not updated!
EXPECT_EQ(created_index, node.created_index_);
EXPECT_EQ(created_index, node.modified_index_);
}
TEST_F(FakeEtcdTest, CreateWithTTLExpires) {
seconds kTtl(3);
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["createSuccess"];
int64_t created_index;
EXPECT_OK(BlockingCreateWithTTL(key_prefix_, kValue, kTtl, &created_index));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EtcdClient::Node node;
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(kValue, node.value_);
EXPECT_EQ(created_index, node.created_index_);
EXPECT_EQ(created_index, node.modified_index_);
// Now wait for it to expire
sleep_for(kTtl + seconds(1));
// Vanished, in a puff of digital smoke:
expected_stats = stats;
++expected_stats["getsSuccess"];
++expected_stats["expireCount"];
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EXPECT_THAT(BlockingGet(key_prefix_, &node),
StatusIs(util::error::NOT_FOUND));
}
TEST_F(FakeEtcdTest, UpdateWithTTLExpires) {
seconds kTtl(3);
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["createSuccess"];
int64_t created_index;
EXPECT_OK(BlockingCreate(key_prefix_, kValue, &created_index));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
expected_stats = stats;
++expected_stats["compareAndSwapSuccess"];
int64_t modified_index;
EXPECT_OK(BlockingUpdateWithTTL(key_prefix_, kValue2, kTtl, created_index,
&modified_index));
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EXPECT_LT(created_index, modified_index);
EtcdClient::Node node;
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(kValue2, node.value_);
EXPECT_EQ(created_index, node.created_index_);
EXPECT_EQ(modified_index, node.modified_index_);
// Now wait for it to expire
sleep_for(kTtl + seconds(1));
expected_stats = stats;
++expected_stats["getsSuccess"];
++expected_stats["expireCount"];
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
// Vanished, in a puff of digital smoke:
EXPECT_THAT(BlockingGet(key_prefix_, &node),
StatusIs(util::error::NOT_FOUND));
}
TEST_F(FakeEtcdTest, ForceSet) {
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["createSuccess"];
int64_t created_index;
EXPECT_OK(BlockingCreate(key_prefix_, kValue, &created_index));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
expected_stats = stats;
++expected_stats["setsSuccess"];
int64_t modified_index;
EXPECT_OK(BlockingForceSet(key_prefix_, kValue2, &modified_index));
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EtcdClient::Node node;
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(kValue2, node.value_);
EXPECT_EQ(modified_index, node.created_index_);
EXPECT_EQ(modified_index, node.modified_index_);
EXPECT_LT(created_index, modified_index);
}
TEST_F(FakeEtcdTest, ForceSetWithTTLExpires) {
seconds kTtl(3);
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["createSuccess"];
int64_t created_index;
EXPECT_OK(BlockingCreate(key_prefix_, kValue, &created_index));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
expected_stats = stats;
++expected_stats["setsSuccess"];
int64_t modified_index;
EXPECT_OK(
BlockingForceSetWithTTL(key_prefix_, kValue2, kTtl, &modified_index));
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EXPECT_LT(created_index, modified_index);
EtcdClient::Node node;
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(kValue2, node.value_);
EXPECT_EQ(modified_index, node.created_index_);
EXPECT_EQ(modified_index, node.modified_index_);
// Now wait for it to expire
sleep_for(kTtl + seconds(1));
++expected_stats["getsSuccess"];
++expected_stats["expireCount"];
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
// Vanished, in a puff of digital smoke:
EXPECT_THAT(BlockingGet(key_prefix_, &node),
StatusIs(util::error::NOT_FOUND));
}
TEST_F(FakeEtcdTest, DeleteNonExistent) {
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["compareAndDeleteFail"];
Status status(BlockingDelete("/potato", 42));
EXPECT_THAT(status, StatusIs(util::error::NOT_FOUND));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
}
TEST_F(FakeEtcdTest, DeleteIncorrectIndex) {
int64_t created_index;
EXPECT_OK(BlockingCreate(key_prefix_, kValue, &created_index));
EtcdClient::Node node;
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(created_index, node.created_index_);
EXPECT_EQ(created_index, node.modified_index_);
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["compareAndDeleteFail"];
EXPECT_THAT(BlockingDelete(key_prefix_, created_index + 1),
StatusIs(util::error::FAILED_PRECONDITION));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(created_index, node.created_index_);
EXPECT_EQ(created_index, node.modified_index_);
}
TEST_F(FakeEtcdTest, Delete) {
int64_t created_index;
EXPECT_OK(BlockingCreate(key_prefix_, kValue, &created_index));
EtcdClient::Node node;
EXPECT_OK(BlockingGet(key_prefix_, &node));
EXPECT_EQ(created_index, node.created_index_);
EXPECT_EQ(created_index, node.modified_index_);
map<string, int64_t> expected_stats;
ASSERT_OK(BlockingGetStats(&expected_stats));
++expected_stats["compareAndDeleteSuccess"];
EXPECT_OK(BlockingDelete(key_prefix_, created_index));
map<string, int64_t> stats;
ASSERT_OK(BlockingGetStats(&stats));
EXPECT_EQ(expected_stats, stats);
EXPECT_THAT(BlockingGet(key_prefix_, &node),
StatusIs(util::error::NOT_FOUND));
}
class CheckingExecutor : public util::Executor {
public:
CheckingExecutor() : inner_(1), in_executor_(false) {
}
void Add(const std::function<void()>& closure) override {
inner_.Add(bind(&CheckingExecutor::Check, this, closure));
}
void Delay(const duration<double>& delay, util::Task* task) override {
LOG(FATAL) << "Not implemented";
}
void CheckInExecutor() const {
lock_guard<mutex> lock(lock_);
EXPECT_TRUE(in_executor_);
}
private:
void Check(const std::function<void()>& closure) {
{
lock_guard<mutex> lock(lock_);
CHECK(!in_executor_);
in_executor_ = true;
}
closure();
{
lock_guard<mutex> lock(lock_);
CHECK(in_executor_);
in_executor_ = false;
}
}
ThreadPool inner_;
mutable mutex lock_;
bool in_executor_;
};
MATCHER_P3(EtcdClientNodeIs, key, value, deleted, "") {
return Matches(key)(arg.key_) && Matches(value)(arg.value_) &&
Matches(deleted)(arg.deleted_);
}
TEST_F(FakeEtcdTest, WatcherForExecutor) {
const string kDir(key_prefix_);
const string kPath1(kDir + "/1");
const string kPath2(kDir + "/2");
// Make sure the directory exists and has something in it before watching.
int64_t bogus_index;
ASSERT_OK(BlockingCreate(kPath1, "", &bogus_index));
StrictMock<MockFunction<void(const vector<EtcdClient::Node>&)>> watcher;
CheckingExecutor checking_executor;
SyncTask task(&checking_executor);
Notification initial;
EXPECT_CALL(watcher, Call(ElementsAre(EtcdClientNodeIs(kPath1, "", false))))
.WillOnce(DoAll(InvokeWithoutArgs(&initial, &Notification::Notify),
InvokeWithoutArgs(&checking_executor,
&CheckingExecutor::CheckInExecutor)));
client_->Watch(
kDir, bind(&MockFunction<void(const vector<EtcdClient::Node>&)>::Call,
&watcher, _1),
task.task());
ASSERT_TRUE(initial.WaitForNotificationWithTimeout(seconds(1)));
Mock::VerifyAndClearExpectations(&watcher);
Notification second;
EXPECT_CALL(watcher,
Call(ElementsAre(EtcdClientNodeIs(kPath2, kValue, false))))
.WillOnce(DoAll(InvokeWithoutArgs(&second, &Notification::Notify),
InvokeWithoutArgs(&checking_executor,
&CheckingExecutor::CheckInExecutor)));
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath2, kValue, &created_index));
ASSERT_TRUE(second.WaitForNotificationWithTimeout(seconds(1)));
task.Cancel();
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::CANCELLED));
}
TEST_F(FakeEtcdTest, WatcherForCreate) {
const string kDir(key_prefix_);
const string kPath1(kDir + "/1");
const string kPath2(kDir + "/2");
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath1, kValue, &created_index));
StrictMock<MockFunction<void(const vector<EtcdClient::Node>&)>> watcher;
Notification initial;
EXPECT_CALL(watcher,
Call(ElementsAre(EtcdClientNodeIs(kPath1, "value", false))))
.WillOnce(InvokeWithoutArgs(&initial, &Notification::Notify));
util::SyncTask watch_task(base_.get());
client_->Watch(
kDir, bind(&MockFunction<void(const vector<EtcdClient::Node>&)>::Call,
&watcher, _1),
watch_task.task());
ASSERT_TRUE(initial.WaitForNotificationWithTimeout(seconds(1)));
Mock::VerifyAndClearExpectations(&watcher);
Notification second;
EXPECT_CALL(watcher,
Call(ElementsAre(EtcdClientNodeIs(kPath2, kValue2, false))))
.WillOnce(InvokeWithoutArgs(&second, &Notification::Notify));
EXPECT_OK(BlockingCreate(kPath2, kValue2, &created_index));
EXPECT_TRUE(second.WaitForNotificationWithTimeout(seconds(1)));
watch_task.Cancel();
watch_task.Wait();
EXPECT_THAT(watch_task.status(), StatusIs(util::error::CANCELLED));
}
TEST_F(FakeEtcdTest, WatcherForDelete) {
const string kDir(key_prefix_);
const string kPath(kDir + "/subkey");
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath, kValue, &created_index));
StrictMock<MockFunction<void(const vector<EtcdClient::Node>&)>> watcher;
Notification initial;
EXPECT_CALL(watcher,
Call(ElementsAre(EtcdClientNodeIs(kPath, "value", false))))
.WillOnce(InvokeWithoutArgs(&initial, &Notification::Notify));
util::SyncTask watch_task(base_.get());
client_->Watch(
kDir, bind(&MockFunction<void(const vector<EtcdClient::Node>&)>::Call,
&watcher, _1),
watch_task.task());
ASSERT_TRUE(initial.WaitForNotificationWithTimeout(seconds(1)));
Mock::VerifyAndClearExpectations(&watcher);
Notification second;
EXPECT_CALL(watcher, Call(ElementsAre(EtcdClientNodeIs(kPath, _, true))))
.WillOnce(InvokeWithoutArgs(&second, &Notification::Notify));
EXPECT_OK(BlockingDelete(kPath, created_index));
EXPECT_TRUE(second.WaitForNotificationWithTimeout(seconds(1)));
watch_task.Cancel();
watch_task.Wait();
EXPECT_THAT(watch_task.status(), StatusIs(util::error::CANCELLED));
}
TEST_F(FakeEtcdTest, WatcherWithTTLExpires) {
const string kDir(key_prefix_);
const string kPath(kDir + "/subkey");
const seconds kTtl(3);
int64_t created_index;
EXPECT_OK(BlockingCreateWithTTL(kPath, kValue, kTtl, &created_index));
StrictMock<MockFunction<void(const vector<EtcdClient::Node>&)>> watcher;
Notification initial;
EXPECT_CALL(watcher,
Call(ElementsAre(EtcdClientNodeIs(kPath, "value", false))))
.WillOnce(InvokeWithoutArgs(&initial, &Notification::Notify));
util::SyncTask watch_task(base_.get());
client_->Watch(
kDir, bind(&MockFunction<void(const vector<EtcdClient::Node>&)>::Call,
&watcher, _1),
watch_task.task());
ASSERT_TRUE(initial.WaitForNotificationWithTimeout(seconds(1)));
Mock::VerifyAndClearExpectations(&watcher);
Notification second;
EXPECT_CALL(watcher, Call(ElementsAre(EtcdClientNodeIs(kPath, _, true))))
.WillOnce(InvokeWithoutArgs(&second, &Notification::Notify));
EXPECT_TRUE(second.WaitForNotificationWithTimeout(kTtl + seconds(1)));
watch_task.Cancel();
watch_task.Wait();
EXPECT_THAT(watch_task.status(), StatusIs(util::error::CANCELLED));
}
TEST_F(FakeEtcdTest, PutUnderNonDir) {
const string kPath1(key_prefix_);
const string kPath2(kPath1 + "/subkey");
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath1, kValue, &created_index));
EXPECT_THAT(BlockingCreate(kPath2, kValue, &created_index),
StatusIs(util::error::ABORTED, "Not a directory"));
}
TEST_F(FakeEtcdTest, GetDir) {
const string kDir(key_prefix_);
const string kPath1(kDir + "/1");
const string kPath2(kDir + "/2");
const string kPath3(kPath2 + "/1/foo/bar/baz");
const string kPath4(kDir + "/3");
const string kPath5(kPath4 + "/1");
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath1, kValue, &created_index));
EXPECT_OK(BlockingCreate(kPath3, kValue, &created_index));
EXPECT_OK(BlockingCreate(kPath5, kValue, &created_index));
EXPECT_OK(BlockingCreate(kDir + "x", kValue, &created_index));
SyncTask task(base_.get());
EtcdClient::Request req(kDir);
EtcdClient::GetResponse resp;
client_->Get(req, &resp, task.task());
task.Wait();
EXPECT_OK(task);
EXPECT_EQ(kDir, resp.node.key_);
EXPECT_TRUE(resp.node.is_dir_);
EXPECT_TRUE(resp.node.value_.empty());
EXPECT_EQ(static_cast<size_t>(3), resp.node.nodes_.size());
// TODO(pphaneuf): Check that the sub-nodes are as we expect them.
}
TEST_F(FakeEtcdTest, GetDirRecursive) {
const string kDir(key_prefix_);
const string kPath1(kDir + "/sub");
const string kPath2(kPath1 + "/key");
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath2, kValue, &created_index));
SyncTask task(base_.get());
EtcdClient::Request req(kDir);
req.recursive = true;
EtcdClient::GetResponse resp;
client_->Get(req, &resp, task.task());
task.Wait();
EXPECT_OK(task);
EXPECT_EQ(kDir, resp.node.key_);
EXPECT_TRUE(resp.node.is_dir_);
EXPECT_TRUE(resp.node.value_.empty());
ASSERT_EQ(static_cast<size_t>(1), resp.node.nodes_.size());
EXPECT_EQ(kPath1, resp.node.nodes_[0].key_);
EXPECT_TRUE(resp.node.nodes_[0].is_dir_);
EXPECT_TRUE(resp.node.nodes_[0].value_.empty());
ASSERT_EQ(static_cast<size_t>(1), resp.node.nodes_[0].nodes_.size());
EXPECT_EQ(kPath2, resp.node.nodes_[0].nodes_[0].key_);
EXPECT_FALSE(resp.node.nodes_[0].nodes_[0].is_dir_);
EXPECT_TRUE(resp.node.nodes_[0].nodes_[0].nodes_.empty());
EXPECT_EQ(kValue, resp.node.nodes_[0].nodes_[0].value_);
}
// This test is not expected to pass with the real etcd, it tests an
// aspect specific to the fake implementation.
TEST_F(FakeEtcdTest, GetWaitOldIndex) {
const string kPath(key_prefix_);
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath, kValue, &created_index));
SyncTask task(base_.get());
EtcdClient::Request req(kPath);
req.wait_index = created_index;
EtcdClient::GetResponse resp;
client_->Get(req, &resp, task.task());
task.Wait();
EXPECT_THAT(task.status(), StatusIs(util::error::ABORTED));
EXPECT_EQ(created_index, resp.etcd_index);
}
TEST_F(FakeEtcdTest, GetWaitNonExistent) {
const string kPath(key_prefix_);
EtcdClient::Node node;
int64_t index;
EXPECT_THAT(BlockingGet(key_prefix_, &node, &index),
StatusIs(util::error::NOT_FOUND));
SyncTask task(base_.get());
EtcdClient::Request req(kPath);
req.wait_index = index + 1;
EtcdClient::GetResponse resp;
client_->Get(req, &resp, task.task());
ASSERT_TRUE(task.task()->IsActive());
sleep_for(seconds(1));
EXPECT_TRUE(task.task()->IsActive());
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath, kValue, &created_index));
task.Wait();
EXPECT_OK(task);
EXPECT_EQ(created_index - 1, resp.etcd_index);
EXPECT_EQ(kPath, resp.node.key_);
EXPECT_EQ(kValue, resp.node.value_);
EXPECT_EQ(created_index, resp.node.created_index_);
EXPECT_EQ(created_index, resp.node.modified_index_);
EXPECT_FALSE(resp.node.is_dir_);
EXPECT_TRUE(resp.node.nodes_.empty());
EXPECT_FALSE(resp.node.deleted_);
}
TEST_F(FakeEtcdTest, GetWaitUpdateExisting) {
const string kPath(key_prefix_);
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath, kValue, &created_index));
SyncTask task(base_.get());
EtcdClient::Request req(kPath);
req.wait_index = created_index + 1;
EtcdClient::GetResponse resp;
client_->Get(req, &resp, task.task());
ASSERT_TRUE(task.task()->IsActive());
sleep_for(seconds(1));
EXPECT_TRUE(task.task()->IsActive());
int64_t updated_index;
EXPECT_OK(BlockingUpdate(kPath, kValue2, created_index, &updated_index));
task.Wait();
EXPECT_OK(task);
EXPECT_EQ(created_index, resp.etcd_index);
EXPECT_EQ(kPath, resp.node.key_);
EXPECT_EQ(kValue2, resp.node.value_);
EXPECT_EQ(created_index, resp.node.created_index_);
EXPECT_EQ(updated_index, resp.node.modified_index_);
EXPECT_FALSE(resp.node.is_dir_);
EXPECT_TRUE(resp.node.nodes_.empty());
EXPECT_FALSE(resp.node.deleted_);
}
TEST_F(FakeEtcdTest, GetWaitSetExisting) {
const string kPath(key_prefix_);
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath, kValue, &created_index));
SyncTask task(base_.get());
EtcdClient::Request req(kPath);
req.wait_index = created_index + 1;
EtcdClient::GetResponse resp;
client_->Get(req, &resp, task.task());
ASSERT_TRUE(task.task()->IsActive());
sleep_for(seconds(1));
EXPECT_TRUE(task.task()->IsActive());
int64_t updated_index;
EXPECT_OK(BlockingForceSet(kPath, kValue2, &updated_index));
task.Wait();
EXPECT_OK(task);
EXPECT_EQ(created_index, resp.etcd_index);
EXPECT_EQ(kPath, resp.node.key_);
EXPECT_EQ(kValue2, resp.node.value_);
EXPECT_EQ(updated_index, resp.node.created_index_);
EXPECT_EQ(updated_index, resp.node.modified_index_);
EXPECT_FALSE(resp.node.is_dir_);
EXPECT_TRUE(resp.node.nodes_.empty());
EXPECT_FALSE(resp.node.deleted_);
}
TEST_F(FakeEtcdTest, GetWaitDeleteExisting) {
const string kPath(key_prefix_);
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath, kValue, &created_index));
SyncTask task(base_.get());
EtcdClient::Request req(kPath);
req.wait_index = created_index + 1;
EtcdClient::GetResponse resp;
client_->Get(req, &resp, task.task());
ASSERT_TRUE(task.task()->IsActive());
sleep_for(seconds(1));
EXPECT_TRUE(task.task()->IsActive());
EXPECT_OK(BlockingDelete(kPath, created_index));
task.Wait();
EXPECT_OK(task);
EXPECT_EQ(created_index, resp.etcd_index);
EXPECT_EQ(kPath, resp.node.key_);
EXPECT_TRUE(resp.node.value_.empty());
EXPECT_EQ(created_index, resp.node.created_index_);
EXPECT_EQ(created_index + 1, resp.node.modified_index_);
EXPECT_FALSE(resp.node.is_dir_);
EXPECT_TRUE(resp.node.nodes_.empty());
EXPECT_TRUE(resp.node.deleted_);
}
TEST_F(FakeEtcdTest, GetWaitRecursive) {
const string kDir1(key_prefix_ + "/1");
const string kPath1(kDir1 + "/subkey");
const string kDir2(key_prefix_ + "/2");
EtcdClient::Node node;
int64_t index;
EXPECT_THAT(BlockingGet(key_prefix_, &node, &index),
StatusIs(util::error::NOT_FOUND));
SyncTask task1(base_.get());
EtcdClient::Request req1(kDir1);
req1.recursive = true;
req1.wait_index = index + 1;
EtcdClient::GetResponse resp1;
client_->Get(req1, &resp1, task1.task());
ASSERT_TRUE(task1.task()->IsActive());
SyncTask task2(base_.get());
EtcdClient::Request req2(kDir2);
req2.recursive = true;
req2.wait_index = index + 1;
EtcdClient::GetResponse resp2;
client_->Get(req2, &resp2, task2.task());
ASSERT_TRUE(task2.task()->IsActive());
sleep_for(seconds(1));
EXPECT_TRUE(task1.task()->IsActive());
EXPECT_TRUE(task2.task()->IsActive());
int64_t created_index;
EXPECT_OK(BlockingCreate(kPath1, kValue, &created_index));
task1.Wait();
EXPECT_OK(task1);
EXPECT_EQ(index, resp1.etcd_index);
EXPECT_EQ(kPath1, resp1.node.key_);
EXPECT_EQ(kValue, resp1.node.value_);
EXPECT_EQ(created_index, resp1.node.created_index_);
EXPECT_EQ(created_index, resp1.node.modified_index_);
EXPECT_FALSE(resp1.node.is_dir_);
EXPECT_TRUE(resp1.node.nodes_.empty());
EXPECT_FALSE(resp1.node.deleted_);
sleep_for(seconds(1));
EXPECT_TRUE(task2.task()->IsActive());
task2.Cancel();
task2.Wait();
EXPECT_THAT(task2.status(), StatusIs(util::error::CANCELLED));
}
} // namespace cert_trans
int main(int argc, char** argv) {
cert_trans::test::InitTesting(argv[0], &argc, &argv, true);
OpenSSL_add_all_algorithms();
ERR_load_BIO_strings();
ERR_load_crypto_strings();
SSL_load_error_strings();
SSL_library_init();
// Default value of trusted root certs may not be correct on all platforms
FLAGS_trusted_root_certs = FLAGS_cert_dir + "/ca-cert.pem";
return RUN_ALL_TESTS();
}
|