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>
19

X
Xiaoyu Wang 已提交
20
#include "mockCatalog.h"
X
Xiaoyu Wang 已提交
21
#include "planTestUtil.h"
22

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

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

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

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

X
Xiaoyu Wang 已提交
56 57 58
int main(int argc, char* argv[]) {
	testing::AddGlobalTestEnvironment(new PlannerEnv());
	testing::InitGoogleTest(&argc, argv);
X
Xiaoyu Wang 已提交
59
  parseArg(argc, argv);
X
Xiaoyu Wang 已提交
60 61
	return RUN_ALL_TESTS();
}