parTestMain.cpp 1.7 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 <getopt.h>
wafwerar's avatar
wafwerar 已提交
17 18
#include <stdio.h>
#include <stdlib.h>
X
Xiaoyu Wang 已提交
19
#include <string>
20 21 22

#include <gtest/gtest.h>

wafwerar's avatar
wafwerar 已提交
23 24 25
#ifdef WINDOWS
#define TD_USE_WINSOCK
#endif
X
Xiaoyu Wang 已提交
26

X
Xiaoyu Wang 已提交
27
#include "functionMgt.h"
wafwerar's avatar
wafwerar 已提交
28
#include "mockCatalog.h"
X
Xiaoyu Wang 已提交
29
#include "os.h"
X
Xiaoyu Wang 已提交
30
#include "parTestUtil.h"
X
Xiaoyu Wang 已提交
31
#include "parToken.h"
32

33
class ParserEnv : public testing::Environment {
X
Xiaoyu Wang 已提交
34
 public:
35
  virtual void SetUp() {
36 37
    initMetaDataEnv();
    generateMetaData();
38 39 40
  }

  virtual void TearDown() {
41
    destroyMetaDataEnv();
X
Xiaoyu Wang 已提交
42 43
    taosCleanupKeywordsTable();
    fmFuncMgtDestroy();
44 45 46 47 48 49
  }

  ParserEnv() {}
  virtual ~ParserEnv() {}
};

50
static void parseArg(int argc, char* argv[]) {
X
Xiaoyu Wang 已提交
51 52 53
  int                  opt = 0;
  const char*          optstring = "";
  static struct option long_options[] = {{"dump", no_argument, NULL, 'd'}, {0, 0, 0, 0}};
54 55 56 57 58 59 60 61 62 63 64
  while ((opt = getopt_long(argc, argv, optstring, long_options, NULL)) != -1) {
    switch (opt) {
      case 'd':
        g_isDump = true;
        break;
      default:
        break;
    }
  }
}

65
int main(int argc, char* argv[]) {
X
Xiaoyu Wang 已提交
66 67
  testing::AddGlobalTestEnvironment(new ParserEnv());
  testing::InitGoogleTest(&argc, argv);
68
  parseArg(argc, argv);
X
Xiaoyu Wang 已提交
69
  return RUN_ALL_TESTS();
70
}