syncRaftLogTest3.cpp 9.2 KB
Newer Older
M
Minghao Li 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#include <gtest/gtest.h>
#include <stdio.h>
#include "syncEnv.h"
#include "syncIO.h"
#include "syncInt.h"
#include "syncRaftLog.h"
#include "syncRaftStore.h"
#include "syncUtil.h"
#include "wal.h"

void logTest() {
  sTrace("--- sync log test: trace");
  sDebug("--- sync log test: debug");
  sInfo("--- sync log test: info");
  sWarn("--- sync log test: warn");
  sError("--- sync log test: error");
  sFatal("--- sync log test: fatal");
}

SSyncNode*     pSyncNode;
SWal*          pWal;
SSyncLogStore* pLogStore;
const char*    pWalPath = "./syncLogStoreTest_wal";

M
Minghao Li 已提交
25 26 27 28 29 30 31 32 33 34
SyncIndex gSnapshotLastApplyIndex;
SyncIndex gSnapshotLastApplyTerm;

int32_t GetSnapshotCb(struct SSyncFSM* pFsm, SSnapshot* pSnapshot) {
  pSnapshot->data = NULL;
  pSnapshot->lastApplyIndex = gSnapshotLastApplyIndex;
  pSnapshot->lastApplyTerm = gSnapshotLastApplyTerm;
  return 0;
}

M
Minghao Li 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
void init() {
  walInit();

  SWalCfg walCfg;
  memset(&walCfg, 0, sizeof(SWalCfg));
  walCfg.vgId = 1000;
  walCfg.fsyncPeriod = 1000;
  walCfg.retentionPeriod = 1000;
  walCfg.rollPeriod = 1000;
  walCfg.retentionSize = 1000;
  walCfg.segSize = 1000;
  walCfg.level = TAOS_WAL_FSYNC;
  pWal = walOpen(pWalPath, &walCfg);
  assert(pWal != NULL);

  pSyncNode = (SSyncNode*)taosMemoryMalloc(sizeof(SSyncNode));
  memset(pSyncNode, 0, sizeof(SSyncNode));
  pSyncNode->pWal = pWal;
M
Minghao Li 已提交
53 54 55

  pSyncNode->pFsm = (SSyncFSM*)taosMemoryMalloc(sizeof(SSyncFSM));
  pSyncNode->pFsm->FpGetSnapshot = GetSnapshotCb;
M
Minghao Li 已提交
56 57 58 59 60 61 62 63
}

void cleanup() {
  walClose(pWal);
  walCleanUp();
  taosMemoryFree(pSyncNode);
}

M
Minghao Li 已提交
64 65 66 67 68 69 70
void test1() {
  // no snapshot
  // no log

  taosRemoveDir(pWalPath);

  init();
M
Minghao Li 已提交
71 72
  pLogStore = logStoreCreate(pSyncNode);
  assert(pLogStore);
M
Minghao Li 已提交
73 74 75 76 77 78
  pSyncNode->pLogStore = pLogStore;
  logStoreLog2((char*)"\n\n\ntest1 ----- ", pLogStore);

  gSnapshotLastApplyIndex = -1;
  gSnapshotLastApplyTerm = 0;

79
  bool      hasSnapshot = syncNodeHasSnapshot(pSyncNode);
M
Minghao Li 已提交
80 81 82 83 84 85 86 87 88
  SSnapshot snapshot;
  pSyncNode->pFsm->FpGetSnapshot(pSyncNode->pFsm, &snapshot);

  SyncIndex lastIndex = syncNodeGetLastIndex(pSyncNode);
  SyncTerm  lastTerm = syncNodeGetLastTerm(pSyncNode);

  SyncIndex testIndex = 0;
  SyncIndex preIndex = syncNodeGetPreIndex(pSyncNode, testIndex);
  SyncTerm  preTerm = syncNodeGetPreTerm(pSyncNode, testIndex);
M
Minghao Li 已提交
89

M
Minghao Li 已提交
90 91
  SyncIndex syncStartIndex = syncNodeSyncStartIndex(pSyncNode);

M
Minghao Li 已提交
92
  sTrace("test1");
93 94
  sTrace("hasSnapshot:%d, lastApplyIndex:%ld, lastApplyTerm:%lu", hasSnapshot, snapshot.lastApplyIndex,
         snapshot.lastApplyTerm);
M
Minghao Li 已提交
95 96
  sTrace("lastIndex: %ld", lastIndex);
  sTrace("lastTerm: %lu", lastTerm);
M
Minghao Li 已提交
97
  sTrace("syncStartIndex: %ld", syncStartIndex);
M
Minghao Li 已提交
98 99
  sTrace("%ld's preIndex: %ld", testIndex, preIndex);
  sTrace("%ld's preTerm: %lu", testIndex, preTerm);
M
Minghao Li 已提交
100

M
Minghao Li 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
  logStoreDestory(pLogStore);
  cleanup();
}

void test2() {
  // no snapshot
  // whole log

  taosRemoveDir(pWalPath);

  init();
  pLogStore = logStoreCreate(pSyncNode);
  assert(pLogStore);
  pSyncNode->pLogStore = pLogStore;
  logStoreLog2((char*)"\n\n\ntest2 ----- ", pLogStore);

  for (int i = 0; i <= 10; ++i) {
M
Minghao Li 已提交
118 119 120 121 122 123 124 125
    int32_t         dataLen = 10;
    SSyncRaftEntry* pEntry = syncEntryBuild(dataLen);
    assert(pEntry != NULL);
    pEntry->msgType = 1;
    pEntry->originalRpcType = 2;
    pEntry->seqNum = 3;
    pEntry->isWeak = true;
    pEntry->term = 100 + i;
M
Minghao Li 已提交
126
    pEntry->index = pLogStore->syncLogWriteIndex(pLogStore);
M
Minghao Li 已提交
127 128
    snprintf(pEntry->data, dataLen, "value%d", i);

M
Minghao Li 已提交
129
    pLogStore->syncLogAppendEntry(pLogStore, pEntry);
M
Minghao Li 已提交
130
    syncEntryDestory(pEntry);
M
Minghao Li 已提交
131 132 133 134 135 136
  }
  logStoreLog2((char*)"test2 after appendEntry", pLogStore);

  gSnapshotLastApplyIndex = -1;
  gSnapshotLastApplyTerm = 0;

137
  bool      hasSnapshot = syncNodeHasSnapshot(pSyncNode);
M
Minghao Li 已提交
138 139
  SSnapshot snapshot;
  pSyncNode->pFsm->FpGetSnapshot(pSyncNode->pFsm, &snapshot);
M
Minghao Li 已提交
140

M
Minghao Li 已提交
141 142 143
  SyncIndex lastIndex = syncNodeGetLastIndex(pSyncNode);
  SyncTerm  lastTerm = syncNodeGetLastTerm(pSyncNode);

M
Minghao Li 已提交
144 145
  SyncIndex syncStartIndex = syncNodeSyncStartIndex(pSyncNode);

M
Minghao Li 已提交
146
  sTrace("test2");
147 148
  sTrace("hasSnapshot:%d, lastApplyIndex:%ld, lastApplyTerm:%lu", hasSnapshot, snapshot.lastApplyIndex,
         snapshot.lastApplyTerm);
M
Minghao Li 已提交
149 150
  sTrace("lastIndex: %ld", lastIndex);
  sTrace("lastTerm: %lu", lastTerm);
M
Minghao Li 已提交
151
  sTrace("syncStartIndex: %ld", syncStartIndex);
M
Minghao Li 已提交
152 153 154 155 156 157 158

  for (SyncIndex i = 11; i >= 0; --i) {
    SyncIndex preIndex = syncNodeGetPreIndex(pSyncNode, i);
    SyncTerm  preTerm = syncNodeGetPreTerm(pSyncNode, i);

    sTrace("%ld's preIndex: %ld", i, preIndex);
    sTrace("%ld's preTerm: %lu", i, preTerm);
M
Minghao Li 已提交
159 160
  }

M
Minghao Li 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
  logStoreDestory(pLogStore);
  cleanup();
}

void test3() {
  // has snapshot
  // no log

  taosRemoveDir(pWalPath);

  init();
  pLogStore = logStoreCreate(pSyncNode);
  assert(pLogStore);
  pSyncNode->pLogStore = pLogStore;
  logStoreLog2((char*)"\n\n\ntest3 ----- ", pLogStore);

  gSnapshotLastApplyIndex = 5;
  gSnapshotLastApplyTerm = 100;

180
  bool      hasSnapshot = syncNodeHasSnapshot(pSyncNode);
M
Minghao Li 已提交
181 182 183 184 185 186 187 188 189
  SSnapshot snapshot;
  pSyncNode->pFsm->FpGetSnapshot(pSyncNode->pFsm, &snapshot);

  SyncIndex lastIndex = syncNodeGetLastIndex(pSyncNode);
  SyncTerm  lastTerm = syncNodeGetLastTerm(pSyncNode);

  SyncIndex preIndex = syncNodeGetPreIndex(pSyncNode, 6);
  SyncTerm  preTerm = syncNodeGetPreTerm(pSyncNode, 6);

M
Minghao Li 已提交
190 191
  SyncIndex syncStartIndex = syncNodeSyncStartIndex(pSyncNode);

M
Minghao Li 已提交
192
  sTrace("test3");
193 194
  sTrace("hasSnapshot:%d, lastApplyIndex:%ld, lastApplyTerm:%lu", hasSnapshot, snapshot.lastApplyIndex,
         snapshot.lastApplyTerm);
M
Minghao Li 已提交
195 196
  sTrace("lastIndex: %ld", lastIndex);
  sTrace("lastTerm: %lu", lastTerm);
M
Minghao Li 已提交
197
  sTrace("syncStartIndex: %ld", syncStartIndex);
M
Minghao Li 已提交
198 199
  sTrace("%d's preIndex: %ld", 6, preIndex);
  sTrace("%d's preTerm: %lu", 6, preTerm);
M
Minghao Li 已提交
200 201

  logStoreDestory(pLogStore);
M
Minghao Li 已提交
202
  cleanup();
M
Minghao Li 已提交
203 204
}

M
Minghao Li 已提交
205 206 207 208 209
void test4() {
  // has snapshot
  // whole log

  taosRemoveDir(pWalPath);
M
Minghao Li 已提交
210 211

  init();
M
Minghao Li 已提交
212 213 214 215
  pLogStore = logStoreCreate(pSyncNode);
  assert(pLogStore);
  pSyncNode->pLogStore = pLogStore;
  logStoreLog2((char*)"\n\n\ntest4 ----- ", pLogStore);
M
Minghao Li 已提交
216

M
Minghao Li 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
  for (int i = 0; i <= 10; ++i) {
    int32_t         dataLen = 10;
    SSyncRaftEntry* pEntry = syncEntryBuild(dataLen);
    assert(pEntry != NULL);
    pEntry->msgType = 1;
    pEntry->originalRpcType = 2;
    pEntry->seqNum = 3;
    pEntry->isWeak = true;
    pEntry->term = 100 + i;
    pEntry->index = pLogStore->syncLogWriteIndex(pLogStore);
    snprintf(pEntry->data, dataLen, "value%d", i);

    pLogStore->syncLogAppendEntry(pLogStore, pEntry);
    syncEntryDestory(pEntry);
  }
  logStoreLog2((char*)"test4 after appendEntry", pLogStore);

  gSnapshotLastApplyIndex = 5;
  gSnapshotLastApplyTerm = 100;

237
  bool      hasSnapshot = syncNodeHasSnapshot(pSyncNode);
M
Minghao Li 已提交
238 239 240 241 242 243
  SSnapshot snapshot;
  pSyncNode->pFsm->FpGetSnapshot(pSyncNode->pFsm, &snapshot);

  SyncIndex lastIndex = syncNodeGetLastIndex(pSyncNode);
  SyncTerm  lastTerm = syncNodeGetLastTerm(pSyncNode);

M
Minghao Li 已提交
244 245
  SyncIndex syncStartIndex = syncNodeSyncStartIndex(pSyncNode);

M
Minghao Li 已提交
246
  sTrace("test4");
247 248
  sTrace("hasSnapshot:%d, lastApplyIndex:%ld, lastApplyTerm:%lu", hasSnapshot, snapshot.lastApplyIndex,
         snapshot.lastApplyTerm);
M
Minghao Li 已提交
249 250
  sTrace("lastIndex: %ld", lastIndex);
  sTrace("lastTerm: %lu", lastTerm);
M
Minghao Li 已提交
251
  sTrace("syncStartIndex: %ld", syncStartIndex);
M
Minghao Li 已提交
252 253 254 255 256 257 258 259 260 261

  for (SyncIndex i = 11; i >= 6; --i) {
    SyncIndex preIndex = syncNodeGetPreIndex(pSyncNode, i);
    SyncTerm  preTerm = syncNodeGetPreTerm(pSyncNode, i);

    sTrace("%ld's preIndex: %ld", i, preIndex);
    sTrace("%ld's preTerm: %lu", i, preTerm);
  }

  logStoreDestory(pLogStore);
M
Minghao Li 已提交
262
  cleanup();
M
Minghao Li 已提交
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
}

void test5() {
  // has snapshot
  // partial log

  taosRemoveDir(pWalPath);

  init();
  pLogStore = logStoreCreate(pSyncNode);
  assert(pLogStore);
  pSyncNode->pLogStore = pLogStore;
  logStoreLog2((char*)"\n\n\ntest5 ----- ", pLogStore);

  pSyncNode->pLogStore->syncLogSetBeginIndex(pSyncNode->pLogStore, 6);
  for (int i = 6; i <= 10; ++i) {
    int32_t         dataLen = 10;
    SSyncRaftEntry* pEntry = syncEntryBuild(dataLen);
    assert(pEntry != NULL);
    pEntry->msgType = 1;
    pEntry->originalRpcType = 2;
    pEntry->seqNum = 3;
    pEntry->isWeak = true;
    pEntry->term = 100 + i;
    pEntry->index = pLogStore->syncLogWriteIndex(pLogStore);
    snprintf(pEntry->data, dataLen, "value%d", i);

    pLogStore->syncLogAppendEntry(pLogStore, pEntry);
    syncEntryDestory(pEntry);
  }
  logStoreLog2((char*)"test5 after appendEntry", pLogStore);

  gSnapshotLastApplyIndex = 5;
  gSnapshotLastApplyTerm = 100;

298
  bool      hasSnapshot = syncNodeHasSnapshot(pSyncNode);
M
Minghao Li 已提交
299 300 301 302 303 304
  SSnapshot snapshot;
  pSyncNode->pFsm->FpGetSnapshot(pSyncNode->pFsm, &snapshot);

  SyncIndex lastIndex = syncNodeGetLastIndex(pSyncNode);
  SyncTerm  lastTerm = syncNodeGetLastTerm(pSyncNode);

M
Minghao Li 已提交
305 306
  SyncIndex syncStartIndex = syncNodeSyncStartIndex(pSyncNode);

M
Minghao Li 已提交
307
  sTrace("test5");
308 309
  sTrace("hasSnapshot:%d, lastApplyIndex:%ld, lastApplyTerm:%lu", hasSnapshot, snapshot.lastApplyIndex,
         snapshot.lastApplyTerm);
M
Minghao Li 已提交
310 311
  sTrace("lastIndex: %ld", lastIndex);
  sTrace("lastTerm: %lu", lastTerm);
M
Minghao Li 已提交
312
  sTrace("syncStartIndex: %ld", syncStartIndex);
M
Minghao Li 已提交
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334

  for (SyncIndex i = 11; i >= 6; --i) {
    SyncIndex preIndex = syncNodeGetPreIndex(pSyncNode, i);
    SyncTerm  preTerm = syncNodeGetPreTerm(pSyncNode, i);

    sTrace("%ld's preIndex: %ld", i, preIndex);
    sTrace("%ld's preTerm: %lu", i, preTerm);
  }

  logStoreDestory(pLogStore);
  cleanup();
}

int main(int argc, char** argv) {
  tsAsyncLog = 0;
  sDebugFlag = DEBUG_TRACE + DEBUG_INFO + DEBUG_SCREEN + DEBUG_FILE;

  test1();
  test2();
  test3();
  test4();
  test5();
M
Minghao Li 已提交
335 336 337

  return 0;
}