173 lines
3.9 KiB
C++
173 lines
3.9 KiB
C++
#include "syncRaftLog.h"
|
|
//#include <gtest/gtest.h>
|
|
#include <stdio.h>
|
|
#include "syncEnv.h"
|
|
#include "syncIO.h"
|
|
#include "syncInt.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");
|
|
}
|
|
|
|
const char *gWalPath = "./syncLogStoreTest_wal";
|
|
|
|
void init() { walInit(); }
|
|
|
|
void test1() {
|
|
taosRemoveDir(gWalPath);
|
|
|
|
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;
|
|
SWal *pWal = walOpen(gWalPath, &walCfg);
|
|
assert(pWal != NULL);
|
|
|
|
int64_t firstVer = walGetFirstVer(pWal);
|
|
int64_t lastVer = walGetLastVer(pWal);
|
|
printf("firstVer:%ld lastVer:%ld \n", firstVer, lastVer);
|
|
|
|
walClose(pWal);
|
|
}
|
|
|
|
void test2() {
|
|
taosRemoveDir(gWalPath);
|
|
|
|
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;
|
|
SWal *pWal = walOpen(gWalPath, &walCfg);
|
|
assert(pWal != NULL);
|
|
|
|
for (int i = 0; i < 5; ++i) {
|
|
int code = walWrite(pWal, i, 100, "aa", 3);
|
|
if (code != 0) {
|
|
printf("code:%d terror:%d msg:%s i:%d \n", code, terrno, tstrerror(terrno), i);
|
|
assert(0);
|
|
}
|
|
}
|
|
|
|
int64_t firstVer = walGetFirstVer(pWal);
|
|
int64_t lastVer = walGetLastVer(pWal);
|
|
printf("firstVer:%ld lastVer:%ld \n", firstVer, lastVer);
|
|
|
|
walClose(pWal);
|
|
}
|
|
|
|
void test3() {
|
|
taosRemoveDir(gWalPath);
|
|
|
|
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;
|
|
SWal *pWal = walOpen(gWalPath, &walCfg);
|
|
assert(pWal != NULL);
|
|
|
|
walRestoreFromSnapshot(pWal, 5);
|
|
|
|
int64_t firstVer = walGetFirstVer(pWal);
|
|
int64_t lastVer = walGetLastVer(pWal);
|
|
printf("firstVer:%ld lastVer:%ld \n", firstVer, lastVer);
|
|
|
|
walClose(pWal);
|
|
}
|
|
|
|
void test4() {
|
|
taosRemoveDir(gWalPath);
|
|
|
|
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;
|
|
SWal *pWal = walOpen(gWalPath, &walCfg);
|
|
assert(pWal != NULL);
|
|
|
|
walRestoreFromSnapshot(pWal, 5);
|
|
|
|
for (int i = 6; i < 10; ++i) {
|
|
int code = walWrite(pWal, i, 100, "aa", 3);
|
|
if (code != 0) {
|
|
printf("code:%d terror:%d msg:%s i:%d \n", code, terrno, tstrerror(terrno), i);
|
|
assert(0);
|
|
}
|
|
}
|
|
|
|
int64_t firstVer = walGetFirstVer(pWal);
|
|
int64_t lastVer = walGetLastVer(pWal);
|
|
printf("firstVer:%ld lastVer:%ld \n", firstVer, lastVer);
|
|
|
|
walClose(pWal);
|
|
}
|
|
|
|
void test5() {
|
|
taosRemoveDir(gWalPath);
|
|
|
|
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;
|
|
SWal *pWal = walOpen(gWalPath, &walCfg);
|
|
assert(pWal != NULL);
|
|
|
|
walRestoreFromSnapshot(pWal, 5);
|
|
walRestoreFromSnapshot(pWal, 7);
|
|
|
|
int64_t firstVer = walGetFirstVer(pWal);
|
|
int64_t lastVer = walGetLastVer(pWal);
|
|
printf("firstVer:%ld lastVer:%ld \n", firstVer, lastVer);
|
|
|
|
walClose(pWal);
|
|
}
|
|
|
|
void cleanup() { walCleanUp(); }
|
|
|
|
int main(int argc, char **argv) {
|
|
tsAsyncLog = 0;
|
|
sDebugFlag = DEBUG_TRACE + DEBUG_SCREEN + DEBUG_FILE;
|
|
init();
|
|
|
|
test1();
|
|
test2();
|
|
test3();
|
|
test4();
|
|
test5();
|
|
|
|
cleanup();
|
|
return 0;
|
|
}
|