planTestMain.cpp 1.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 28
  virtual void SetUp() {
    initMetaDataEnv();
    generateMetaData();
  }
29

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

  PlannerEnv() {}
  virtual ~PlannerEnv() {}
};
35

X
Xiaoyu Wang 已提交
36
static void parseArg(int argc, char* argv[]) {
X
Xiaoyu Wang 已提交
37 38
  int                  opt = 0;
  const char*          optstring = "";
X
Xiaoyu Wang 已提交
39
  static struct option long_options[] = {{"dump", optional_argument, NULL, 'd'}, {0, 0, 0, 0}};
X
Xiaoyu Wang 已提交
40 41 42
  while ((opt = getopt_long(argc, argv, optstring, long_options, NULL)) != -1) {
    switch (opt) {
      case 'd':
X
Xiaoyu Wang 已提交
43
        setDumpModule(optarg);
X
Xiaoyu Wang 已提交
44 45 46 47 48 49 50
        break;
      default:
        break;
    }
  }
}

X
Xiaoyu Wang 已提交
51
int main(int argc, char* argv[]) {
X
Xiaoyu Wang 已提交
52 53
  testing::AddGlobalTestEnvironment(new PlannerEnv());
  testing::InitGoogleTest(&argc, argv);
X
Xiaoyu Wang 已提交
54
  parseArg(argc, argv);
X
Xiaoyu Wang 已提交
55
  return RUN_ALL_TESTS();
X
Xiaoyu Wang 已提交
56
}