clientTests.cpp 38.9 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/>.
 */

16
#include <gtest/gtest.h>
H
Hongze Cheng 已提交
17 18
#include <iostream>
#include "clientInt.h"
19 20 21
#include "taoserror.h"
#include "tglobal.h"
#include "thash.h"
22

S
Shengliang Guan 已提交
23 24
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wwrite-strings"
25 26 27 28
#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wsign-compare"

H
Haojun Liao 已提交
29
#include "executor.h"
H
Hongze Cheng 已提交
30
#include "taos.h"
31 32

namespace {
33 34 35 36

void printSubResults(void* pRes, int32_t* totalRows) {
  char buf[1024];

37 38
  int32_t vgId = tmq_get_vgroup_id(pRes);
  int64_t offset = tmq_get_vgroup_offset(pRes);
39 40 41 42 43 44 45 46 47 48 49
  while (1) {
    TAOS_ROW row = taos_fetch_row(pRes);
    if (row == NULL) {
      break;
    }

    TAOS_FIELD* fields = taos_fetch_fields(pRes);
    int32_t numOfFields = taos_field_count(pRes);
    int32_t precision = taos_result_precision(pRes);
    taos_print_row(buf, row, fields, numOfFields);
    *totalRows += 1;
wmmhello's avatar
wmmhello 已提交
50
    printf("vgId: %d, offset: %lld, precision: %d, row content: %s\n", vgId, offset, precision, buf);
51 52 53 54 55
  }

//  taos_free_result(pRes);
}

56 57 58 59 60 61 62 63 64 65 66 67 68
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);
  }
}
69

70 71 72 73 74 75
void printResult(TAOS_RES* pRes) {
  TAOS_ROW    pRow = NULL;
  TAOS_FIELD* pFields = taos_fetch_fields(pRes);
  int32_t     numOfFields = taos_num_fields(pRes);

  int32_t n = 0;
H
Hongze Cheng 已提交
76
  char    str[512] = {0};
77
  while ((pRow = taos_fetch_row(pRes)) != NULL) {
X
Xiaoyu Wang 已提交
78 79 80 81 82 83 84 85 86
    //    int32_t* length = taos_fetch_lengths(pRes);
    //    for(int32_t i = 0; i < numOfFields; ++i) {
    //      printf("(%d):%d " , i, length[i]);
    //    }
    //    printf("\n");
    //
    //    int32_t code = taos_print_row(str, pRow, pFields, numOfFields);
    //    printf("%s\n", str);
    //    memset(str, 0, sizeof(str));
87 88 89
  }
}

90
void fetchCallback(void* param, void* res, int32_t numOfRow) {
H
Haojun Liao 已提交
91
#if 0
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  printf("numOfRow = %d \n", numOfRow);
  int         numFields = taos_num_fields(res);
  TAOS_FIELD *fields = taos_fetch_fields(res);
  TAOS       *_taos = (TAOS *)param;
  if (numOfRow > 0) {
    for (int i = 0; i < numOfRow; ++i) {
      TAOS_ROW row = taos_fetch_row(res);

      char temp[256] = {0};
      taos_print_row(temp, row, fields, numFields);
      printf("%s\n", temp);
    }
    taos_fetch_rows_a(res, fetchCallback, _taos);
  } else {
    printf("no more data, close the connection.\n");
//    taos_free_result(res);
//    taos_close(_taos);
//    taos_cleanup();
  }
H
Haojun Liao 已提交
111 112 113 114 115 116 117
#endif
  if (numOfRow == 0) {
    printf("completed\n");
    return;
  }

  taos_fetch_raw_block_a(res, fetchCallback, param);
118 119 120 121 122 123 124
}

void queryCallback(void* param, void* res, int32_t code) {
  if (code != TSDB_CODE_SUCCESS) {
    printf("failed to execute, reason:%s\n", taos_errstr(res));
  }
  printf("start to fetch data\n");
H
Haojun Liao 已提交
125
  taos_fetch_raw_block_a(res, fetchCallback, param);
126 127
}

H
Haojun Liao 已提交
128 129 130 131 132 133 134 135 136 137
void createNewTable(TAOS* pConn, int32_t index) {
  char str[1024] = {0};
  sprintf(str, "create table tu%d using st2 tags(%d)", index, index);

  TAOS_RES* pRes = taos_query(pConn, str);
  if (taos_errno(pRes) != 0) {
    printf("failed to create table tu, reason:%s\n", taos_errstr(pRes));
  }
  taos_free_result(pRes);

H
Haojun Liao 已提交
138
  for (int32_t i = 0; i < 10000; i += 20) {
H
Haojun Liao 已提交
139 140 141 142 143
    char sql[1024] = {0};
    sprintf(sql,
            "insert into tu%d values(now+%da, %d)(now+%da, %d)(now+%da, %d)(now+%da, %d)"
            "(now+%da, %d)(now+%da, %d)(now+%da, %d)(now+%da, %d)(now+%da, %d)(now+%da, %d)"
            "(now+%da, %d)(now+%da, %d)(now+%da, %d)(now+%da, %d)"
H
Hongze Cheng 已提交
144 145 146 147
            "(now+%da, %d)(now+%da, %d)(now+%da, %d)(now+%da, %d)(now+%da, %d)(now+%da, %d)",
            index, i, i, i + 1, i + 1, i + 2, i + 2, i + 3, i + 3, i + 4, i + 4, i + 5, i + 5, i + 6, i + 6, i + 7,
            i + 7, i + 8, i + 8, i + 9, i + 9, i + 10, i + 10, i + 11, i + 11, i + 12, i + 12, i + 13, i + 13, i + 14,
            i + 14, i + 15, i + 15, i + 16, i + 16, i + 17, i + 17, i + 18, i + 18, i + 19, i + 19);
H
Haojun Liao 已提交
148 149 150 151 152 153 154 155
    TAOS_RES* p = taos_query(pConn, sql);
    if (taos_errno(p) != 0) {
      printf("failed to insert data, reason:%s\n", taos_errstr(p));
    }

    taos_free_result(p);
  }
}
H
Haojun Liao 已提交
156

X
Xiaoyu Wang 已提交
157
void* queryThread(void* arg) {
H
Haojun Liao 已提交
158 159 160 161 162 163 164 165 166
  TAOS* pConn = taos_connect("192.168.0.209", "root", "taosdata", NULL, 0);
  if (pConn == NULL) {
    printf("failed to connect to db, reason:%s", taos_errstr(pConn));
    return NULL;
  }

  int64_t el = 0;

  for (int32_t i = 0; i < 5000000; ++i) {
X
Xiaoyu Wang 已提交
167
    int64_t   st = taosGetTimestampUs();
H
Haojun Liao 已提交
168
    TAOS_RES* pRes = taos_query(pConn,
X
Xiaoyu Wang 已提交
169 170
                                "SELECT _wstart as ts,max(usage_user) FROM benchmarkcpu.host_49 WHERE  ts >= "
                                "1451618560000 AND ts < 1451622160000 INTERVAL(1m) ;");
H
Haojun Liao 已提交
171 172 173 174 175 176 177 178 179
    if (taos_errno(pRes) != 0) {
      printf("failed, reason:%s\n", taos_errstr(pRes));
    } else {
      printResult(pRes);
    }

    taos_free_result(pRes);
    el += (taosGetTimestampUs() - st);
    if (i % 1000 == 0 && i != 0) {
X
Xiaoyu Wang 已提交
180
      printf("total:%d, avg time:%.2fms\n", i, el / (double)(i * 1000));
H
Haojun Liao 已提交
181 182 183 184 185 186 187
    }
  }

  taos_close(pConn);
  return NULL;
}

188
int32_t numOfThreads = 1;
189

X
Xiaoyu Wang 已提交
190
void tmq_commit_cb_print(tmq_t* pTmq, int32_t code, void* param) {
H
Haojun Liao 已提交
191
//  printf("auto commit success, code:%d\n", code);
192 193
}

D
dapan1121 已提交
194 195 196 197 198 199
void* doConsumeData(void* param) {
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);

  tmq_conf_t* conf = tmq_conf_new();
  tmq_conf_set(conf, "enable.auto.commit", "true");
  tmq_conf_set(conf, "auto.commit.interval.ms", "1000");
200
  tmq_conf_set(conf, "group.id", "cgrpName41");
D
dapan1121 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
  tmq_conf_set(conf, "td.connect.user", "root");
  tmq_conf_set(conf, "td.connect.pass", "taosdata");
  tmq_conf_set(conf, "auto.offset.reset", "earliest");
  tmq_conf_set(conf, "experimental.snapshot.enable", "true");
  tmq_conf_set(conf, "msg.with.table.name", "true");
  tmq_conf_set_auto_commit_cb(conf, tmq_commit_cb_print, NULL);

  tmq_t* tmq = tmq_consumer_new(conf, NULL, 0);
  tmq_conf_destroy(conf);

  // 创建订阅 topics 列表
  tmq_list_t* topicList = tmq_list_new();
  tmq_list_append(topicList, "topic_t2");

  // 启动订阅
  tmq_subscribe(tmq, topicList);

  tmq_list_destroy(topicList);

  TAOS_FIELD* fields = NULL;
  int32_t     numOfFields = 0;
  int32_t     precision = 0;
  int32_t     totalRows = 0;
  int32_t     msgCnt = 0;
  int32_t     timeout = 25000;

  int32_t count = 0;

  while (1) {
    TAOS_RES* pRes = tmq_consumer_poll(tmq, timeout);
    if (pRes) {
X
Xiaoyu Wang 已提交
232
      char buf[1024];
D
dapan1121 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252

      const char* topicName = tmq_get_topic_name(pRes);
      const char* dbName = tmq_get_db_name(pRes);
      int32_t     vgroupId = tmq_get_vgroup_id(pRes);

      printf("topic: %s\n", topicName);
      printf("db: %s\n", dbName);
      printf("vgroup id: %d\n", vgroupId);

      while (1) {
        TAOS_ROW row = taos_fetch_row(pRes);
        if (row == NULL) {
          break;
        }

        fields = taos_fetch_fields(pRes);
        numOfFields = taos_field_count(pRes);
        precision = taos_result_precision(pRes);
        taos_print_row(buf, row, fields, numOfFields);
        totalRows += 1;
X
Xiaoyu Wang 已提交
253
        //        printf("precision: %d, row content: %s\n", precision, buf);
D
dapan1121 已提交
254 255 256 257 258 259 260 261 262 263 264 265 266 267
      }

      taos_free_result(pRes);
    } else {
      break;
    }
  }

  tmq_consumer_close(tmq);
  taos_close(pConn);
  fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
  return NULL;
}

268 269 270 271
}  // namespace

int main(int argc, char** argv) {
  testing::InitGoogleTest(&argc, argv);
H
Haojun Liao 已提交
272 273 274 275 276 277 278
  if (argc > 1) {
    numOfThreads = atoi(argv[1]);
  }

  numOfThreads = TMAX(numOfThreads, 1);
  printf("the runing threads is:%d", numOfThreads);

279 280 281
  return RUN_ALL_TESTS();
}

282
TEST(clientCase, driverInit_Test) {
S
Shengliang Guan 已提交
283
  // taosInitGlobalCfg();
H
Hongze Cheng 已提交
284
  //  taos_init();
H
Haojun Liao 已提交
285
}
286

287
TEST(clientCase, connect_Test) {
H
Haojun Liao 已提交
288
  taos_options(TSDB_OPTION_CONFIGDIR, "~/first/cfg");
H
Haojun Liao 已提交
289 290 291 292 293 294
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  if (pConn == NULL) {
    printf("failed to connect to server, reason:%s\n", taos_errstr(NULL));
  }
  taos_close(pConn);
}
295 296

TEST(clientCase, create_user_Test) {
297 298 299 300 301 302 303 304 305 306 307 308
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  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);
}

309
TEST(clientCase, create_account_Test) {
310 311 312 313 314 315 316 317 318 319 320 321
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  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);
}

322
TEST(clientCase, drop_account_Test) {
323 324 325 326 327 328 329 330 331 332 333 334
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  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);
}

335
TEST(clientCase, show_user_Test) {
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  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_free_result(pRes);
  taos_close(pConn);
}

355
TEST(clientCase, drop_user_Test) {
356 357 358 359 360 361 362 363 364 365 366 367
  TAOS* pConn = taos_connect("localhost", "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);
}

368
TEST(clientCase, show_db_Test) {
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  assert(pConn != NULL);

  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);
}

387
TEST(clientCase, create_db_Test) {
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  assert(pConn != NULL);

  TAOS_RES* pRes = taos_query(pConn, "create database abc1 vgroups 2");
  if (taos_errno(pRes) != 0) {
    printf("error in create db, 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);

  pRes = taos_query(pConn, "create database abc1 vgroups 4");
  if (taos_errno(pRes) != 0) {
    printf("error in create db, reason:%s\n", taos_errstr(pRes));
  }
  taos_close(pConn);
}

411
TEST(clientCase, create_dnode_Test) {
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  assert(pConn != NULL);

  TAOS_RES* pRes = taos_query(pConn, "create dnode abc1 port 7000");
  if (taos_errno(pRes) != 0) {
    printf("error in create dnode, reason:%s\n", taos_errstr(pRes));
  }
  taos_free_result(pRes);

  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));
  }
  taos_free_result(pRes);

  taos_close(pConn);
}

430
TEST(clientCase, drop_dnode_Test) {
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  assert(pConn != NULL);

  TAOS_RES* pRes = taos_query(pConn, "drop dnode 3");
  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);

  pRes = taos_query(pConn, "drop dnode 4");
  if (taos_errno(pRes) != 0) {
    printf("error in drop dnode, reason:%s\n", taos_errstr(pRes));
  }

  taos_free_result(pRes);
  taos_close(pConn);
}

454
TEST(clientCase, use_db_test) {
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
  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("error in use db, 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_close(pConn);
}

472
// TEST(clientCase, drop_db_test) {
H
Haojun Liao 已提交
473 474 475
//  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
//  assert(pConn != NULL);
//
476 477 478
//  showDB(pConn);
//
//  TAOS_RES* pRes = taos_query(pConn, "drop database abc1");
H
Haojun Liao 已提交
479
//  if (taos_errno(pRes) != 0) {
480
//    printf("failed to drop db, reason:%s\n", taos_errstr(pRes));
H
Haojun Liao 已提交
481 482 483
//  }
//  taos_free_result(pRes);
//
484
//  showDB(pConn);
H
Haojun Liao 已提交
485
//
486
//  pRes = taos_query(pConn, "create database abc1");
H
Haojun Liao 已提交
487
//  if (taos_errno(pRes) != 0) {
488
//    printf("create to drop db, reason:%s\n", taos_errstr(pRes));
H
Haojun Liao 已提交
489 490
//  }
//  taos_free_result(pRes);
491
//  taos_close(pConn);
H
Haojun Liao 已提交
492
//}
493

494
TEST(clientCase, create_stable_Test) {
495 496 497 498 499 500 501 502 503
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  assert(pConn != NULL);

  TAOS_RES* pRes = taos_query(pConn, "create database if not exists abc1 vgroups 2");
  if (taos_errno(pRes) != 0) {
    printf("error in create db, reason:%s\n", taos_errstr(pRes));
  }
  taos_free_result(pRes);

H
Haojun Liao 已提交
504 505
  pRes = taos_query(pConn, "use abc1");

506 507 508 509 510 511 512 513 514 515 516 517
  pRes = taos_query(pConn, "create table if not exists abc1.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);

X
Xiaoyu Wang 已提交
518 519 520 521 522 523 524 525 526 527 528
  //  pRes = taos_query(pConn, "create stable if not exists abc1.`123_$^)` (ts timestamp, `abc` int) tags(a int)");
  //  if (taos_errno(pRes) != 0) {
  //    printf("failed to create super table 123_$^), reason:%s\n", taos_errstr(pRes));
  //  }
  //
  //  pRes = taos_query(pConn, "use abc1");
  //  taos_free_result(pRes);
  //  pRes = taos_query(pConn, "drop stable `123_$^)`");
  //  if (taos_errno(pRes) != 0) {
  //    printf("failed to drop super table 123_$^), reason:%s\n", taos_errstr(pRes));
  //  }
529 530 531 532

  taos_close(pConn);
}

533
TEST(clientCase, create_table_Test) {
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
  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, "create table if not exists tm0(ts timestamp, k int)");
  ASSERT_EQ(taos_errno(pRes), 0);

  taos_free_result(pRes);

  pRes = taos_query(pConn, "create table if not exists tm0(ts timestamp, k blob)");
  ASSERT_NE(taos_errno(pRes), 0);

  taos_free_result(pRes);
  taos_close(pConn);
}

552
TEST(clientCase, create_ctable_Test) {
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
  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 stable if not exists st1 (ts timestamp, k int ) tags(a int)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create stable, reason:%s\n", taos_errstr(pRes));
  }
  taos_free_result(pRes);

H
Haojun Liao 已提交
568
  pRes = taos_query(pConn, "create table tu using st1 tags('2021-10-10 1:1:1');");
569 570 571 572 573 574 575 576
  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);
}

577
TEST(clientCase, show_stable_Test) {
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  assert(pConn != nullptr);

  TAOS_RES* pRes = taos_query(pConn, "show abc1.stables");
  if (taos_errno(pRes) != 0) {
    printf("failed to show stables, 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);
  taos_close(pConn);
}

602
TEST(clientCase, show_vgroup_Test) {
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
  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, "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);
  taos_close(pConn);
}
633

634
TEST(clientCase, create_multiple_tables) {
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

  TAOS_RES* pRes = taos_query(pConn, "create database if not exists abc1");
  if (taos_errno(pRes) != 0) {
    printf("failed to create db, reason:%s\n", taos_errstr(pRes));
    taos_free_result(pRes);
    taos_close(pConn);
    return;
  }
  taos_free_result(pRes);

  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);
    taos_close(pConn);
    return;
  }

  taos_free_result(pRes);

  pRes = taos_query(pConn, "create stable if not exists st1 (ts timestamp, k int) tags(a int)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create stable tables, reason:%s\n", taos_errstr(pRes));
  }

  taos_free_result(pRes);

664
  pRes = taos_query(pConn, "create table if not exists t_2 using st1 tags(1)");
665 666 667 668 669 670 671
  if (taos_errno(pRes) != 0) {
    printf("failed to create multiple tables, reason:%s\n", taos_errstr(pRes));
    taos_free_result(pRes);
    ASSERT_TRUE(false);
  }

  taos_free_result(pRes);
672
  pRes = taos_query(pConn, "create table if not exists t_3 using st1 tags(2)");
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
  if (taos_errno(pRes) != 0) {
    printf("failed to create multiple tables, 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);

691
  for (int32_t i = 0; i < 500; i += 2) {
692
    char sql[512] = {0};
X
Xiaoyu Wang 已提交
693
    snprintf(sql, tListLen(sql), "create table t_x_%d using st1 tags(2) t_x_%d using st1 tags(5)", i, i + 1);
694 695 696 697 698 699 700 701 702 703
    TAOS_RES* pres = taos_query(pConn, sql);
    if (taos_errno(pres) != 0) {
      printf("failed to create table %d\n, reason:%s", i, taos_errstr(pres));
    }
    taos_free_result(pres);
  }

  taos_close(pConn);
}

704
TEST(clientCase, show_table_Test) {
705 706 707 708 709 710 711 712 713
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  assert(pConn != NULL);

  TAOS_RES* pRes = taos_query(pConn, "show tables");
  if (taos_errno(pRes) != 0) {
    printf("failed to show tables, reason:%s\n", taos_errstr(pRes));
  }
  taos_free_result(pRes);

H
Haojun Liao 已提交
714 715 716
  taos_query(pConn, "use abc1");

  pRes = taos_query(pConn, "show tables");
717 718 719 720 721 722 723 724 725 726
  if (taos_errno(pRes) != 0) {
    printf("failed to show tables, reason:%s\n", taos_errstr(pRes));
    taos_free_result(pRes);
  }

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

  int32_t count = 0;
X
Xiaoyu Wang 已提交
727
  char    str[512] = {0};
728 729 730 731 732 733 734 735 736 737

  while ((pRow = taos_fetch_row(pRes)) != NULL) {
    int32_t code = taos_print_row(str, pRow, pFields, numOfFields);
    printf("%d: %s\n", ++count, str);
  }

  taos_free_result(pRes);
  taos_close(pConn);
}

X
Xiaoyu Wang 已提交
738 739 740
// TEST(clientCase, drop_stable_Test) {
//   TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
//   assert(pConn != nullptr);
H
Haojun Liao 已提交
741
//
X
Xiaoyu Wang 已提交
742 743 744 745 746
//   TAOS_RES* pRes = taos_query(pConn, "create database if not exists abc1");
//   if (taos_errno(pRes) != 0) {
//     printf("error in creating db, reason:%s\n", taos_errstr(pRes));
//   }
//   taos_free_result(pRes);
H
Haojun Liao 已提交
747
//
X
Xiaoyu Wang 已提交
748 749 750 751 752
//   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);
H
Haojun Liao 已提交
753
//
X
Xiaoyu Wang 已提交
754 755 756 757
//   pRes = taos_query(pConn, "drop stable st1");
//   if (taos_errno(pRes) != 0) {
//     printf("failed to drop stable, reason:%s\n", taos_errstr(pRes));
//   }
H
Haojun Liao 已提交
758
//
X
Xiaoyu Wang 已提交
759 760 761
//   taos_free_result(pRes);
//   taos_close(pConn);
// }
H
Haojun Liao 已提交
762

763
TEST(clientCase, generated_request_id_test) {
764 765 766 767 768 769
  SHashObj* phash = taosHashInit(10000, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_ENTRY_LOCK);

  for (int32_t i = 0; i < 50000; ++i) {
    uint64_t v = generateRequestId();
    void*    result = taosHashGet(phash, &v, sizeof(v));
    if (result != nullptr) {
X
Xiaoyu Wang 已提交
770
      //      printf("0x%llx, index:%d\n", v, i);
771 772 773 774 775 776 777 778
    }
    assert(result == nullptr);
    taosHashPut(phash, &v, sizeof(v), NULL, 0);
  }

  taosHashCleanup(phash);
}

779
TEST(clientCase, insert_test) {
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

  TAOS_RES* pRes = taos_query(pConn, "use abc1");
  taos_free_result(pRes);

  pRes = taos_query(pConn, "insert into t_2 values(now, 1)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create into table t_2, reason:%s\n", taos_errstr(pRes));
    taos_free_result(pRes);
    ASSERT_TRUE(false);
  }

  taos_free_result(pRes);
  taos_close(pConn);
}

797
TEST(clientCase, projection_query_tables) {
798 799 800
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

H
Hongze Cheng 已提交
801 802 803 804 805
  //  TAOS_RES* pRes = taos_query(pConn, "create database if not exists abc1 vgroups 1");
  //  if (taos_errno(pRes) != 0) {
  //    printf("error in create db, reason:%s\n", taos_errstr(pRes));
  //  }
  //  taos_free_result(pRes);
H
Haojun Liao 已提交
806

D
dapan1121 已提交
807
  TAOS_RES* pRes = taos_query(pConn, "use abc1");
808 809
  taos_free_result(pRes);

H
Haojun Liao 已提交
810 811 812 813
  pRes = taos_query(pConn, "create stable st1 (ts timestamp, k int) tags(a int)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create table tu, reason:%s\n", taos_errstr(pRes));
  }
H
Haojun Liao 已提交
814

H
Haojun Liao 已提交
815 816 817 818 819 820 821 822 823 824 825 826 827 828
  taos_free_result(pRes);

  pRes = taos_query(pConn, "create stable st2 (ts timestamp, k int) tags(a int)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create table tu, reason:%s\n", taos_errstr(pRes));
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "create table tu using st1 tags(1)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create table tu, reason:%s\n", taos_errstr(pRes));
  }
  taos_free_result(pRes);

H
Haojun Liao 已提交
829
  for (int32_t i = 0; i < 1; ++i) {
H
Haojun Liao 已提交
830 831 832
    printf("create table :%d\n", i);
    createNewTable(pConn, i);
  }
H
Hongze Cheng 已提交
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
  //
  //  pRes = taos_query(pConn, "select * from tu");
  //  if (taos_errno(pRes) != 0) {
  //    printf("failed to select from table, 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);
  //  }
850 851

  taos_free_result(pRes);
852 853
  taos_close(pConn);
}
854

855
TEST(clientCase, tsbs_perf_test) {
H
Haojun Liao 已提交
856 857
  TdThread qid[20] = {0};

X
Xiaoyu Wang 已提交
858
  for (int32_t i = 0; i < numOfThreads; ++i) {
H
Haojun Liao 已提交
859 860 861 862
    taosThreadCreate(&qid[i], NULL, queryThread, NULL);
  }
  getchar();
}
863

864
TEST(clientCase, projection_query_stables) {
865 866 867
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

H
Haojun Liao 已提交
868
  TAOS_RES* pRes = taos_query(pConn, "use test");
869 870
  taos_free_result(pRes);

H
Haojun Liao 已提交
871
  pRes = taos_query(pConn, "select * from meters limit 50000000");
872 873 874 875 876 877 878 879 880 881 882 883
  if (taos_errno(pRes) != 0) {
    printf("failed to select from table, 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) {
X
Xiaoyu Wang 已提交
884 885
    //    int32_t code = taos_print_row(str, pRow, pFields, numOfFields);
    //    printf("%s\n", str);
886 887 888 889 890
  }

  taos_free_result(pRes);
  taos_close(pConn);
}
H
Haojun Liao 已提交
891

892
TEST(clientCase, agg_query_tables) {
893 894 895 896 897 898 899 900 901 902 903
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

  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);
    ASSERT_TRUE(false);
  }
  taos_free_result(pRes);

904
  pRes = taos_query(pConn, "show table distributed tup");
905 906 907 908 909 910 911 912 913 914
  if (taos_errno(pRes) != 0) {
    printf("failed to select from table, reason:%s\n", taos_errstr(pRes));
    taos_free_result(pRes);
    ASSERT_TRUE(false);
  }

  printResult(pRes);
  taos_free_result(pRes);
  taos_close(pConn);
}
915

H
Haojun Liao 已提交
916
/*
917
--- copy the following script in the shell to setup the environment ---
H
Haojun Liao 已提交
918 919 920 921 922 923

create database test;
use test;
create table m1(ts timestamp, k int) tags(a int);
create table tm0 using m1 tags(1);
create table tm1 using m1 tags(2);
X
Xiaoyu Wang 已提交
924 925
insert into tm0 values('2021-1-1 1:1:1.120', 1) ('2021-1-1 1:1:2.9', 2) tm1 values('2021-1-1 1:1:1.120', 11) ('2021-1-1
1:1:2.99', 22);
H
Haojun Liao 已提交
926 927

 */
928
TEST(clientCase, async_api_test) {
929 930 931
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

932
  taos_query(pConn, "use abc1");
H
Haojun Liao 已提交
933

H
Haojun Liao 已提交
934
  TAOS_RES* pRes = taos_query(pConn, "insert into tu(ts) values('2022-02-27 12:12:61')");
935 936 937 938
  if (taos_errno(pRes) != 0) {
    printf("failed, reason:%s\n", taos_errstr(pRes));
  }

X
Xiaoyu Wang 已提交
939
  int32_t     n = 0;
940 941 942 943 944 945 946
  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* length = taos_fetch_lengths(pRes);
X
Xiaoyu Wang 已提交
947 948
    for (int32_t i = 0; i < numOfFields; ++i) {
      printf("(%d):%d ", i, length[i]);
949 950 951 952 953 954 955
    }
    printf("\n");

    int32_t code = taos_print_row(str, pRow, pFields, numOfFields);
    printf("%s\n", str);
    memset(str, 0, sizeof(str));
  }
956

957
  taos_query_a(pConn, "select count(*) from tu", queryCallback, pConn);
958 959 960
  getchar();
  taos_close(pConn);
}
961

962
TEST(clientCase, update_test) {
963 964 965
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

H
Haojun Liao 已提交
966
  TAOS_RES* pRes = taos_query(pConn, "select cast(0 as timestamp)-1y");
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981
  if (taos_errno(pRes) != TSDB_CODE_SUCCESS) {
    printf("failed to create database, code:%s", taos_errstr(pRes));
    taos_free_result(pRes);
    return;
  }

  taos_free_result(pRes);

  pRes = taos_query(pConn, "use abc1");
  if (taos_errno(pRes) != TSDB_CODE_SUCCESS) {
    printf("failed to use db, code:%s", taos_errstr(pRes));
    taos_free_result(pRes);
    return;
  }
  taos_free_result(pRes);
982

983
  pRes = taos_query(pConn, "create table tup (ts timestamp, k int);");
984 985 986 987 988 989
  if (taos_errno(pRes) != 0) {
    printf("failed to create table, reason:%s", taos_errstr(pRes));
  }

  taos_free_result(pRes);

X
Xiaoyu Wang 已提交
990 991
  char s[256] = {0};
  for (int32_t i = 0; i < 17000; ++i) {
992
    sprintf(s, "insert into tup values(now+%da, %d)", i, i);
993 994 995 996
    pRes = taos_query(pConn, s);
    taos_free_result(pRes);
  }
}
997

D
dapan1121 已提交
998
TEST(clientCase, sub_db_test) {
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

  //  TAOS_RES* pRes = taos_query(pConn, "create topic topic_t1 as select * from t1");
  //  if (taos_errno(pRes) != TSDB_CODE_SUCCESS) {
  //    printf("failed to create topic, code:%s", taos_errstr(pRes));
  //    taos_free_result(pRes);
  //    return;
  //  }

  tmq_conf_t* conf = tmq_conf_new();
  tmq_conf_set(conf, "enable.auto.commit", "true");
  tmq_conf_set(conf, "auto.commit.interval.ms", "1000");
D
dapan1121 已提交
1012
  tmq_conf_set(conf, "group.id", "cgrpNamedb");
1013 1014 1015
  tmq_conf_set(conf, "td.connect.user", "root");
  tmq_conf_set(conf, "td.connect.pass", "taosdata");
  tmq_conf_set(conf, "auto.offset.reset", "earliest");
H
Haojun Liao 已提交
1016
  tmq_conf_set(conf, "experimental.snapshot.enable", "false");
1017 1018 1019 1020 1021 1022 1023 1024
  tmq_conf_set(conf, "msg.with.table.name", "true");
  tmq_conf_set_auto_commit_cb(conf, tmq_commit_cb_print, NULL);

  tmq_t* tmq = tmq_consumer_new(conf, NULL, 0);
  tmq_conf_destroy(conf);

  // 创建订阅 topics 列表
  tmq_list_t* topicList = tmq_list_new();
1025
  tmq_list_append(topicList, "topic_t1");
H
Haojun Liao 已提交
1026
//  tmq_list_append(topicList, "topic_s2");
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038

  // 启动订阅
  tmq_subscribe(tmq, topicList);
  tmq_list_destroy(topicList);

  TAOS_FIELD* fields = NULL;
  int32_t     numOfFields = 0;
  int32_t     precision = 0;
  int32_t     totalRows = 0;
  int32_t     msgCnt = 0;
  int32_t     timeout = 5000;

1039 1040
  int32_t count = 0;

1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
  while (1) {
    TAOS_RES* pRes = tmq_consumer_poll(tmq, timeout);
    if (pRes) {
      char    buf[1024];
      int32_t rows = 0;

      const char* topicName = tmq_get_topic_name(pRes);
      const char* dbName = tmq_get_db_name(pRes);
      int32_t     vgroupId = tmq_get_vgroup_id(pRes);

      printf("topic: %s\n", topicName);
      printf("db: %s\n", dbName);
      printf("vgroup id: %d\n", vgroupId);

X
Xiaoyu Wang 已提交
1055
      if (count++ > 200) {
1056 1057 1058 1059
        tmq_unsubscribe(tmq);
        break;
      }

1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
      while (1) {
        TAOS_ROW row = taos_fetch_row(pRes);
        if (row == NULL) break;

        fields = taos_fetch_fields(pRes);
        numOfFields = taos_field_count(pRes);
        precision = taos_result_precision(pRes);
        rows++;
        taos_print_row(buf, row, fields, numOfFields);
        printf("precision: %d, row content: %s\n", precision, buf);
      }
D
dapan1121 已提交
1071
      taos_free_result(pRes);
1072 1073 1074 1075 1076
    }
  }

  fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
}
1077

1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
TEST(clientCase, td_25129) {
//  taos_options(TSDB_OPTION_CONFIGDIR, "~/first/cfg");

  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

  tmq_conf_t* conf = tmq_conf_new();

  tmq_conf_set(conf, "enable.auto.commit", "false");
  tmq_conf_set(conf, "auto.commit.interval.ms", "2000");
  tmq_conf_set(conf, "group.id", "group_id_2");
  tmq_conf_set(conf, "td.connect.user", "root");
  tmq_conf_set(conf, "td.connect.pass", "taosdata");
  tmq_conf_set(conf, "auto.offset.reset", "earliest");
  tmq_conf_set(conf, "msg.with.table.name", "true");

  tmq_t* tmq = tmq_consumer_new(conf, NULL, 0);
  tmq_conf_destroy(conf);

  // 创建订阅 topics 列表
  tmq_list_t* topicList = tmq_list_new();
  tmq_list_append(topicList, "tp");

  // 启动订阅
  tmq_subscribe(tmq, topicList);
  tmq_list_destroy(topicList);

  TAOS_FIELD* fields = NULL;
  int32_t     numOfFields = 0;
  int32_t     precision = 0;
  int32_t     totalRows = 0;
  int32_t     msgCnt = 0;
  int32_t     timeout = 2000;

  int32_t count = 0;

  tmq_topic_assignment* pAssign = NULL;
  int32_t numOfAssign = 0;

  int32_t code = tmq_get_topic_assignment(tmq, "tp", &pAssign, &numOfAssign);
  if (code != 0) {
    printf("error occurs:%s\n", tmq_err2str(code));
    tmq_free_assignment(pAssign);
    tmq_consumer_close(tmq);
    taos_close(pConn);
    fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
    return;
  }

  for(int i = 0; i < numOfAssign; i++){
    printf("assign i:%d, vgId:%d, offset:%lld, start:%lld, end:%lld\n", i, pAssign[i].vgId, pAssign[i].currentOffset, pAssign[i].begin, pAssign[i].end);
  }

//  tmq_offset_seek(tmq, "tp", pAssign[0].vgId, 4);
  tmq_free_assignment(pAssign);

  code = tmq_get_topic_assignment(tmq, "tp", &pAssign, &numOfAssign);
  if (code != 0) {
    printf("error occurs:%s\n", tmq_err2str(code));
    tmq_free_assignment(pAssign);
    tmq_consumer_close(tmq);
    taos_close(pConn);
    fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
    return;
  }

  for(int i = 0; i < numOfAssign; i++){
    printf("assign i:%d, vgId:%d, offset:%lld, start:%lld, end:%lld\n", i, pAssign[i].vgId, pAssign[i].currentOffset, pAssign[i].begin, pAssign[i].end);
  }

  tmq_free_assignment(pAssign);

  code = tmq_get_topic_assignment(tmq, "tp", &pAssign, &numOfAssign);
  if (code != 0) {
    printf("error occurs:%s\n", tmq_err2str(code));
    tmq_free_assignment(pAssign);
    tmq_consumer_close(tmq);
    taos_close(pConn);
    fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
    return;
  }

  for(int i = 0; i < numOfAssign; i++){
    printf("assign i:%d, vgId:%d, offset:%lld, start:%lld, end:%lld\n", i, pAssign[i].vgId, pAssign[i].currentOffset, pAssign[i].begin, pAssign[i].end);
  }

  while (1) {
1165
    printf("start to poll\n");
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178
    TAOS_RES* pRes = tmq_consumer_poll(tmq, timeout);
    if (pRes) {
      char buf[128];

      const char* topicName = tmq_get_topic_name(pRes);
//      const char* dbName = tmq_get_db_name(pRes);
//      int32_t     vgroupId = tmq_get_vgroup_id(pRes);
//
//      printf("topic: %s\n", topicName);
//      printf("db: %s\n", dbName);
//      printf("vgroup id: %d\n", vgroupId);

      printSubResults(pRes, &totalRows);
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192

      code = tmq_get_topic_assignment(tmq, "tp", &pAssign, &numOfAssign);
      if (code != 0) {
        printf("error occurs:%s\n", tmq_err2str(code));
        tmq_free_assignment(pAssign);
        tmq_consumer_close(tmq);
        taos_close(pConn);
        fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
        return;
      }

      for(int i = 0; i < numOfAssign; i++){
        printf("assign i:%d, vgId:%d, offset:%lld, start:%lld, end:%lld\n", i, pAssign[i].vgId, pAssign[i].currentOffset, pAssign[i].begin, pAssign[i].end);
      }
1193 1194 1195
    } else {
      tmq_offset_seek(tmq, "tp", pAssign[0].vgId, pAssign[0].currentOffset);
      tmq_offset_seek(tmq, "tp", pAssign[1].vgId, pAssign[1].currentOffset);
1196
      tmq_commit_sync(tmq, pRes);
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
      continue;
    }

//    tmq_commit_sync(tmq, pRes);
    if (pRes != NULL) {
      taos_free_result(pRes);
      //      if ((++count) > 1) {
      //        break;
      //      }
    } else {
      break;
    }

//    tmq_offset_seek(tmq, "tp", pAssign[0].vgId, pAssign[0].begin);
  }

  tmq_free_assignment(pAssign);

  code = tmq_get_topic_assignment(tmq, "tp", &pAssign, &numOfAssign);
  if (code != 0) {
    printf("error occurs:%s\n", tmq_err2str(code));
    tmq_free_assignment(pAssign);
    tmq_consumer_close(tmq);
    taos_close(pConn);
    fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
    return;
  }

  for(int i = 0; i < numOfAssign; i++){
    printf("assign i:%d, vgId:%d, offset:%lld, start:%lld, end:%lld\n", i, pAssign[i].vgId, pAssign[i].currentOffset, pAssign[i].begin, pAssign[i].end);
  }

  tmq_consumer_close(tmq);
  taos_close(pConn);
  fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
}

D
dapan1121 已提交
1234 1235 1236 1237 1238 1239 1240
TEST(clientCase, sub_tb_test) {
  taos_options(TSDB_OPTION_CONFIGDIR, "~/first/cfg");

  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  ASSERT_NE(pConn, nullptr);

  tmq_conf_t* conf = tmq_conf_new();
H
Haojun Liao 已提交
1241

H
Haojun Liao 已提交
1242
  int32_t ts = taosGetTimestampMs()%INT32_MAX;
H
Haojun Liao 已提交
1243
  char consumerGroupid[128] = {0};
H
Haojun Liao 已提交
1244
  sprintf(consumerGroupid, "group_id_%d", ts);
H
Haojun Liao 已提交
1245

D
dapan1121 已提交
1246
  tmq_conf_set(conf, "enable.auto.commit", "true");
H
Haojun Liao 已提交
1247 1248
  tmq_conf_set(conf, "auto.commit.interval.ms", "2000");
  tmq_conf_set(conf, "group.id", consumerGroupid);
D
dapan1121 已提交
1249 1250 1251
  tmq_conf_set(conf, "td.connect.user", "root");
  tmq_conf_set(conf, "td.connect.pass", "taosdata");
  tmq_conf_set(conf, "auto.offset.reset", "earliest");
1252
  tmq_conf_set(conf, "experimental.snapshot.enable", "false");
D
dapan1121 已提交
1253 1254 1255 1256 1257 1258 1259 1260
  tmq_conf_set(conf, "msg.with.table.name", "true");
  tmq_conf_set_auto_commit_cb(conf, tmq_commit_cb_print, NULL);

  tmq_t* tmq = tmq_consumer_new(conf, NULL, 0);
  tmq_conf_destroy(conf);

  // 创建订阅 topics 列表
  tmq_list_t* topicList = tmq_list_new();
1261
  tmq_list_append(topicList, "t1");
D
dapan1121 已提交
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271

  // 启动订阅
  tmq_subscribe(tmq, topicList);
  tmq_list_destroy(topicList);

  TAOS_FIELD* fields = NULL;
  int32_t     numOfFields = 0;
  int32_t     precision = 0;
  int32_t     totalRows = 0;
  int32_t     msgCnt = 0;
1272
  int32_t     timeout = 2500000;
D
dapan1121 已提交
1273 1274 1275

  int32_t count = 0;

1276 1277 1278
  tmq_topic_assignment* pAssign = NULL;
  int32_t numOfAssign = 0;

1279
  int32_t code = tmq_get_topic_assignment(tmq, "t1", &pAssign, &numOfAssign);
1280 1281 1282 1283 1284 1285 1286
  if (code != 0) {
    printf("error occurs:%s\n", tmq_err2str(code));
    tmq_consumer_close(tmq);
    taos_close(pConn);
    fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
    return;
  }
1287

1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
  tmq_offset_seek(tmq, "t1", pAssign[0].vgId, 4);

  code = tmq_get_topic_assignment(tmq, "t1", &pAssign, &numOfAssign);
  if (code != 0) {
    printf("error occurs:%s\n", tmq_err2str(code));
    tmq_consumer_close(tmq);
    taos_close(pConn);
    fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
    return;
  }
1298

D
dapan1121 已提交
1299 1300 1301
  while (1) {
    TAOS_RES* pRes = tmq_consumer_poll(tmq, timeout);
    if (pRes) {
H
Haojun Liao 已提交
1302
      char buf[128];
D
dapan1121 已提交
1303

H
Haojun Liao 已提交
1304
      const char* topicName = tmq_get_topic_name(pRes);
H
Haojun Liao 已提交
1305 1306 1307 1308 1309 1310
//      const char* dbName = tmq_get_db_name(pRes);
//      int32_t     vgroupId = tmq_get_vgroup_id(pRes);
//
//      printf("topic: %s\n", topicName);
//      printf("db: %s\n", dbName);
//      printf("vgroup id: %d\n", vgroupId);
D
dapan1121 已提交
1311

1312 1313 1314 1315 1316
      printSubResults(pRes, &totalRows);
    } else {
//      tmq_offset_seek(tmq, "topic_t1", pAssign[0].vgroupHandle, pAssign[0].begin);
//      break;
    }
D
dapan1121 已提交
1317

1318 1319
    tmq_commit_sync(tmq, pRes);
    if (pRes != NULL) {
D
dapan1121 已提交
1320
      taos_free_result(pRes);
H
Haojun Liao 已提交
1321 1322 1323
      //      if ((++count) > 1) {
      //        break;
      //      }
D
dapan1121 已提交
1324 1325 1326
    } else {
      break;
    }
1327

H
Haojun Liao 已提交
1328
    tmq_offset_seek(tmq, "topic_t1", pAssign[0].vgId, pAssign[0].begin);
D
dapan1121 已提交
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
  }

  tmq_consumer_close(tmq);
  taos_close(pConn);
  fprintf(stderr, "%d msg consumed, include %d rows\n", msgCnt, totalRows);
}

TEST(clientCase, sub_tb_mt_test) {
  taos_options(TSDB_OPTION_CONFIGDIR, "~/first/cfg");
  TdThread qid[20] = {0};

X
Xiaoyu Wang 已提交
1340
  for (int32_t i = 0; i < 1; ++i) {
D
dapan1121 已提交
1341 1342 1343
    taosThreadCreate(&qid[i], NULL, doConsumeData, NULL);
  }

X
Xiaoyu Wang 已提交
1344
  for (int32_t i = 0; i < 4; ++i) {
D
dapan1121 已提交
1345 1346 1347 1348
    taosThreadJoin(qid[i], NULL);
  }
}

L
Liu Jicong 已提交
1349
#pragma GCC diagnostic pop