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
|
#include "../lib/cluster.h"
#include "../lib/runner.h"
#include "../../src/format.h"
#include "../../src/leader.h"
TEST_MODULE(replication_v1);
/******************************************************************************
*
* Fixture
*
******************************************************************************/
#define FIXTURE \
FIXTURE_CLUSTER; \
struct leader leaders[N_SERVERS]; \
sqlite3_stmt *stmt;
#define SETUP \
unsigned i; \
pool_ut_fallback()->flags |= POOL_FOR_UT_NOT_ASYNC; \
pool_ut_fallback()->flags |= POOL_FOR_UT; \
SETUP_CLUSTER(V2) \
for (i = 0; i < N_SERVERS; i++) { \
SETUP_LEADER(i); \
}
#define SETUP_LEADER(I) \
do { \
struct leader *leader = &f->leaders[I]; \
struct registry *registry = CLUSTER_REGISTRY(I); \
struct db *db; \
int rc2; \
rc2 = registry__get_or_create(registry, "test.db", &db); \
munit_assert_int(rc2, ==, 0); \
rc2 = leader__init(leader, db, CLUSTER_RAFT(I)); \
munit_assert_int(rc2, ==, 0); \
} while (0)
#define TEAR_DOWN \
unsigned i; \
for (i = 0; i < N_SERVERS; i++) { \
TEAR_DOWN_LEADER(i); \
} \
TEAR_DOWN_CLUSTER
#define TEAR_DOWN_LEADER(I) \
do { \
struct leader *leader = &f->leaders[I]; \
leader__close(leader, fixture_leader_close_cb); \
} while (0)
/******************************************************************************
*
* Helper macros.
*
******************************************************************************/
/* Return the i'th leader object. */
#define LEADER(I) &f->leaders[I]
/* Return the SQLite connection of the i'th leader object */
#define CONN(I) (LEADER(I))->conn
/* Prepare the fixture's statement using the connection of the I'th leader */
#define PREPARE(I, SQL) \
{ \
int rc2; \
rc2 = sqlite3_prepare_v2(CONN(I), SQL, -1, &f->stmt, NULL); \
munit_assert_int(rc2, ==, 0); \
}
/* Reset the fixture's statement, expecting the given return code. */
#define RESET(RC) \
{ \
int rc2; \
rc2 = sqlite3_reset(f->stmt); \
munit_assert_int(rc2, ==, RC); \
}
/* Finalize the fixture's statement */
#define FINALIZE \
{ \
int rc2; \
rc2 = sqlite3_finalize(f->stmt); \
munit_assert_int(rc2, ==, 0); \
}
/* Submit an exec request using the I'th leader. */
#define EXEC(I) \
{ \
f->invoked = false; \
f->req.stmt = f->stmt; \
leader_exec(LEADER(I), &f->req, \
fixture_exec_work_cb, fixture_exec_done_cb); \
raft_fixture_step_until(&f->cluster, fixture_invoked, f, 100); \
munit_assert_true(f->invoked); \
}
/* Convenience to prepare, execute and finalize a statement. */
#define EXEC_SQL(I, SQL) \
PREPARE(I, SQL); \
EXEC(I); \
CLUSTER_APPLIED(CLUSTER_LAST_INDEX(I)); \
FINALIZE
/******************************************************************************
*
* Helper macros.
*
******************************************************************************/
/* Assert the number of pages in the WAL file on the I'th node. */
#define ASSERT_WAL_PAGES(I, N) \
{ \
struct leader *leader_ = &f->leaders[I]; \
sqlite3_file *file_; \
sqlite_int64 size_; \
int pages_; \
int rv_; \
rv_ = sqlite3_file_control(leader_->conn, NULL, \
SQLITE_FCNTL_JOURNAL_POINTER, \
&file_); \
munit_assert_int(rv_, ==, 0); \
rv_ = file_->pMethods->xFileSize(file_, &size_); \
munit_assert_int(rv_, ==, 0); \
pages_ = formatWalCalcFramesNumber( \
leader_->db->config->vfs.page_size, size_); \
munit_assert_int(pages_, ==, N); \
}
/******************************************************************************
*
* leader__init
*
******************************************************************************/
struct init_fixture {
FIXTURE;
};
static void fixture_leader_close_cb(struct leader *leader) { (void)leader; }
TEST_SUITE(init);
TEST_SETUP(init)
{
struct init_fixture *f = munit_malloc(sizeof *f);
SETUP;
return f;
}
TEST_TEAR_DOWN(init)
{
struct init_fixture *f = data;
TEAR_DOWN;
free(f);
}
/* The connection is open and can be used. */
TEST_CASE(init, conn, NULL)
{
struct init_fixture *f = data;
sqlite3_stmt *stmt;
int rc;
(void)params;
rc = sqlite3_prepare_v2(CONN(0), "SELECT 1", -1, &stmt, NULL);
munit_assert_int(rc, ==, 0);
sqlite3_finalize(stmt);
return MUNIT_OK;
}
/******************************************************************************
*
* leader_exec
*
******************************************************************************/
struct exec_fixture {
FIXTURE;
struct exec req;
bool invoked;
int status;
};
static void fixture_exec_work_cb(struct exec *req)
{
int rv = SQLITE_ROW;
while (rv == SQLITE_ROW) {
rv = sqlite3_step(req->stmt);
}
sqlite3_reset(req->stmt);
if (rv == SQLITE_DONE) {
leader_exec_result(req, RAFT_OK);
} else {
leader_exec_result(req, RAFT_ERROR);
}
return leader_exec_resume(req);
}
static void fixture_exec_done_cb(struct exec *req)
{
struct exec_fixture *f = req->data;
f->invoked = true;
f->status = req->status;
}
static bool fixture_invoked(struct raft_fixture *fixture, void *data)
{
(void)fixture;
struct exec_fixture *f = data;
return f->invoked;
}
TEST_SUITE(exec);
TEST_SETUP(exec)
{
struct exec_fixture *f = munit_malloc(sizeof *f);
SETUP;
f->req.data = f;
f->req.timer.data = &f->req;
return f;
}
TEST_TEAR_DOWN(exec)
{
struct exec_fixture *f = data;
TEAR_DOWN;
free(f);
}
TEST_CASE(exec, success, NULL)
{
struct exec_fixture *f = data;
(void)params;
CLUSTER_ELECT(0);
PREPARE(0, "CREATE TABLE test (a INT)");
EXEC(0);
CLUSTER_APPLIED(3);
munit_assert_true(f->invoked);
munit_assert_int(f->status, ==, 0);
FINALIZE;
return MUNIT_OK;
}
TEST_CASE(exec, barrier_fails, NULL)
{
struct exec_fixture *f = data;
(void)params;
CLUSTER_ELECT(0);
PREPARE(0, "CREATE TABLE test (a INT)");
raft_fixture_append_fault(&f->cluster, 0, 0);
EXEC(0);
munit_assert_true(f->invoked);
munit_assert_int(f->status, ==, RAFT_IOERR);
FINALIZE;
return MUNIT_OK;
}
TEST_CASE(exec, append_fails, NULL)
{
struct exec_fixture *f = data;
(void)params;
CLUSTER_ELECT(0);
PREPARE(0, "CREATE TABLE test (a INT)");
raft_fixture_append_fault(&f->cluster, 0, 0);
EXEC(0);
munit_assert_true(f->invoked);
munit_assert_int(f->status, ==, RAFT_IOERR);
FINALIZE;
return MUNIT_OK;
}
/* A snapshot is taken after applying an entry. */
TEST_CASE(exec, snapshot, NULL)
{
struct exec_fixture *f = data;
(void)params;
CLUSTER_SNAPSHOT_THRESHOLD(0, 4);
CLUSTER_ELECT(0);
PREPARE(0, "CREATE TABLE test (n INT)");
EXEC(0);
CLUSTER_APPLIED(3);
FINALIZE;
PREPARE(0, "INSERT INTO test(n) VALUES(1)");
EXEC(0);
CLUSTER_APPLIED(4);
munit_assert_true(f->invoked);
munit_assert_int(f->status, ==, 0);
FINALIZE;
return MUNIT_OK;
}
/* If a transaction is in progress, no snapshot is taken. */
TEST_CASE(exec, snapshot_busy, NULL)
{
struct exec_fixture *f = data;
(void)params;
unsigned i;
CLUSTER_SNAPSHOT_THRESHOLD(0, 4);
CLUSTER_ELECT(0);
EXEC_SQL(0, "PRAGMA cache_size = 1");
EXEC_SQL(0, "CREATE TABLE test (n INT)");
EXEC_SQL(0, "BEGIN");
/* Accumulate enough dirty data to fill the page cache */
for (i = 0; i < 163; i++) {
EXEC_SQL(0, "INSERT INTO test(n) VALUES(1)");
}
return MUNIT_OK;
}
/* If the WAL size grows beyond the configured threshold, checkpoint it. */
TEST_CASE(exec, checkpoint, NULL)
{
struct exec_fixture *f = data;
struct config *config = CLUSTER_CONFIG(0);
(void)params;
config->vfs.checkpoint_threshold = 3;
CLUSTER_ELECT(0);
EXEC_SQL(0, "CREATE TABLE test (n INT)");
EXEC_SQL(0, "INSERT INTO test(n) VALUES(1)");
/* The WAL was truncated. */
ASSERT_WAL_PAGES(0, 0);
return MUNIT_OK;
}
/* If a read transaction is in progress, no checkpoint is taken. */
TEST_CASE(exec, checkpoint_read_lock, NULL)
{
struct exec_fixture *f = data;
struct config *config = CLUSTER_CONFIG(0);
struct registry *registry = CLUSTER_REGISTRY(0);
struct db *db;
struct leader leader2;
char *errmsg;
int rv;
(void)params;
config->vfs.checkpoint_threshold = 3;
CLUSTER_ELECT(0);
EXEC_SQL(0, "CREATE TABLE test (n INT)");
/* Initialize another leader. */
rv = registry__get_or_create(registry, "test.db", &db);
munit_assert_int(rv, ==, 0);
leader__init(&leader2, db, CLUSTER_RAFT(0));
/* Start a read transaction in the other leader. */
rv = sqlite3_exec(leader2.conn, "BEGIN", NULL, NULL, &errmsg);
munit_assert_int(rv, ==, 0);
rv = sqlite3_exec(leader2.conn, "SELECT * FROM test", NULL, NULL,
&errmsg);
munit_assert_int(rv, ==, 0);
EXEC_SQL(0, "INSERT INTO test(n) VALUES(1)");
/* The WAL was not truncated. */
ASSERT_WAL_PAGES(0, 3);
leader__close(&leader2, fixture_leader_close_cb);
return MUNIT_OK;
}
/******************************************************************************
*
* Fixture
*
******************************************************************************/
struct fixture {
FIXTURE_CLUSTER;
struct leader leaders[N_SERVERS];
sqlite3_stmt *stmt;
struct exec req;
bool invoked;
int status;
};
static void *setUp(const MunitParameter params[], void *user_data)
{
struct fixture *f = munit_malloc(sizeof *f);
pool_ut_fallback()->flags |= POOL_FOR_UT_NOT_ASYNC;
pool_ut_fallback()->flags |= POOL_FOR_UT;
SETUP_CLUSTER(V2);
SETUP_LEADER(0);
f->req.data = f;
f->req.timer.data = &f->req;
return f;
}
static void tearDown(void *data)
{
struct fixture *f = data;
TEAR_DOWN_LEADER(0);
TEAR_DOWN_CLUSTER;
free(f);
}
SUITE(replication)
static void execCb(struct exec *req)
{
struct fixture *f = req->data;
f->invoked = true;
f->status = req->status;
}
static bool executed(struct raft_fixture *rf, void *unused)
{
(void)unused;
struct fixture *f = CONTAINER_OF(rf, struct fixture, cluster);
return f->invoked;
}
static void fixture_exec(struct fixture *f, unsigned i)
{
f->req.stmt = f->stmt;
f->invoked = false;
leader_exec(LEADER(i), &f->req, fixture_exec_work_cb, execCb);
raft_fixture_step_until(&f->cluster, executed, NULL, 1000);
}
TEST(replication, exec, setUp, tearDown, 0, NULL)
{
struct fixture *f = data;
CLUSTER_ELECT(0);
PREPARE(0, "BEGIN");
fixture_exec(f, 0);
CLUSTER_APPLIED(2);
munit_assert_true(f->invoked);
munit_assert_int(f->status, ==, RAFT_OK);
FINALIZE;
PREPARE(0, "CREATE TABLE test (a INT)");
fixture_exec(f, 0);
CLUSTER_STEP;
munit_assert_true(f->invoked);
munit_assert_int(f->status, ==, RAFT_OK);
FINALIZE;
PREPARE(0, "COMMIT");
fixture_exec(f, 0);
CLUSTER_APPLIED(3);
FINALIZE;
munit_assert_true(f->invoked);
munit_assert_int(f->status, ==, RAFT_OK);
PREPARE(0, "SELECT * FROM test");
FINALIZE;
SETUP_LEADER(1);
PREPARE(1, "SELECT * FROM test");
FINALIZE;
TEAR_DOWN_LEADER(1);
return MUNIT_OK;
}
static void barrierCb(struct raft_barrier *req, int status) {
munit_assert_int(status, ==, RAFT_OK);
bool *barrier_done = req->data;
*barrier_done = true;
}
static bool barrierDone(struct raft_fixture *f, void *arg) {
(void)f;
bool *barrier_done = arg;
return *barrier_done;
}
/* Make sure that no barrier is ever issued for a write transaction. */
TEST(replication, barriers, setUp, tearDown, 0, NULL)
{
struct fixture *f = data;
/* Make sure work is faster than applying a barrier */
raft_fixture_set_work_duration(&f->cluster, 0, 0);
CLUSTER_ELECT(0);
/* Right after becoming a leader, the node needs to append a barrier
* before being able to append new items. Make sure that executing a SQL
* statement will not issue another barrier, but will wait for the cluster
* to apply that barrier. */
struct raft *r = raft_fixture_get(&f->cluster, 0);
int last_index = raft_last_index(r);
munit_assert_int(raft_last_applied(r), <, last_index);
PREPARE(0, "SELECT 1");
EXEC(0);
FINALIZE;
munit_assert_int(raft_last_index(r), ==, last_index);
munit_assert_int(raft_last_applied(r), ==, last_index);
/* Insert a custom barrier in the log. It is then possible to check if
* any command issues a real barrier because then the custom one will be
* awaited. If the custom barrier didn't complete it means no query
* issued another barrier. */
bool barrier_done = false;
struct raft_barrier barrier = {
.data = &barrier_done,
};
raft_barrier(CLUSTER_RAFT(0), &barrier, barrierCb);
/* Read transactions do not need a barrier */
PREPARE(0, "SELECT 1");
EXEC(0);
FINALIZE;
munit_assert_false(barrier_done);
/* Write transactions do not need a barrier, too */
PREPARE(0, "BEGIN IMMEDIATE");
EXEC(0);
FINALIZE;
munit_assert_false(barrier_done);
raft_fixture_step_until(&f->cluster, barrierDone, &barrier_done, 1000);
return MUNIT_OK;
}
/* If the WAL size grows beyond the configured threshold, checkpoint it. */
TEST(replication, checkpoint, setUp, tearDown, 0, NULL)
{
struct fixture *f = data;
struct config *config = CLUSTER_CONFIG(0);
config->vfs.checkpoint_threshold = 3;
CLUSTER_ELECT(0);
PREPARE(0, "CREATE TABLE test (n INT)");
fixture_exec(f, 0);
CLUSTER_APPLIED(3);
FINALIZE;
PREPARE(0, "INSERT INTO test(n) VALUES(1)");
fixture_exec(f, 0);
CLUSTER_APPLIED(4);
FINALIZE;
/* The WAL was truncated. */
ASSERT_WAL_PAGES(0, 0);
return MUNIT_OK;
}
TEST(replication, leaderToFollowerBusy, setUp, tearDown, 0, NULL)
{
struct fixture *f = data;
CLUSTER_ELECT(0);
/* Make sure the leader write-locks the database. */
PREPARE(0, "BEGIN IMMEDIATE");
fixture_exec(f, 0);
FINALIZE;
/* Lose leadership in the middle of a write transaction */
CLUSTER_DEPOSE;
SETUP_LEADER(1);
CLUSTER_ELECT(1);
PREPARE(1, "CREATE TABLE test(i ANY)")
fixture_exec(f, 1);
FINALIZE;
TEAR_DOWN_LEADER(1);
CLUSTER_COMMITTED(4);
raft_fixture_step_until_applied(&f->cluster, 1, 4, 1000);
raft_fixture_step_until_applied(&f->cluster, 2, 4, 1000);
/* Re-elect the first one and make sure that the table is there */
TEAR_DOWN_LEADER(0);
CLUSTER_DEPOSE;
SETUP_LEADER(0);
CLUSTER_ELECT(0);
PREPARE(0, "DROP TABLE test");
fixture_exec(f, 0);
FINALIZE;
return MUNIT_OK;
}
|