• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

taosdata / TDengine / #3558

17 Dec 2024 06:05AM UTC coverage: 59.778% (+1.6%) from 58.204%
#3558

push

travis-ci

web-flow
Merge pull request #29179 from taosdata/merge/mainto3.0

merge: form main to 3.0 branch

132787 of 287595 branches covered (46.17%)

Branch coverage included in aggregate %.

104 of 191 new or added lines in 5 files covered. (54.45%)

6085 existing lines in 168 files now uncovered.

209348 of 284746 relevant lines covered (73.52%)

8164844.48 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

67.43
/source/dnode/vnode/src/meta/metaEntry.c
1
/*
2
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
3
 *
4
 * This program is free software: you can use, redistribute, and/or modify
5
 * it under the terms of the GNU Affero General Public License, version 3
6
 * or later ("AGPL"), as published by the Free Software Foundation.
7
 *
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10
 * FITNESS FOR A PARTICULAR PURPOSE.
11
 *
12
 * You should have received a copy of the GNU Affero General Public License
13
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14
 */
15

16
#include "meta.h"
17

18
int meteEncodeColCmprEntry(SEncoder *pCoder, const SMetaEntry *pME) {
506,528✔
19
  const SColCmprWrapper *pw = &pME->colCmpr;
506,528✔
20
  TAOS_CHECK_RETURN(tEncodeI32v(pCoder, pw->nCols));
1,013,056!
21
  TAOS_CHECK_RETURN(tEncodeI32v(pCoder, pw->version));
1,013,056!
22
  uDebug("encode cols:%d", pw->nCols);
506,528✔
23

24
  for (int32_t i = 0; i < pw->nCols; i++) {
5,744,868✔
25
    SColCmpr *p = &pw->pColCmpr[i];
5,237,768✔
26
    TAOS_CHECK_RETURN(tEncodeI16v(pCoder, p->id));
10,475,536!
27
    TAOS_CHECK_RETURN(tEncodeU32(pCoder, p->alg));
10,475,536!
28
  }
29
  return 0;
507,100✔
30
}
31
int meteDecodeColCmprEntry(SDecoder *pDecoder, SMetaEntry *pME) {
4,281,755✔
32
  SColCmprWrapper *pWrapper = &pME->colCmpr;
4,281,755✔
33
  TAOS_CHECK_RETURN(tDecodeI32v(pDecoder, &pWrapper->nCols));
8,562,168!
34
  if (pWrapper->nCols == 0) {
4,280,413!
35
    return 0;
×
36
  }
37

38
  TAOS_CHECK_RETURN(tDecodeI32v(pDecoder, &pWrapper->version));
8,563,379!
39
  uDebug("dencode cols:%d", pWrapper->nCols);
4,282,966✔
40
  pWrapper->pColCmpr = (SColCmpr *)tDecoderMalloc(pDecoder, pWrapper->nCols * sizeof(SColCmpr));
4,283,054!
41
  if (pWrapper->pColCmpr == NULL) {
4,288,201!
42
    return terrno;
×
43
  }
44

45
  for (int i = 0; i < pWrapper->nCols; i++) {
73,760,407✔
46
    SColCmpr *p = &pWrapper->pColCmpr[i];
69,477,192✔
47
    TAOS_CHECK_RETURN(tDecodeI16v(pDecoder, &p->id));
139,011,081!
48
    TAOS_CHECK_RETURN(tDecodeU32(pDecoder, &p->alg));
139,006,095!
49
  }
50
  return 0;
4,283,215✔
51
}
52
static FORCE_INLINE int32_t metatInitDefaultSColCmprWrapper(SDecoder *pDecoder, SColCmprWrapper *pCmpr,
53
                                                            SSchemaWrapper *pSchema) {
UNCOV
54
  pCmpr->nCols = pSchema->nCols;
×
55
  if ((pCmpr->pColCmpr = (SColCmpr *)tDecoderMalloc(pDecoder, pCmpr->nCols * sizeof(SColCmpr))) == NULL) {
22!
56
    return terrno;
×
57
  }
58

59
  for (int32_t i = 0; i < pCmpr->nCols; i++) {
238!
60
    SColCmpr *pColCmpr = &pCmpr->pColCmpr[i];
216✔
61
    SSchema  *pColSchema = &pSchema->pSchema[i];
216✔
62
    pColCmpr->id = pColSchema->colId;
216✔
63
    pColCmpr->alg = createDefaultColCmprByType(pColSchema->type);
216✔
64
  }
65
  return 0;
22✔
66
}
67

68
static int32_t metaCloneColCmpr(const SColCmprWrapper *pSrc, SColCmprWrapper *pDst) {
236,025✔
69
  if (pSrc->nCols > 0) {
236,025✔
70
    pDst->nCols = pSrc->nCols;
230,950✔
71
    pDst->version = pSrc->version;
230,950✔
72
    pDst->pColCmpr = (SColCmpr *)taosMemoryCalloc(pSrc->nCols, sizeof(SColCmpr));
230,950!
73
    if (NULL == pDst->pColCmpr) {
230,992!
UNCOV
74
      return terrno;
×
75
    }
76
    memcpy(pDst->pColCmpr, pSrc->pColCmpr, pSrc->nCols * sizeof(SColCmpr));
230,992✔
77
  }
78
  return 0;
236,067✔
79
}
80

81
static void metaCloneColCmprFree(SColCmprWrapper *pCmpr) {
236,063✔
82
  if (pCmpr) {
236,063!
83
    taosMemoryFreeClear(pCmpr->pColCmpr);
236,074!
84
  }
85
}
236,103✔
86

87
int metaEncodeEntry(SEncoder *pCoder, const SMetaEntry *pME) {
514,439✔
88
  TAOS_CHECK_RETURN(tStartEncode(pCoder));
514,439✔
89
  TAOS_CHECK_RETURN(tEncodeI64(pCoder, pME->version));
1,030,270!
90
  TAOS_CHECK_RETURN(tEncodeI8(pCoder, pME->type));
1,030,270!
91
  TAOS_CHECK_RETURN(tEncodeI64(pCoder, pME->uid));
1,030,270!
92

93
  if (pME->type > 0) {
515,135✔
94
    if (pME->name == NULL) {
507,105!
UNCOV
95
      return TSDB_CODE_INVALID_PARA;
×
96
    }
97

98
    TAOS_CHECK_RETURN(tEncodeCStr(pCoder, pME->name));
1,014,210!
99

100
    if (pME->type == TSDB_SUPER_TABLE) {
507,105✔
101
      TAOS_CHECK_RETURN(tEncodeI8(pCoder, pME->flags));
120,852!
102
      TAOS_CHECK_RETURN(tEncodeSSchemaWrapper(pCoder, &pME->stbEntry.schemaRow));
120,852!
103
      TAOS_CHECK_RETURN(tEncodeSSchemaWrapper(pCoder, &pME->stbEntry.schemaTag));
120,852!
104
      if (TABLE_IS_ROLLUP(pME->flags)) {
60,426✔
105
        TAOS_CHECK_RETURN(tEncodeSRSmaParam(pCoder, &pME->stbEntry.rsmaParam));
14!
106
      }
107
    } else if (pME->type == TSDB_CHILD_TABLE) {
446,679✔
108
      TAOS_CHECK_RETURN(tEncodeI64(pCoder, pME->ctbEntry.btime));
839,534!
109
      TAOS_CHECK_RETURN(tEncodeI32(pCoder, pME->ctbEntry.ttlDays));
839,534!
110
      TAOS_CHECK_RETURN(tEncodeI32v(pCoder, pME->ctbEntry.commentLen));
839,534!
111
      if (pME->ctbEntry.commentLen > 0) {
419,767✔
112
        TAOS_CHECK_RETURN(tEncodeCStr(pCoder, pME->ctbEntry.comment));
84!
113
      }
114
      TAOS_CHECK_RETURN(tEncodeI64(pCoder, pME->ctbEntry.suid));
839,534!
115
      TAOS_CHECK_RETURN(tEncodeTag(pCoder, (const STag *)pME->ctbEntry.pTags));
419,767!
116
    } else if (pME->type == TSDB_NORMAL_TABLE) {
26,912✔
117
      TAOS_CHECK_RETURN(tEncodeI64(pCoder, pME->ntbEntry.btime));
53,612!
118
      TAOS_CHECK_RETURN(tEncodeI32(pCoder, pME->ntbEntry.ttlDays));
53,612!
119
      TAOS_CHECK_RETURN(tEncodeI32v(pCoder, pME->ntbEntry.commentLen));
53,612!
120
      if (pME->ntbEntry.commentLen > 0) {
26,806✔
121
        TAOS_CHECK_RETURN(tEncodeCStr(pCoder, pME->ntbEntry.comment));
116!
122
      }
123
      TAOS_CHECK_RETURN(tEncodeI32v(pCoder, pME->ntbEntry.ncid));
53,612!
124
      TAOS_CHECK_RETURN(tEncodeSSchemaWrapper(pCoder, &pME->ntbEntry.schemaRow));
53,612!
125
    } else if (pME->type == TSDB_TSMA_TABLE) {
106✔
126
      TAOS_CHECK_RETURN(tEncodeTSma(pCoder, pME->smaEntry.tsma));
56!
127
    } else {
128
      metaError("meta/entry: invalide table type: %" PRId8 " encode failed.", pME->type);
50!
UNCOV
129
      return TSDB_CODE_INVALID_PARA;
×
130
    }
131
    TAOS_CHECK_RETURN(meteEncodeColCmprEntry(pCoder, pME));
507,060!
132
  }
133

134
  tEndEncode(pCoder);
514,964✔
135
  return 0;
514,955✔
136
}
137

138
int metaDecodeEntry(SDecoder *pCoder, SMetaEntry *pME) {
7,165,032✔
139
  TAOS_CHECK_RETURN(tStartDecode(pCoder));
7,165,032!
140
  TAOS_CHECK_RETURN(tDecodeI64(pCoder, &pME->version));
14,336,470!
141
  TAOS_CHECK_RETURN(tDecodeI8(pCoder, &pME->type));
14,326,551!
142
  TAOS_CHECK_RETURN(tDecodeI64(pCoder, &pME->uid));
14,316,006!
143

144
  if (pME->type > 0) {
7,154,600✔
145
    TAOS_CHECK_RETURN(tDecodeCStr(pCoder, &pME->name));
14,305,412!
146

147
    if (pME->type == TSDB_SUPER_TABLE) {
7,152,941✔
148
      TAOS_CHECK_RETURN(tDecodeI8(pCoder, &pME->flags));
7,533,665!
149
      TAOS_CHECK_RETURN(tDecodeSSchemaWrapperEx(pCoder, &pME->stbEntry.schemaRow));
7,517,469!
150
      TAOS_CHECK_RETURN(tDecodeSSchemaWrapperEx(pCoder, &pME->stbEntry.schemaTag));
7,507,930!
151
      if (TABLE_IS_ROLLUP(pME->flags)) {
3,756,130✔
152
        TAOS_CHECK_RETURN(tDecodeSRSmaParam(pCoder, &pME->stbEntry.rsmaParam));
267!
153
      }
154
    } else if (pME->type == TSDB_CHILD_TABLE) {
3,384,945✔
155
      TAOS_CHECK_RETURN(tDecodeI64(pCoder, &pME->ctbEntry.btime));
5,771,606!
156
      TAOS_CHECK_RETURN(tDecodeI32(pCoder, &pME->ctbEntry.ttlDays));
5,771,079!
157
      TAOS_CHECK_RETURN(tDecodeI32v(pCoder, &pME->ctbEntry.commentLen));
5,771,679!
158
      if (pME->ctbEntry.commentLen > 0) {
2,886,006✔
159
        TAOS_CHECK_RETURN(tDecodeCStr(pCoder, &pME->ctbEntry.comment));
174!
160
      }
161
      TAOS_CHECK_RETURN(tDecodeI64(pCoder, &pME->ctbEntry.suid));
5,770,836!
162
      TAOS_CHECK_RETURN(tDecodeTag(pCoder, (STag **)&pME->ctbEntry.pTags));
2,884,830!
163
    } else if (pME->type == TSDB_NORMAL_TABLE) {
498,745!
164
      TAOS_CHECK_RETURN(tDecodeI64(pCoder, &pME->ntbEntry.btime));
1,026,004!
165
      TAOS_CHECK_RETURN(tDecodeI32(pCoder, &pME->ntbEntry.ttlDays));
1,025,934!
166
      TAOS_CHECK_RETURN(tDecodeI32v(pCoder, &pME->ntbEntry.commentLen));
1,025,980!
167
      if (pME->ntbEntry.commentLen > 0) {
512,990✔
168
        TAOS_CHECK_RETURN(tDecodeCStr(pCoder, &pME->ntbEntry.comment));
252!
169
      }
170
      TAOS_CHECK_RETURN(tDecodeI32v(pCoder, &pME->ntbEntry.ncid));
1,025,737!
171
      TAOS_CHECK_RETURN(tDecodeSSchemaWrapperEx(pCoder, &pME->ntbEntry.schemaRow));
1,023,755!
UNCOV
172
    } else if (pME->type == TSDB_TSMA_TABLE) {
×
173
      pME->smaEntry.tsma = tDecoderMalloc(pCoder, sizeof(STSma));
1✔
174
      if (!pME->smaEntry.tsma) {
1!
175
        return terrno;
×
176
      }
177
      TAOS_CHECK_RETURN(tDecodeTSma(pCoder, pME->smaEntry.tsma, true));
1!
178
    } else {
179
      metaError("meta/entry: invalide table type: %" PRId8 " decode failed.", pME->type);
×
UNCOV
180
      return TSDB_CODE_INVALID_PARA;
×
181
    }
182
    if (pME->type == TSDB_SUPER_TABLE) {
7,167,038✔
183
      if (TABLE_IS_COL_COMPRESSED(pME->flags)) {
3,769,351!
184
        TAOS_CHECK_RETURN(meteDecodeColCmprEntry(pCoder, pME));
3,770,067!
185

186
        if (pME->colCmpr.nCols == 0) {
3,770,163!
UNCOV
187
          TAOS_CHECK_RETURN(metatInitDefaultSColCmprWrapper(pCoder, &pME->colCmpr, &pME->stbEntry.schemaRow));
×
188
        }
189
      } else {
UNCOV
190
        TAOS_CHECK_RETURN(metatInitDefaultSColCmprWrapper(pCoder, &pME->colCmpr, &pME->stbEntry.schemaRow));
×
191
        TABLE_SET_COL_COMPRESSED(pME->flags);
22✔
192
      }
193
    } else if (pME->type == TSDB_NORMAL_TABLE) {
3,397,687✔
194
      if (!tDecodeIsEnd(pCoder)) {
512,942!
195
        uDebug("set type: %d, tableName:%s", pME->type, pME->name);
512,988✔
196
        TAOS_CHECK_RETURN(meteDecodeColCmprEntry(pCoder, pME));
512,988✔
197
        if (pME->colCmpr.nCols == 0) {
512,908!
UNCOV
198
          TAOS_CHECK_RETURN(metatInitDefaultSColCmprWrapper(pCoder, &pME->colCmpr, &pME->ntbEntry.schemaRow));
×
199
        }
200
      } else {
UNCOV
201
        uDebug("set default type: %d, tableName:%s", pME->type, pME->name);
×
UNCOV
202
        TAOS_CHECK_RETURN(metatInitDefaultSColCmprWrapper(pCoder, &pME->colCmpr, &pME->ntbEntry.schemaRow));
×
203
      }
204
      TABLE_SET_COL_COMPRESSED(pME->flags);
512,908✔
205
    }
206
  }
207

208
  tEndDecode(pCoder);
7,169,967✔
209
  return 0;
7,160,585✔
210
}
211

212
static int32_t metaCloneSchema(const SSchemaWrapper *pSrc, SSchemaWrapper *pDst) {
459,711✔
213
  if (pSrc == NULL || pDst == NULL) {
459,711!
UNCOV
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  pDst->nCols = pSrc->nCols;
459,763✔
218
  pDst->version = pSrc->version;
459,763✔
219
  pDst->pSchema = (SSchema *)taosMemoryMalloc(pSrc->nCols * sizeof(SSchema));
459,763!
220
  if (pDst->pSchema == NULL) {
459,819!
UNCOV
221
    return terrno;
×
222
  }
223
  memcpy(pDst->pSchema, pSrc->pSchema, pSrc->nCols * sizeof(SSchema));
459,819✔
224
  return TSDB_CODE_SUCCESS;
459,819✔
225
}
226

227
static void metaCloneSchemaFree(SSchemaWrapper *pSchema) {
459,783✔
228
  if (pSchema) {
459,783!
229
    taosMemoryFreeClear(pSchema->pSchema);
459,795!
230
  }
231
}
459,830✔
232

233
void metaCloneEntryFree(SMetaEntry **ppEntry) {
236,046✔
234
  if (ppEntry == NULL || *ppEntry == NULL) {
236,046!
UNCOV
235
    return;
×
236
  }
237

238
  taosMemoryFreeClear((*ppEntry)->name);
236,072!
239

240
  if ((*ppEntry)->type < 0) {
236,079!
UNCOV
241
    taosMemoryFreeClear(*ppEntry);
×
UNCOV
242
    return;
×
243
  }
244

245
  if (TSDB_SUPER_TABLE == (*ppEntry)->type) {
236,079✔
246
    metaCloneSchemaFree(&(*ppEntry)->stbEntry.schemaRow);
228,882✔
247
    metaCloneSchemaFree(&(*ppEntry)->stbEntry.schemaTag);
228,897✔
248
  } else if (TSDB_CHILD_TABLE == (*ppEntry)->type) {
7,197✔
249
    taosMemoryFreeClear((*ppEntry)->ctbEntry.comment);
5,096!
250
    taosMemoryFreeClear((*ppEntry)->ctbEntry.pTags);
5,096!
251
  } else if (TSDB_NORMAL_TABLE == (*ppEntry)->type) {
2,101✔
252
    metaCloneSchemaFree(&(*ppEntry)->ntbEntry.schemaRow);
2,094✔
253
    taosMemoryFreeClear((*ppEntry)->ntbEntry.comment);
2,094!
254
  } else {
255
    return;
7✔
256
  }
257
  metaCloneColCmprFree(&(*ppEntry)->colCmpr);
236,094✔
258

259
  taosMemoryFreeClear(*ppEntry);
236,096!
260
  return;
236,114✔
261
}
262

263
int32_t metaCloneEntry(const SMetaEntry *pEntry, SMetaEntry **ppEntry) {
235,974✔
264
  int32_t code = TSDB_CODE_SUCCESS;
235,974✔
265

266
  if (NULL == pEntry || NULL == ppEntry) {
235,974!
UNCOV
267
    return TSDB_CODE_INVALID_PARA;
×
268
  }
269

270
  *ppEntry = (SMetaEntry *)taosMemoryCalloc(1, sizeof(SMetaEntry));
236,003!
271
  if (NULL == *ppEntry) {
236,085!
UNCOV
272
    return terrno;
×
273
  }
274

275
  (*ppEntry)->version = pEntry->version;
236,085✔
276
  (*ppEntry)->type = pEntry->type;
236,085✔
277
  (*ppEntry)->uid = pEntry->uid;
236,085✔
278

279
  if (pEntry->type < 0) {
236,085!
UNCOV
280
    return TSDB_CODE_SUCCESS;
×
281
  }
282

283
  if (pEntry->name) {
236,085!
284
    (*ppEntry)->name = tstrdup(pEntry->name);
236,090✔
285
    if (NULL == (*ppEntry)->name) {
236,031!
UNCOV
286
      code = terrno;
×
UNCOV
287
      metaCloneEntryFree(ppEntry);
×
UNCOV
288
      return code;
×
289
    }
290
  }
291

292
  if (pEntry->type == TSDB_SUPER_TABLE) {
236,029✔
293
    (*ppEntry)->flags = pEntry->flags;
228,841✔
294

295
    code = metaCloneSchema(&pEntry->stbEntry.schemaRow, &(*ppEntry)->stbEntry.schemaRow);
228,841✔
296
    if (code) {
228,836!
UNCOV
297
      metaCloneEntryFree(ppEntry);
×
UNCOV
298
      return code;
×
299
    }
300

301
    code = metaCloneSchema(&pEntry->stbEntry.schemaTag, &(*ppEntry)->stbEntry.schemaTag);
228,836✔
302
    if (code) {
228,854!
UNCOV
303
      metaCloneEntryFree(ppEntry);
×
UNCOV
304
      return code;
×
305
    }
306
  } else if (pEntry->type == TSDB_CHILD_TABLE) {
7,188✔
307
    (*ppEntry)->ctbEntry.btime = pEntry->ctbEntry.btime;
5,094✔
308
    (*ppEntry)->ctbEntry.ttlDays = pEntry->ctbEntry.ttlDays;
5,094✔
309
    (*ppEntry)->ctbEntry.suid = pEntry->ctbEntry.suid;
5,094✔
310

311
    // comment
312
    (*ppEntry)->ctbEntry.commentLen = pEntry->ctbEntry.commentLen;
5,094✔
313
    if (pEntry->ctbEntry.commentLen > 0) {
5,094✔
314
      (*ppEntry)->ctbEntry.comment = taosMemoryMalloc(pEntry->ctbEntry.commentLen + 1);
24!
315
      if (NULL == (*ppEntry)->ctbEntry.comment) {
24!
UNCOV
316
        code = terrno;
×
UNCOV
317
        metaCloneEntryFree(ppEntry);
×
UNCOV
318
        return code;
×
319
      }
320
      memcpy((*ppEntry)->ctbEntry.comment, pEntry->ctbEntry.comment, pEntry->ctbEntry.commentLen + 1);
24✔
321
    }
322

323
    // tags
324
    STag *pTags = (STag *)pEntry->ctbEntry.pTags;
5,094✔
325
    (*ppEntry)->ctbEntry.pTags = taosMemoryCalloc(1, pTags->len);
5,094!
326
    if (NULL == (*ppEntry)->ctbEntry.pTags) {
5,097!
UNCOV
327
      code = terrno;
×
UNCOV
328
      metaCloneEntryFree(ppEntry);
×
UNCOV
329
      return code;
×
330
    }
331
    memcpy((*ppEntry)->ctbEntry.pTags, pEntry->ctbEntry.pTags, pTags->len);
5,097✔
332
  } else if (pEntry->type == TSDB_NORMAL_TABLE) {
2,094!
333
    (*ppEntry)->ntbEntry.btime = pEntry->ntbEntry.btime;
2,094✔
334
    (*ppEntry)->ntbEntry.ttlDays = pEntry->ntbEntry.ttlDays;
2,094✔
335
    (*ppEntry)->ntbEntry.ncid = pEntry->ntbEntry.ncid;
2,094✔
336

337
    // schema
338
    code = metaCloneSchema(&pEntry->ntbEntry.schemaRow, &(*ppEntry)->ntbEntry.schemaRow);
2,094✔
339
    if (code) {
2,094!
UNCOV
340
      metaCloneEntryFree(ppEntry);
×
UNCOV
341
      return code;
×
342
    }
343

344
    // comment
345
    (*ppEntry)->ntbEntry.commentLen = pEntry->ntbEntry.commentLen;
2,094✔
346
    if (pEntry->ntbEntry.commentLen > 0) {
2,094✔
347
      (*ppEntry)->ntbEntry.comment = taosMemoryMalloc(pEntry->ntbEntry.commentLen + 1);
36!
348
      if (NULL == (*ppEntry)->ntbEntry.comment) {
36!
UNCOV
349
        code = terrno;
×
UNCOV
350
        metaCloneEntryFree(ppEntry);
×
UNCOV
351
        return code;
×
352
      }
353
      memcpy((*ppEntry)->ntbEntry.comment, pEntry->ntbEntry.comment, pEntry->ntbEntry.commentLen + 1);
36✔
354
    }
355
  } else {
UNCOV
356
    return TSDB_CODE_INVALID_PARA;
×
357
  }
358

359
  code = metaCloneColCmpr(&pEntry->colCmpr, &(*ppEntry)->colCmpr);
236,045✔
360
  if (code) {
236,055!
UNCOV
361
    metaCloneEntryFree(ppEntry);
×
UNCOV
362
    return code;
×
363
  }
364

365
  return code;
236,055✔
366
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc