clientTests.cpp 4.2 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 <gtest/gtest.h>
17
#include <taoserror.h>
18 19 20 21 22 23 24 25
#include <iostream>
#include "tglobal.h"
#pragma GCC diagnostic ignored "-Wwrite-strings"

#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wsign-compare"

H
Haojun Liao 已提交
26
#include "../inc/clientInt.h"
27 28 29 30 31 32 33 34 35 36 37
#include "taos.h"

namespace {
}  // namespace

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

TEST(testCase, driverInit_Test) {
H
Haojun Liao 已提交
38 39 40 41 42
  taos_init();
}

TEST(testCase, connect_Test) {
  TAOS* pConn = taos_connect("ubuntu", "root", "taosdata", NULL, 0);
H
Haojun Liao 已提交
43
//  assert(pConn != NULL);
H
Haojun Liao 已提交
44 45 46 47
  taos_close(pConn);
}

TEST(testCase, create_user_Test) {
H
Haojun Liao 已提交
48
  TAOS* pConn = taos_connect("ubuntu", "root", "taosdata", NULL, 0);
H
Haojun Liao 已提交
49 50 51 52 53 54 55 56
//  assert(pConn != NULL);

  TAOS_RES* pRes = taos_query(pConn, "drop user abc");
  if (taos_errno(pRes) != TSDB_CODE_SUCCESS) {
    printf("failed to create user, reason:%s\n", taos_errstr(pRes));
  }

  taos_free_result(pRes);
H
Haojun Liao 已提交
57

H
Haojun Liao 已提交
58
  pRes = taos_query(pConn, "create user abc pass 'abc'");
H
Haojun Liao 已提交
59 60 61 62 63 64 65 66
  if (taos_errno(pRes) != TSDB_CODE_SUCCESS) {
    printf("failed to create user, reason:%s\n", taos_errstr(pRes));
  }

  taos_free_result(pRes);
  taos_close(pConn);
}

H
Haojun Liao 已提交
67 68
TEST(testCase, create_account_Test) {
  TAOS* pConn = taos_connect("ubuntu", "root", "taosdata", NULL, 0);
H
Haojun Liao 已提交
69 70
//  assert(pConn != NULL);

H
Haojun Liao 已提交
71 72 73 74 75 76 77 78 79 80
  TAOS_RES* pRes = taos_query(pConn, "create account aabc pass 'abc'");
  if (taos_errno(pRes) != TSDB_CODE_SUCCESS) {
    printf("failed to create user, reason:%s\n", taos_errstr(pRes));
  }

  taos_free_result(pRes);
  taos_close(pConn);
}

TEST(testCase, drop_account_Test) {
H
Haojun Liao 已提交
81 82 83
  TAOS* pConn = taos_connect("ubuntu", "root", "taosdata", NULL, 0);
  assert(pConn != NULL);

H
Haojun Liao 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
  TAOS_RES* pRes = taos_query(pConn, "drop account aabc");
  if (taos_errno(pRes) != TSDB_CODE_SUCCESS) {
    printf("failed to create user, reason:%s\n", taos_errstr(pRes));
  }

  taos_free_result(pRes);
  taos_close(pConn);
}

TEST(testCase, drop_user_Test) {
  TAOS* pConn = taos_connect("ubuntu", "root", "taosdata", NULL, 0);
  assert(pConn != NULL);

  TAOS_RES* pRes = taos_query(pConn, "drop user abc");
  if (taos_errno(pRes) != TSDB_CODE_SUCCESS) {
    printf("failed to create user, reason:%s\n", taos_errstr(pRes));
  }

  taos_free_result(pRes);
  taos_close(pConn);
}

TEST(testCase, show_user_Test) {
  TAOS* pConn = taos_connect("ubuntu", "root", "taosdata", NULL, 0);
//  assert(pConn != NULL);

H
Haojun Liao 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
  TAOS_RES* pRes = taos_query(pConn, "show users");
  TAOS_ROW pRow = NULL;

  TAOS_FIELD* pFields = taos_fetch_fields(pRes);
  int32_t numOfFields = taos_num_fields(pRes);

  char str[512] = {0};
  while((pRow = taos_fetch_row(pRes)) != NULL) {
    int32_t code = taos_print_row(str, pRow, pFields, numOfFields);
    printf("%s\n", str);
  }

  taos_close(pConn);
}

H
Haojun Liao 已提交
125 126
TEST(testCase, show_db_Test) {
  TAOS* pConn = taos_connect("ubuntu", "root", "taosdata", NULL, 0);
H
Haojun Liao 已提交
127
//  assert(pConn != NULL);
H
Haojun Liao 已提交
128 129 130

  TAOS_RES* pRes = taos_query(pConn, "show databases");
  TAOS_ROW pRow = NULL;
131

H
Haojun Liao 已提交
132 133 134 135 136 137 138 139
  TAOS_FIELD* pFields = taos_fetch_fields(pRes);
  int32_t numOfFields = taos_num_fields(pRes);

  char str[512] = {0};
  while((pRow = taos_fetch_row(pRes)) != NULL) {
    int32_t code = taos_print_row(str, pRow, pFields, numOfFields);
    printf("%s\n", str);
  }
140

H
Haojun Liao 已提交
141
  taos_close(pConn);
H
Haojun Liao 已提交
142
}
H
Haojun Liao 已提交
143 144 145

TEST(testCase, create_db_Test) {
  TAOS* pConn = taos_connect("ubuntu", "root", "taosdata", NULL, 0);
H
Haojun Liao 已提交
146
//  assert(pConn != NULL);
H
Haojun Liao 已提交
147

H
Haojun Liao 已提交
148
  TAOS_RES* pRes = taos_query(pConn, "create database abc1");
H
Haojun Liao 已提交
149 150 151 152 153 154 155 156 157

  TAOS_FIELD* pFields = taos_fetch_fields(pRes);
  ASSERT_TRUE(pFields == NULL);

  int32_t numOfFields = taos_num_fields(pRes);
  ASSERT_EQ(numOfFields, 0);

  taos_close(pConn);
}