2021-12-10 08:12:28 +00:00
|
|
|
/*
|
|
|
|
|
* 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>
|
2021-12-15 11:34:36 +00:00
|
|
|
#include <taoserror.h>
|
2021-12-10 08:12:28 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wwrite-strings"
|
|
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-variable"
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wsign-compare"
|
|
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
#include "../inc/clientInt.h"
|
2021-12-10 08:12:28 +00:00
|
|
|
#include "taos.h"
|
2021-12-23 02:33:11 +00:00
|
|
|
#include "tglobal.h"
|
2021-12-10 08:12:28 +00:00
|
|
|
|
|
|
|
|
namespace {
|
2021-12-23 08:00:17 +00:00
|
|
|
void showDB(TAOS* pConn) {
|
|
|
|
|
TAOS_RES* pRes = taos_query(pConn, "show databases");
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-10 08:12:28 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
|
testing::InitGoogleTest(&argc, argv);
|
|
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
TEST(testCase, driverInit_Test) { taos_init(); }
|
2021-12-17 03:22:31 +00:00
|
|
|
|
2021-12-29 09:53:43 +00:00
|
|
|
#if 0
|
2021-12-24 15:02:30 +00:00
|
|
|
TEST(testCase, connect_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-23 08:10:46 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-24 15:09:38 +00:00
|
|
|
TEST(testCase, create_user_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-24 15:09:38 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
|
|
|
|
TAOS_RES* pRes = taos_query(pConn, "create user abc 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, create_account_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-24 15:09:38 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
|
|
|
|
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) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-24 15:09:38 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
2021-12-23 08:10:46 +00:00
|
|
|
|
2021-12-24 15:02:30 +00:00
|
|
|
TEST(testCase, show_user_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-23 08:10:46 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-24 15:02:30 +00:00
|
|
|
TEST(testCase, drop_user_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-23 08:10:46 +00:00
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-24 15:02:30 +00:00
|
|
|
TEST(testCase, show_db_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-23 08:00:17 +00:00
|
|
|
// assert(pConn != NULL);
|
2021-12-23 08:10:46 +00:00
|
|
|
|
|
|
|
|
TAOS_RES* pRes = taos_query(pConn, "show databases");
|
|
|
|
|
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);
|
|
|
|
|
}
|
2021-12-20 11:07:39 +00:00
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
TEST(testCase, create_db_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-20 11:24:14 +00:00
|
|
|
assert(pConn != NULL);
|
2021-12-17 03:22:31 +00:00
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
TAOS_RES* pRes = taos_query(pConn, "create database abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in create db, reason:%s\n", taos_errstr(pRes));
|
2021-12-20 11:07:39 +00:00
|
|
|
}
|
|
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
TAOS_FIELD* pFields = taos_fetch_fields(pRes);
|
|
|
|
|
ASSERT_TRUE(pFields == NULL);
|
2021-12-17 08:42:26 +00:00
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
int32_t numOfFields = taos_num_fields(pRes);
|
|
|
|
|
ASSERT_EQ(numOfFields, 0);
|
2021-12-20 11:07:39 +00:00
|
|
|
|
2021-12-27 08:10:39 +00:00
|
|
|
taos_free_result(pRes);
|
|
|
|
|
|
2021-12-29 07:01:12 +00:00
|
|
|
pRes = taos_query(pConn, "create database abc1 vgroups 4");
|
2021-12-27 08:10:39 +00:00
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in create db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
2021-12-20 11:07:39 +00:00
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-27 10:48:07 +00:00
|
|
|
TEST(testCase, create_dnode_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-27 10:48:07 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
2021-12-28 02:55:08 +00:00
|
|
|
TAOS_RES* pRes = taos_query(pConn, "create dnode abc1 port 7000");
|
2021-12-27 10:48:07 +00:00
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in create dnode, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
2021-12-28 10:17:13 +00:00
|
|
|
taos_free_result(pRes);
|
2021-12-27 10:48:07 +00:00
|
|
|
|
2021-12-28 10:17:13 +00:00
|
|
|
pRes = taos_query(pConn, "create dnode 1.1.1.1 port 9000");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("failed to create dnode, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
2021-12-27 10:48:07 +00:00
|
|
|
taos_free_result(pRes);
|
2021-12-28 10:17:13 +00:00
|
|
|
|
2021-12-27 10:48:07 +00:00
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(testCase, drop_dnode_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-27 10:48:07 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
|
|
|
|
TAOS_RES* pRes = taos_query(pConn, "drop dnode 2");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in drop dnode, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TAOS_FIELD* pFields = taos_fetch_fields(pRes);
|
|
|
|
|
ASSERT_TRUE(pFields == NULL);
|
|
|
|
|
|
|
|
|
|
int32_t numOfFields = taos_num_fields(pRes);
|
|
|
|
|
ASSERT_EQ(numOfFields, 0);
|
|
|
|
|
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
TEST(testCase, use_db_test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-23 08:00:17 +00:00
|
|
|
assert(pConn != NULL);
|
2021-12-20 11:07:39 +00:00
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
TAOS_RES* pRes = taos_query(pConn, "use abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in use db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
2021-12-17 08:42:26 +00:00
|
|
|
|
|
|
|
|
TAOS_FIELD* pFields = taos_fetch_fields(pRes);
|
2021-12-23 08:00:17 +00:00
|
|
|
ASSERT_TRUE(pFields == NULL);
|
2021-12-17 08:42:26 +00:00
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
int32_t numOfFields = taos_num_fields(pRes);
|
|
|
|
|
ASSERT_EQ(numOfFields, 0);
|
2021-12-17 08:42:26 +00:00
|
|
|
|
|
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
TEST(testCase, drop_db_test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-20 11:24:14 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
showDB(pConn);
|
|
|
|
|
|
|
|
|
|
TAOS_RES* pRes = taos_query(pConn, "drop database abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("failed to drop db, reason:%s\n", taos_errstr(pRes));
|
2021-12-20 11:24:14 +00:00
|
|
|
}
|
|
|
|
|
taos_free_result(pRes);
|
2021-12-23 08:00:17 +00:00
|
|
|
|
|
|
|
|
showDB(pConn);
|
2021-12-24 15:02:30 +00:00
|
|
|
|
|
|
|
|
pRes = taos_query(pConn, "create database abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("create to drop db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
taos_free_result(pRes);
|
2021-12-20 11:24:14 +00:00
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-27 07:19:10 +00:00
|
|
|
TEST(testCase, create_stable_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-27 07:19:10 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
|
|
|
|
TAOS_RES* pRes = taos_query(pConn, "create database abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in create db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
|
|
|
|
|
pRes = taos_query(pConn, "use abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in use db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
|
|
|
|
|
pRes = taos_query(pConn, "create stable st1(ts timestamp, k int) tags(a int)");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in create stable, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TAOS_FIELD* pFields = taos_fetch_fields(pRes);
|
|
|
|
|
ASSERT_TRUE(pFields == NULL);
|
|
|
|
|
|
|
|
|
|
int32_t numOfFields = taos_num_fields(pRes);
|
|
|
|
|
ASSERT_EQ(numOfFields, 0);
|
|
|
|
|
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
2021-12-23 08:00:17 +00:00
|
|
|
|
|
|
|
|
TEST(testCase, create_table_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
// TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-23 08:00:17 +00:00
|
|
|
// assert(pConn != NULL);
|
|
|
|
|
//
|
|
|
|
|
// TAOS_RES* pRes = taos_query(pConn, "use abc1");
|
|
|
|
|
// taos_free_result(pRes);
|
|
|
|
|
//
|
|
|
|
|
// pRes = taos_query(pConn, "create table tm0(ts timestamp, k int)");
|
|
|
|
|
// taos_free_result(pRes);
|
|
|
|
|
//
|
|
|
|
|
// taos_close(pConn);
|
|
|
|
|
}
|
2021-12-17 03:22:31 +00:00
|
|
|
|
2021-12-28 02:55:08 +00:00
|
|
|
TEST(testCase, create_ctable_Test) {
|
|
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
|
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
|
|
|
|
TAOS_RES* pRes = taos_query(pConn, "use abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("failed to use db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
|
|
|
|
|
pRes = taos_query(pConn, "create table tm0 using st1 tags(1)");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("failed to create child table tm0, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
2021-12-23 08:00:17 +00:00
|
|
|
|
|
|
|
|
TEST(testCase, show_stable_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-23 08:00:17 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
2021-12-24 15:02:30 +00:00
|
|
|
TAOS_RES* pRes = taos_query(pConn, "use abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("failed to use db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
|
|
|
|
|
pRes = taos_query(pConn, "show stables");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("failed to show stables, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
ASSERT_TRUE(false);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-17 03:22:31 +00:00
|
|
|
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);
|
|
|
|
|
}
|
2021-12-15 11:34:36 +00:00
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
taos_free_result(pRes);
|
2021-12-24 15:09:38 +00:00
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(testCase, show_vgroup_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-24 15:09:38 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
|
|
|
|
TAOS_RES* pRes = taos_query(pConn, "use abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("failed to use db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
|
|
|
|
|
pRes = taos_query(pConn, "show vgroups");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("failed to show vgroups, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
ASSERT_TRUE(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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_free_result(pRes);
|
|
|
|
|
|
2021-12-23 02:33:11 +00:00
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
TEST(testCase, drop_stable_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-21 09:18:39 +00:00
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
TAOS_RES* pRes = taos_query(pConn, "create database abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in creating db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
2021-12-23 02:33:11 +00:00
|
|
|
taos_free_result(pRes);
|
|
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
pRes = taos_query(pConn, "use abc1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("error in using db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
|
|
|
|
taos_free_result(pRes);
|
2021-12-21 09:18:39 +00:00
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
pRes = taos_query(pConn, "drop stable st1");
|
|
|
|
|
if (taos_errno(pRes) != 0) {
|
|
|
|
|
printf("failed to drop stable, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
}
|
2021-12-21 09:18:39 +00:00
|
|
|
|
2021-12-23 08:00:17 +00:00
|
|
|
taos_free_result(pRes);
|
2021-12-21 09:18:39 +00:00
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|
2021-12-29 09:53:43 +00:00
|
|
|
#endif
|
2021-12-23 08:00:17 +00:00
|
|
|
|
2021-12-29 07:01:12 +00:00
|
|
|
//TEST(testCase, create_topic_Test) {
|
2021-12-27 11:04:04 +00:00
|
|
|
// TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
2021-12-23 08:00:17 +00:00
|
|
|
// assert(pConn != NULL);
|
|
|
|
|
//
|
2021-12-29 07:01:12 +00:00
|
|
|
// TAOS_RES* pRes = taos_query(pConn, "create database abc1");
|
|
|
|
|
// if (taos_errno(pRes) != 0) {
|
|
|
|
|
// printf("error in create db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
// }
|
|
|
|
|
// taos_free_result(pRes);
|
|
|
|
|
//
|
|
|
|
|
// pRes = taos_query(pConn, "use abc1");
|
|
|
|
|
// if (taos_errno(pRes) != 0) {
|
|
|
|
|
// printf("error in use db, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
// }
|
2021-12-23 08:00:17 +00:00
|
|
|
// taos_free_result(pRes);
|
|
|
|
|
//
|
2021-12-29 07:01:12 +00:00
|
|
|
// pRes = taos_query(pConn, "create stable st1(ts timestamp, k int) tags(a int)");
|
|
|
|
|
// if (taos_errno(pRes) != 0) {
|
|
|
|
|
// printf("error in create stable, reason:%s\n", taos_errstr(pRes));
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// TAOS_FIELD* pFields = taos_fetch_fields(pRes);
|
|
|
|
|
// ASSERT_TRUE(pFields == NULL);
|
|
|
|
|
//
|
|
|
|
|
// int32_t numOfFields = taos_num_fields(pRes);
|
|
|
|
|
// ASSERT_EQ(numOfFields, 0);
|
|
|
|
|
//
|
2021-12-23 08:00:17 +00:00
|
|
|
// taos_free_result(pRes);
|
|
|
|
|
//
|
2021-12-29 07:01:12 +00:00
|
|
|
// char* sql = "select * from st1";
|
|
|
|
|
// tmq_create_topic(pConn, "test_topic_1", sql, strlen(sql));
|
2021-12-23 08:00:17 +00:00
|
|
|
// taos_close(pConn);
|
|
|
|
|
//}
|
2021-12-28 09:51:13 +00:00
|
|
|
|
2021-12-29 07:16:52 +00:00
|
|
|
TEST(testCase, show_table_Test) {
|
|
|
|
|
TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
|
|
|
|
|
assert(pConn != NULL);
|
|
|
|
|
|
|
|
|
|
TAOS_RES* pRes = taos_query(pConn, "use abc1");
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
|
|
|
|
|
pRes = taos_query(pConn, "show tables");
|
|
|
|
|
taos_free_result(pRes);
|
|
|
|
|
|
|
|
|
|
taos_close(pConn);
|
|
|
|
|
}
|