parserTestMain.cpp 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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/>.
 */

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

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

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

32 33
bool g_isDump = false;

34 35 36
class ParserEnv : public testing::Environment {
public:
  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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
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;
    }
  }
}

69 70 71
int main(int argc, char* argv[]) {
	testing::AddGlobalTestEnvironment(new ParserEnv());
	testing::InitGoogleTest(&argc, argv);
72
  parseArg(argc, argv);
73 74
	return RUN_ALL_TESTS();
}