tsdbSmaTest.cpp 7.3 KB
Newer Older
C
Cary Xu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 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 <taoserror.h>
#include <tglobal.h>
#include <iostream>

C
Cary Xu 已提交
21
#include <metaDef.h>
C
Cary Xu 已提交
22 23
#include <tmsg.h>

C
Cary Xu 已提交
24 25 26 27 28 29
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wwrite-strings"
#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wsign-compare"

C
Cary Xu 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
int main(int argc, char **argv) {
  testing::InitGoogleTest(&argc, argv);
  return RUN_ALL_TESTS();
}

TEST(testCase, tSmaEncodeDecodeTest) {
  // encode
  STSma tSma = {0};
  tSma.version = 0;
  tSma.intervalUnit = TD_TIME_UNIT_DAY;
  tSma.interval = 1;
  tSma.slidingUnit = TD_TIME_UNIT_HOUR;
  tSma.sliding = 0;
  tstrncpy(tSma.indexName, "sma_index_test", TSDB_INDEX_NAME_LEN);
  tSma.tableUid = 1234567890;
  tSma.numOfColIds = 2;
  tSma.numOfFuncIds = 5;  // sum/min/max/avg/last
  tSma.colIds = (col_id_t *)calloc(tSma.numOfColIds, sizeof(col_id_t));
  tSma.funcIds = (uint16_t *)calloc(tSma.numOfFuncIds, sizeof(uint16_t));
C
Cary Xu 已提交
49

C
Cary Xu 已提交
50 51 52 53 54 55
  for (int32_t i = 0; i < tSma.numOfColIds; ++i) {
    *(tSma.colIds + i) = (i + PRIMARYKEY_TIMESTAMP_COL_ID);
  }
  for (int32_t i = 0; i < tSma.numOfFuncIds; ++i) {
    *(tSma.funcIds + i) = (i + 2);
  }
C
Cary Xu 已提交
56

C
Cary Xu 已提交
57 58
  STSmaWrapper tSmaWrapper = {.number = 1, .tSma = &tSma};
  uint32_t     bufLen = tEncodeTSmaWrapper(NULL, &tSmaWrapper);
C
Cary Xu 已提交
59

C
Cary Xu 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
  void *buf = calloc(bufLen, 1);
  assert(buf != NULL);

  STSmaWrapper *pSW = (STSmaWrapper *)buf;
  uint32_t      len = tEncodeTSmaWrapper(&buf, &tSmaWrapper);

  EXPECT_EQ(len, bufLen);

  // decode
  STSmaWrapper dstTSmaWrapper = {0};
  void *       result = tDecodeTSmaWrapper(pSW, &dstTSmaWrapper);
  assert(result != NULL);

  EXPECT_EQ(tSmaWrapper.number, dstTSmaWrapper.number);

  for (int i = 0; i < tSmaWrapper.number; ++i) {
    STSma *pSma = tSmaWrapper.tSma + i;
    STSma *qSma = dstTSmaWrapper.tSma + i;

    EXPECT_EQ(pSma->version, qSma->version);
    EXPECT_EQ(pSma->intervalUnit, qSma->intervalUnit);
    EXPECT_EQ(pSma->slidingUnit, qSma->slidingUnit);
    EXPECT_STRCASEEQ(pSma->indexName, qSma->indexName);
    EXPECT_EQ(pSma->numOfColIds, qSma->numOfColIds);
    EXPECT_EQ(pSma->numOfFuncIds, qSma->numOfFuncIds);
    EXPECT_EQ(pSma->tableUid, qSma->tableUid);
    EXPECT_EQ(pSma->interval, qSma->interval);
    EXPECT_EQ(pSma->sliding, qSma->sliding);
    for (uint32_t j = 0; j < pSma->numOfColIds; ++j) {
      EXPECT_EQ(*(col_id_t *)(pSma->colIds + j), *(col_id_t *)(qSma->colIds + j));
    }
    for (uint32_t j = 0; j < pSma->numOfFuncIds; ++j) {
      EXPECT_EQ(*(uint16_t *)(pSma->funcIds + j), *(uint16_t *)(qSma->funcIds + j));
    }
  }

  // resource release
C
Cary Xu 已提交
97 98
  tdDestroyTSma(&tSma);
  tdDestroyTSmaWrapper(&dstTSmaWrapper);
C
Cary Xu 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
}

TEST(testCase, tSma_DB_Put_Get_Del_Test) {
  const char *smaIndexName1 = "sma_index_test_1";
  const char *smaIndexName2 = "sma_index_test_2";
  const char *smaTestDir = "./smaTest";
  const uint64_t tbUid = 1234567890;
  // encode
  STSma tSma = {0};
  tSma.version = 0;
  tSma.intervalUnit = TD_TIME_UNIT_DAY;
  tSma.interval = 1;
  tSma.slidingUnit = TD_TIME_UNIT_HOUR;
  tSma.sliding = 0;
  tstrncpy(tSma.indexName, smaIndexName1, TSDB_INDEX_NAME_LEN);
  tSma.tableUid = tbUid;
  tSma.numOfColIds = 2;
  tSma.numOfFuncIds = 5;  // sum/min/max/avg/last
  tSma.colIds = (col_id_t *)calloc(tSma.numOfColIds, sizeof(col_id_t));
  tSma.funcIds = (uint16_t *)calloc(tSma.numOfFuncIds, sizeof(uint16_t));

  for (int32_t i = 0; i < tSma.numOfColIds; ++i) {
    *(tSma.colIds + i) = (i + PRIMARYKEY_TIMESTAMP_COL_ID);
  }
  for (int32_t i = 0; i < tSma.numOfFuncIds; ++i) {
    *(tSma.funcIds + i) = (i + 2);
  }

  SMeta *         pMeta = NULL;
  SSmaCfg *       pSmaCfg = &tSma;
  const SMetaCfg *pMetaCfg = &defaultMetaOptions;

  taosRemoveDir(smaTestDir);

  pMeta = metaOpen(smaTestDir, pMetaCfg, NULL);
  assert(pMeta != NULL);
  // save index 1
  metaSaveSmaToDB(pMeta, pSmaCfg);

  tstrncpy(pSmaCfg->indexName, smaIndexName2, TSDB_INDEX_NAME_LEN);
  pSmaCfg->version = 1;
  pSmaCfg->intervalUnit = TD_TIME_UNIT_HOUR;
  pSmaCfg->interval = 1;
  pSmaCfg->slidingUnit = TD_TIME_UNIT_MINUTE;
  pSmaCfg->sliding = 5;

  // save index 2
  metaSaveSmaToDB(pMeta, pSmaCfg);

  // get value by indexName
  SSmaCfg *qSmaCfg = NULL;
  qSmaCfg = metaGetSmaInfoByName(pMeta, smaIndexName1);
  assert(qSmaCfg != NULL);
  printf("name1 = %s\n", qSmaCfg->indexName);
  EXPECT_STRCASEEQ(qSmaCfg->indexName, smaIndexName1);
  EXPECT_EQ(qSmaCfg->tableUid, tSma.tableUid);
C
Cary Xu 已提交
155 156
  tdDestroyTSma(qSmaCfg);
  free(qSmaCfg);
C
Cary Xu 已提交
157 158 159 160 161 162

  qSmaCfg = metaGetSmaInfoByName(pMeta, smaIndexName2);
  assert(qSmaCfg != NULL);
  printf("name2 = %s\n", qSmaCfg->indexName);
  EXPECT_STRCASEEQ(qSmaCfg->indexName, smaIndexName2);
  EXPECT_EQ(qSmaCfg->interval, tSma.interval);
C
Cary Xu 已提交
163 164
  tdDestroyTSma(qSmaCfg);
  free(qSmaCfg);
C
Cary Xu 已提交
165

C
Cary Xu 已提交
166
  // get index name by table uid
C
Cary Xu 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180
  SMSmaCursor *pSmaCur = metaOpenSmaCursor(pMeta, tbUid);
  assert(pSmaCur != NULL);
  uint32_t indexCnt = 0;
  while (1) {
    const char* indexName = metaSmaCursorNext(pSmaCur);
    if (indexName == NULL) {
      break;
    }
    printf("indexName = %s\n", indexName);
    ++indexCnt;
  }
  EXPECT_EQ(indexCnt, 2);
  metaCloseSmaCurosr(pSmaCur);

C
Cary Xu 已提交
181 182 183 184 185 186 187 188 189
  // get wrapper by table uid
  STSmaWrapper *pSW = metaGetSmaInfoByUid(pMeta, tbUid);
  assert(pSW != NULL);
  EXPECT_EQ(pSW->number, 2);
  EXPECT_STRCASEEQ(pSW->tSma->indexName, smaIndexName1);
  EXPECT_EQ(pSW->tSma->tableUid, tSma.tableUid);
  EXPECT_STRCASEEQ((pSW->tSma + 1)->indexName, smaIndexName2);
  EXPECT_EQ((pSW->tSma + 1)->tableUid, tSma.tableUid);

C
Cary Xu 已提交
190 191 192 193
  // resource release
  metaRemoveSmaFromDb(pMeta, smaIndexName1);
  metaRemoveSmaFromDb(pMeta, smaIndexName2);

C
Cary Xu 已提交
194
  tdDestroyTSma(&tSma);
C
Cary Xu 已提交
195
  metaClose(pMeta);
C
Cary Xu 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
}

#if 0
TEST(testCase, tSmaInsertTest) {
  STSma     tSma = {0};
  STSmaData* pSmaData = NULL;
  STsdb     tsdb = {0};

  // init
  tSma.intervalUnit = TD_TIME_UNIT_DAY;
  tSma.interval = 1;
  tSma.numOfFuncIds = 5;  // sum/min/max/avg/last

  int32_t blockSize = tSma.numOfFuncIds * sizeof(int64_t);
  int32_t numOfColIds = 3;
C
Cary Xu 已提交
211
  int32_t numOfBlocks = 10;
C
Cary Xu 已提交
212

C
Cary Xu 已提交
213
  int32_t dataLen = numOfColIds * numOfBlocks * blockSize;
C
Cary Xu 已提交
214 215 216 217 218

  pSmaData = (STSmaData*)malloc(sizeof(STSmaData) + dataLen);
  ASSERT_EQ(pSmaData != NULL, true);
  pSmaData->tableUid = 3232329230;
  pSmaData->numOfColIds = numOfColIds;
C
Cary Xu 已提交
219
  pSmaData->numOfBlocks = numOfBlocks;
C
Cary Xu 已提交
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
  pSmaData->dataLen = dataLen;
  pSmaData->tsWindow.skey = 1640000000;
  pSmaData->tsWindow.ekey = 1645788649;
  pSmaData->colIds = (col_id_t*)malloc(sizeof(col_id_t) * numOfColIds);
  ASSERT_EQ(pSmaData->colIds != NULL, true);

  for (int32_t i = 0; i < numOfColIds; ++i) {
    *(pSmaData->colIds + i) = (i + PRIMARYKEY_TIMESTAMP_COL_ID);
  }

  // execute
  EXPECT_EQ(tsdbInsertTSmaData(&tsdb, &tSma, pSmaData), TSDB_CODE_SUCCESS);

  // release
  tdDestroySmaData(pSmaData);
}
#endif

#pragma GCC diagnostic pop