planTestMain.cpp 2.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

X
Xiaoyu Wang 已提交
16
#include <string>
17

X
Xiaoyu Wang 已提交
18
#include <gtest/gtest.h>
wafwerar's avatar
wafwerar 已提交
19
#include "getopt.h"
X
Xiaoyu Wang 已提交
20
#include "mockCatalog.h"
X
Xiaoyu Wang 已提交
21
#include "planTestUtil.h"
22

X
Xiaoyu Wang 已提交
23
class PlannerEnv : public testing::Environment {
X
Xiaoyu Wang 已提交
24
 public:
X
Xiaoyu Wang 已提交
25 26 27
  virtual void SetUp() {
    initMetaDataEnv();
    generateMetaData();
28
    initLog(TD_TMP_DIR_PATH "td");
X
Xiaoyu Wang 已提交
29
  }
30

X
Xiaoyu Wang 已提交
31
  virtual void TearDown() { destroyMetaDataEnv(); }
X
Xiaoyu Wang 已提交
32 33 34

  PlannerEnv() {}
  virtual ~PlannerEnv() {}
35 36 37

 private:
  void initLog(const char* path) {
38 39 40 41 42 43 44 45 46 47 48 49 50
    int32_t logLevel = getLogLevel();
    dDebugFlag = logLevel;
    vDebugFlag = logLevel;
    mDebugFlag = logLevel;
    cDebugFlag = logLevel;
    jniDebugFlag = logLevel;
    tmrDebugFlag = logLevel;
    uDebugFlag = logLevel;
    rpcDebugFlag = logLevel;
    qDebugFlag = logLevel;
    wDebugFlag = logLevel;
    sDebugFlag = logLevel;
    tsdbDebugFlag = logLevel;
51 52 53 54 55 56 57 58 59 60
    tsLogEmbedded = 1;
    tsAsyncLog = 0;

    taosRemoveDir(path);
    taosMkDir(path);
    tstrncpy(tsLogDir, path, PATH_MAX);
    if (taosInitLog("taoslog", 1) != 0) {
      std::cout << "failed to init log file" << std::endl;
    }
  }
X
Xiaoyu Wang 已提交
61
};
62

X
Xiaoyu Wang 已提交
63
static void parseArg(int argc, char* argv[]) {
64 65 66
  int         opt = 0;
  const char* optstring = "";
  // clang-format off
67
  static struct option long_options[] = {
68 69 70 71 72 73
    {"dump", optional_argument, NULL, 'd'},
    {"skipSql", required_argument, NULL, 's'},
    {"log", required_argument, NULL, 'l'},
    {0, 0, 0, 0}
  };
  // clang-format on
X
Xiaoyu Wang 已提交
74 75 76
  while ((opt = getopt_long(argc, argv, optstring, long_options, NULL)) != -1) {
    switch (opt) {
      case 'd':
X
Xiaoyu Wang 已提交
77
        setDumpModule(optarg);
X
Xiaoyu Wang 已提交
78
        break;
79
      case 's':
80 81 82 83
        setSkipSqlNum(optarg);
        break;
      case 'l':
        setLogLevel(optarg);
84
        break;
X
Xiaoyu Wang 已提交
85 86 87 88 89 90
      default:
        break;
    }
  }
}

X
Xiaoyu Wang 已提交
91
int main(int argc, char* argv[]) {
X
Xiaoyu Wang 已提交
92 93
  testing::AddGlobalTestEnvironment(new PlannerEnv());
  testing::InitGoogleTest(&argc, argv);
X
Xiaoyu Wang 已提交
94
  parseArg(argc, argv);
X
Xiaoyu Wang 已提交
95
  return RUN_ALL_TESTS();
X
Xiaoyu Wang 已提交
96
}