queryTest.cpp 2.2 KB
Newer Older
H
Haojun Liao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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 <gtest/gtest.h>
#include <iostream>
H
Hongze Cheng 已提交
18
#include "tmsg.h"
H
Haojun Liao 已提交
19
#include "query.h"
L
Liu Jicong 已提交
20
#include "trpc.h"
H
Haojun Liao 已提交
21

S
Shengliang Guan 已提交
22 23
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wwrite-strings"
H
Haojun Liao 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wsign-compare"

namespace {
typedef struct SParam {
  int32_t v;
} SParam;
int32_t testPrint(void* p) {
  SParam* param = (SParam*)p;
  printf("hello world, %d\n", param->v);
  tfree(p);
  return 0;
}

int32_t testPrintError(void* p) {
  SParam* param = (SParam*) p;
  tfree(p);

  return -1;
}
}  // namespace

class QueryTestEnv : public testing::Environment {
 public:
  virtual void SetUp() { initTaskQueue(); }

  virtual void TearDown() { cleanupTaskQueue(); }

  QueryTestEnv() {}
  virtual ~QueryTestEnv() {}
};

int main(int argc, char** argv) {
  testing::AddGlobalTestEnvironment(new QueryTestEnv());
  testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
}

TEST(testCase, async_task_test) {
  SParam* p = (SParam*)calloc(1, sizeof(SParam));
  taosAsyncExec(testPrint, p, NULL);
wafwerar's avatar
wafwerar 已提交
66
  taosMsleep(5);
H
Haojun Liao 已提交
67 68 69 70 71 72 73 74 75
}

TEST(testCase, many_async_task_test) {
  for(int32_t i = 0; i < 50; ++i) {
    SParam* p = (SParam*) calloc(1, sizeof(SParam));
    p->v = i;
    taosAsyncExec(testPrint, p, NULL);
  }

wafwerar's avatar
wafwerar 已提交
76
  taosMsleep(10);
H
Haojun Liao 已提交
77 78 79 80 81 82
}

TEST(testCase, error_in_async_test) {
  int32_t code = 0;
  SParam* p = (SParam*) calloc(1, sizeof(SParam));
  taosAsyncExec(testPrintError, p, &code);
wafwerar's avatar
wafwerar 已提交
83
  taosMsleep(1);
H
Haojun Liao 已提交
84
  printf("Error code:%d after asynchronously exec function\n", code);
L
Liu Jicong 已提交
85
}
S
Shengliang Guan 已提交
86 87

#pragma GCC diagnostic pop