planTestMain.cpp 2.2 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("/tmp/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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

 private:
  void initLog(const char* path) {
    dDebugFlag = 143;
    vDebugFlag = 0;
    mDebugFlag = 143;
    cDebugFlag = 0;
    jniDebugFlag = 0;
    tmrDebugFlag = 135;
    uDebugFlag = 135;
    rpcDebugFlag = 143;
    qDebugFlag = 143;
    wDebugFlag = 0;
    sDebugFlag = 0;
    tsdbDebugFlag = 0;
    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 已提交
60
};
61

X
Xiaoyu Wang 已提交
62
static void parseArg(int argc, char* argv[]) {
X
Xiaoyu Wang 已提交
63 64
  int                  opt = 0;
  const char*          optstring = "";
65 66
  static struct option long_options[] = {
      {"dump", optional_argument, NULL, 'd'}, {"skipSql", optional_argument, NULL, 's'}, {0, 0, 0, 0}};
X
Xiaoyu Wang 已提交
67 68 69
  while ((opt = getopt_long(argc, argv, optstring, long_options, NULL)) != -1) {
    switch (opt) {
      case 'd':
X
Xiaoyu Wang 已提交
70
        setDumpModule(optarg);
X
Xiaoyu Wang 已提交
71
        break;
72 73 74
      case 's':
        g_skipSql = 1;
        break;
X
Xiaoyu Wang 已提交
75 76 77 78 79 80
      default:
        break;
    }
  }
}

X
Xiaoyu Wang 已提交
81
int main(int argc, char* argv[]) {
X
Xiaoyu Wang 已提交
82 83
  testing::AddGlobalTestEnvironment(new PlannerEnv());
  testing::InitGoogleTest(&argc, argv);
X
Xiaoyu Wang 已提交
84
  parseArg(argc, argv);
X
Xiaoyu Wang 已提交
85
  return RUN_ALL_TESTS();
X
Xiaoyu Wang 已提交
86
}