parserTestMain.cpp 1.8 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/>.
 */

wafwerar's avatar
wafwerar 已提交
16 17
#include <stdio.h>
#include <stdlib.h>
X
Xiaoyu Wang 已提交
18
#include <string>
19

20
#include <getopt.h>
21 22
#include <gtest/gtest.h>

wafwerar's avatar
wafwerar 已提交
23 24 25
#ifdef WINDOWS
#define TD_USE_WINSOCK
#endif
X
Xiaoyu Wang 已提交
26
#include "functionMgt.h"
wafwerar's avatar
wafwerar 已提交
27
#include "mockCatalog.h"
X
Xiaoyu Wang 已提交
28 29 30
#include "os.h"
#include "parToken.h"
#include "parserTestUtil.h"
31

32 33
bool g_isDump = false;

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

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

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

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

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