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
|
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
#ident "$Id$"
/*======
This file is part of PerconaFT.
Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved.
PerconaFT is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation.
PerconaFT is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PerconaFT. If not, see <http://www.gnu.org/licenses/>.
----------------------------------------
PerconaFT is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License, version 3,
as published by the Free Software Foundation.
PerconaFT is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with PerconaFT. If not, see <http://www.gnu.org/licenses/>.
======= */
#ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved."
#include "test.h"
#include "toku_os.h"
#include "cachetable/checkpoint.h"
#include "test-ft-txns.h"
static int txn_child_manager_test_cb(TOKUTXN txn, void* extra) {
TOKUTXN* ptxn = (TOKUTXN *)extra;
assert(txn == *ptxn);
*ptxn = txn->child;
return 0;
}
static int txn_child_manager_test_cb2(TOKUTXN txn, void* extra) {
TOKUTXN extra_txn = (TOKUTXN)extra;
if (txn == extra_txn) {
return -1;
}
return 0;
}
class txn_child_manager_unit_test {
public:
void run_test();
void run_child_txn_test();
};
// simple test that verifies that creating a TXN_CHILD_SNAPSHOT tokutxn
// creates its own snapshot
void txn_child_manager_unit_test::run_child_txn_test() {
TOKULOGGER logger;
CACHETABLE ct;
int r = 0;
test_setup(TOKU_TEST_FILENAME, &logger, &ct);
// create the root transaction
TOKUTXN root_txn = NULL;
r = toku_txn_begin_txn(
(DB_TXN *)NULL,
NULL,
&root_txn,
logger,
TXN_SNAPSHOT_CHILD,
false
);
CKERR(r);
// test starting a child txn
TOKUTXN child_txn = NULL;
r = toku_txn_begin_txn(
NULL,
root_txn,
&child_txn,
logger,
TXN_SNAPSHOT_CHILD,
false
);
CKERR(r);
// assert that the child has a later snapshot
assert(child_txn->snapshot_txnid64 > root_txn->snapshot_txnid64);
r = toku_txn_commit_txn(child_txn, true, NULL, NULL);
CKERR(r);
toku_txn_close_txn(child_txn);
assert(root_txn->child == NULL);
r = toku_txn_commit_txn(root_txn, true, NULL, NULL);
CKERR(r);
toku_txn_close_txn(root_txn);
clean_shutdown(&logger, &ct);
}
void txn_child_manager_unit_test::run_test() {
TOKULOGGER logger;
CACHETABLE ct;
int r = 0;
test_setup(TOKU_TEST_FILENAME, &logger, &ct);
// create the root transaction
TOKUTXN root_txn = NULL;
r = toku_txn_begin_txn(
(DB_TXN *)NULL,
NULL,
&root_txn,
logger,
TXN_SNAPSHOT_ROOT,
false
);
CKERR(r);
txn_child_manager* cm = root_txn->child_manager;
assert(cm == &root_txn->child_manager_s);
assert(cm->m_root == root_txn);
assert(cm->m_last_xid == TXNID_NONE);
assert(root_txn->child == NULL);
// this assumption implies our assumptions of child_id values below,
// because the parent id cannot be the child id
assert(root_txn->txnid.parent_id64 == 1);
// test starting a child txn
TOKUTXN child_txn = NULL;
r = toku_txn_begin_txn(
NULL,
root_txn,
&child_txn,
logger,
TXN_SNAPSHOT_ROOT,
false
);
CKERR(r);
assert(child_txn->child_manager == cm);
assert(child_txn->parent == root_txn);
assert(root_txn->child == child_txn);
assert(child_txn->txnid.parent_id64 == root_txn->txnid.parent_id64);
assert(child_txn->txnid.child_id64 == 2);
assert(child_txn->live_root_txn_list == root_txn->live_root_txn_list);
assert(child_txn->snapshot_txnid64 == root_txn->snapshot_txnid64);
assert(cm->m_root == root_txn);
assert(cm->m_last_xid == child_txn->txnid.child_id64);
TOKUTXN grandchild_txn = NULL;
r = toku_txn_begin_txn(
NULL,
child_txn,
&grandchild_txn,
logger,
TXN_SNAPSHOT_ROOT,
false
);
CKERR(r);
assert(grandchild_txn->child_manager == cm);
assert(grandchild_txn->parent == child_txn);
assert(child_txn->child == grandchild_txn);
assert(grandchild_txn->txnid.parent_id64 == root_txn->txnid.parent_id64);
assert(grandchild_txn->txnid.child_id64 == 3);
assert(grandchild_txn->live_root_txn_list == root_txn->live_root_txn_list);
assert(grandchild_txn->snapshot_txnid64 == root_txn->snapshot_txnid64);
assert(cm->m_root == root_txn);
assert(cm->m_last_xid == grandchild_txn->txnid.child_id64);
r = toku_txn_commit_txn(grandchild_txn, true, NULL, NULL);
CKERR(r);
toku_txn_close_txn(grandchild_txn);
// now after closing one grandchild txn, open another one
r = toku_txn_begin_txn(
NULL,
child_txn,
&grandchild_txn,
logger,
TXN_SNAPSHOT_ROOT,
false
);
CKERR(r);
assert(grandchild_txn->child_manager == cm);
assert(grandchild_txn->parent == child_txn);
assert(child_txn->child == grandchild_txn);
assert(grandchild_txn->txnid.parent_id64 == root_txn->txnid.parent_id64);
assert(grandchild_txn->txnid.child_id64 == 4);
assert(grandchild_txn->live_root_txn_list == root_txn->live_root_txn_list);
assert(grandchild_txn->snapshot_txnid64 == root_txn->snapshot_txnid64);
assert(cm->m_root == root_txn);
assert(cm->m_last_xid == grandchild_txn->txnid.child_id64);
TXNID_PAIR xid = {.parent_id64 = root_txn->txnid.parent_id64, .child_id64 = 100};
TOKUTXN recovery_txn = NULL;
r = toku_txn_begin_with_xid(
grandchild_txn,
&recovery_txn,
logger,
xid,
TXN_SNAPSHOT_NONE,
NULL,
true, // for recovery
false // read_only
);
assert(recovery_txn->child_manager == cm);
assert(recovery_txn->parent == grandchild_txn);
assert(grandchild_txn->child == recovery_txn);
assert(recovery_txn->txnid.parent_id64 == root_txn->txnid.parent_id64);
assert(recovery_txn->txnid.child_id64 == 100);
// ensure that no snapshot is made
assert(recovery_txn->live_root_txn_list == NULL);
assert(recovery_txn->snapshot_txnid64 == TXNID_NONE);
assert(cm->m_root == root_txn);
assert(cm->m_last_xid == recovery_txn->txnid.child_id64);
// now ensure that txn_child_manager::find_tokutxn_by_xid_unlocked works
TOKUTXN found_txn = NULL;
// first ensure that a dummy TXNID_PAIR cannot be found
TXNID_PAIR dummy_pair = { .parent_id64 = root_txn->txnid.parent_id64, .child_id64 = 1000};
cm->find_tokutxn_by_xid_unlocked(dummy_pair, &found_txn);
assert(found_txn == NULL);
cm->find_tokutxn_by_xid_unlocked(root_txn->txnid, &found_txn);
assert(found_txn == root_txn);
cm->find_tokutxn_by_xid_unlocked(child_txn->txnid, &found_txn);
assert(found_txn == child_txn);
cm->find_tokutxn_by_xid_unlocked(grandchild_txn->txnid, &found_txn);
assert(found_txn == grandchild_txn);
cm->find_tokutxn_by_xid_unlocked(recovery_txn->txnid, &found_txn);
assert(found_txn == recovery_txn);
// now ensure that the iterator works
found_txn = root_txn;
r = cm->iterate(txn_child_manager_test_cb, &found_txn);
CKERR(r);
assert(found_txn == NULL);
// now test that iterator properly stops
found_txn = child_txn;
r = cm->iterate(txn_child_manager_test_cb2, found_txn);
assert(r == -1);
r = toku_txn_commit_txn(recovery_txn, true, NULL, NULL);
CKERR(r);
toku_txn_close_txn(recovery_txn);
assert(grandchild_txn->child == NULL);
r = toku_txn_commit_txn(grandchild_txn, true, NULL, NULL);
CKERR(r);
toku_txn_close_txn(grandchild_txn);
assert(child_txn->child == NULL);
r = toku_txn_commit_txn(child_txn, true, NULL, NULL);
CKERR(r);
toku_txn_close_txn(child_txn);
assert(root_txn->child == NULL);
r = toku_txn_commit_txn(root_txn, true, NULL, NULL);
CKERR(r);
toku_txn_close_txn(root_txn);
clean_shutdown(&logger, &ct);
}
int test_main (int argc, const char *argv[]) {
default_parse_args(argc, argv);
txn_child_manager_unit_test foo;
foo.run_test();
return 0;
}
|