TDengine/source/libs/stream/test/checkpointTest.cpp

69 lines
1.7 KiB
C++
Raw Normal View History

2023-11-02 12:13:29 +00:00
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* This program 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.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <gtest/gtest.h>
#include <taoserror.h>
#include <tglobal.h>
#include <iostream>
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wwrite-strings"
#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wsign-compare"
#include "rsync.h"
#include "streamInt.h"
2023-11-07 10:49:12 +00:00
#include "cos.h"
2023-11-02 12:13:29 +00:00
int main(int argc, char **argv) {
testing::InitGoogleTest(&argc, argv);
2023-11-07 10:49:12 +00:00
if (taosInitCfg("/etc/taos/", NULL, NULL, NULL, NULL, 0) != 0) {
printf("error");
}
if (s3Init() < 0) {
return -1;
}
2023-11-08 07:01:04 +00:00
strcpy(tsSnodeAddress, "127.0.0.1");
2023-11-02 12:13:29 +00:00
return RUN_ALL_TESTS();
}
TEST(testCase, checkpointUpload_Test) {
2023-11-08 07:01:04 +00:00
stopRsync();
startRsync();
2023-11-02 12:13:29 +00:00
taosSsleep(5);
char* id = "2013892036";
2023-11-07 10:49:12 +00:00
uploadCheckpoint(id, "/root/offset/");
2023-11-02 12:13:29 +00:00
}
TEST(testCase, checkpointDownload_Test) {
char* id = "2013892036";
2023-11-07 10:49:12 +00:00
downloadCheckpoint(id, "/root/offset/download/");
2023-11-02 12:13:29 +00:00
}
TEST(testCase, checkpointDelete_Test) {
char* id = "2013892036";
2023-11-07 10:49:12 +00:00
deleteCheckpoint(id);
}
TEST(testCase, checkpointDeleteFile_Test) {
char* id = "2013892036";
deleteCheckpointFile(id, "offset-ver0");
2023-11-02 12:13:29 +00:00
}