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

taosdata / TDengine / #4908

30 Dec 2025 10:52AM UTC coverage: 65.386% (-0.2%) from 65.541%
#4908

push

travis-ci

web-flow
enh: drop multi-stream (#33962)

60 of 106 new or added lines in 4 files covered. (56.6%)

1330 existing lines in 113 files now uncovered.

193461 of 295877 relevant lines covered (65.39%)

115765274.47 hits per line

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

85.71
/source/dnode/snode/src/snode.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 "executor.h"
17
#include "sndInt.h"
18
#include "tdatablock.h"
19
#include "tuuid.h"
20
#include "stream.h"
21
#include "streamRunner.h"
22

23
// clang-format off
24
#define sndError(...) do {  if (sndDebugFlag & DEBUG_ERROR) { taosPrintLog("SND ERROR ", DEBUG_ERROR, sndDebugFlag, __VA_ARGS__);}} while (0)
25
#define sndInfo(...)  do {  if (sndDebugFlag & DEBUG_INFO)  { taosPrintLog("SND INFO  ", DEBUG_INFO,  sndDebugFlag, __VA_ARGS__);}} while (0)
26
#define sndDebug(...) do {  if (sndDebugFlag & DEBUG_DEBUG) { taosPrintLog("SND DEBUG ", DEBUG_DEBUG, sndDebugFlag, __VA_ARGS__);}} while (0)
27

28
SSnode *sndOpen(const char *path, const SSnodeOpt *pOption) {
58,613✔
29
  int32_t code = 0;
58,613✔
30
  SSnode *pSnode = taosMemoryCalloc(1, sizeof(SSnode));
58,613✔
31
  if (pSnode == NULL) {
58,613✔
32
    return NULL;
×
33
  }
34

35
  pSnode->msgCb = pOption->msgCb;
58,613✔
36

37
  return pSnode;
58,613✔
38
}
39

40
int32_t sndInit(SSnode *pSnode) {
58,613✔
41
  streamSetSnodeEnabled(&pSnode->msgCb);
58,613✔
42
  return 0;
58,613✔
43
}
44

45
void sndClose(SSnode *pSnode) {
58,613✔
46
  streamSetSnodeDisabled(false);
58,613✔
47
  taosMemoryFree(pSnode);
58,613✔
48
}
58,613✔
49

50
static int32_t handleTriggerCalcReq(SSnode* pSnode, void* pWorkerCb, SRpcMsg* pRpcMsg) {
1,899,227✔
51
  SSTriggerCalcRequest req = {0};
1,899,227✔
52
  SStreamRunnerTask* pTask = NULL;
1,899,227✔
53
  void* taskAddr = NULL;
1,899,023✔
54
  int32_t code = 0, lino = 0;
1,899,023✔
55
  TAOS_CHECK_EXIT(tDeserializeSTriggerCalcRequest(POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead)), pRpcMsg->contLen - sizeof(SMsgHead), &req));
1,899,023✔
56
  TAOS_CHECK_EXIT(streamAcquireTask(req.streamId, req.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
1,899,227✔
57

58
  req.brandNew = true;
1,899,227✔
59
  req.execId = -1;
1,899,227✔
60
  pTask->msgCb = pSnode->msgCb;
1,899,227✔
61
  //pTask->pMsgCb = &pSnode->msgCb;
62
  pTask->pWorkerCb = pWorkerCb;
1,899,227✔
63
  req.curWinIdx = 0;
1,899,027✔
64
  TAOS_CHECK_EXIT(stRunnerTaskExecute(pTask, &req));
1,899,027✔
65

66
_exit:
1,899,227✔
67

68
  tDestroySTriggerCalcRequest(&req);
1,899,227✔
69
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_TRIGGER_CALC_RSP, .contLen = 0, .pCont = NULL, .info = pRpcMsg->info};
1,899,227✔
70
  if (rpcSendResponse(&rsp) != 0) {
1,899,023✔
71
    sndError("failed to send response, msg:%p", &rsp);
×
72
  }
73
  
74
  streamReleaseTask(taskAddr);
1,899,023✔
75

76
  if(code == TSDB_CODE_MND_STREAM_TABLE_NOT_CREATE) {
1,899,227✔
77
    code = 0; // not real error, just notify trigger the table is not created
×
78
  }
79

80
  if (code) {
1,899,227✔
81
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
1,258,449✔
82
  }
83
  
84
  return code;
1,899,431✔
85
}
86

87
static int32_t handleSyncDeleteCheckPointReq(SSnode* pSnode, SRpcMsg* pRpcMsg) {
1,645✔
88
  int64_t streamId = *(int64_t*)POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead));
1,645✔
89
  streamDeleteCheckPoint(streamId);
1,645✔
90
  return 0;
1,645✔
91
}
92

93
static int32_t handleSyncWriteCheckPointReq(SSnode* pSnode, SRpcMsg* pRpcMsg) {
3,798✔
94
  int32_t ver = *(int32_t*)POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead) + INT_BYTES);
3,798✔
95
  int64_t streamId = *(int64_t*)POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead) + 2 * INT_BYTES);
3,798✔
96
  SRpcMsg rsp = {.code = 0, .msgType = TDMT_STREAM_SYNC_CHECKPOINT_RSP, .info = pRpcMsg->info};
3,798✔
97

98
  stDebug("[checkpoint] handleSyncWriteCheckPointReq streamId:%" PRIx64 ",ver:%d", streamId, ver);
3,798✔
99
  void*   data = NULL;
3,798✔
100
  int64_t dataLen = 0;
3,798✔
101
  int32_t code = streamReadCheckPoint(streamId, &data, &dataLen);
3,798✔
102
  if (code != 0 || (terrno == TAOS_SYSTEM_ERROR(ENOENT) && ver == -1)){
3,798✔
103
    goto end;
2,518✔
104
  }
105
  if (terrno == TAOS_SYSTEM_ERROR(ENOENT) || ver > *(int32_t*)POINTER_SHIFT(data, INT_BYTES)) {
1,280✔
106
    int32_t ret = streamWriteCheckPoint(streamId, POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead)), pRpcMsg->contLen - sizeof(SMsgHead));
1,120✔
107
    stDebug("[checkpoint] streamId:%" PRIx64 ", checkpoint local updated, ver:%d, dataLen:%" PRId64 ", ret:%d", streamId, ver, dataLen, ret);
1,120✔
108
  }
109
  if (terrno == TAOS_SYSTEM_ERROR(ENOENT) || ver >= *(int32_t*)POINTER_SHIFT(data, INT_BYTES)) {
1,280✔
110
    stDebug("[checkpoint] streamId:%" PRIx64 ", checkpoint no need send back, ver:%d, dataLen:%" PRId64, streamId, ver, dataLen);
1,280✔
111
    dataLen = 0;
1,280✔
112
    taosMemoryFreeClear(data);
1,280✔
113
  }
114
  
115
end:
3,798✔
116
  if (data == NULL) {
3,798✔
117
    rsp.contLen = 2 * INT_BYTES + LONG_BYTES;
3,798✔
118
    rsp.pCont = rpcMallocCont(rsp.contLen);
3,798✔
119
    if (rsp.pCont == NULL) {
3,798✔
120
      rsp.code = TSDB_CODE_OUT_OF_MEMORY;
×
121
    } else {
122
      *(int32_t*)(POINTER_SHIFT(rsp.pCont, INT_BYTES)) = -1;  // no checkpoint
3,798✔
123
      *(int64_t*)(POINTER_SHIFT(rsp.pCont, 2 * INT_BYTES)) = streamId;
3,798✔
124
    }
125
  } else {
UNCOV
126
    rsp.pCont = rpcMallocCont(dataLen);
×
UNCOV
127
    if (rsp.pCont == NULL) {
×
128
      rsp.code = TSDB_CODE_OUT_OF_MEMORY;
×
129
    } else {
UNCOV
130
      memcpy(rsp.pCont, data, dataLen);
×
UNCOV
131
      rsp.contLen = dataLen;
×
UNCOV
132
      taosMemoryFreeClear(data); 
×
133
    } 
134
  }
135
  
136
  if (rpcSendResponse(&rsp) != 0) {
3,798✔
137
    sndError("failed to send write checkpoint response, msg:%p", &rsp);
×
138
  }
139

140
  return 0;
3,798✔
141
}
142

143
static int32_t handleSyncWriteCheckPointRsp(SSnode* pSnode, SRpcMsg* pRpcMsg) {
3,814✔
144
  if (pRpcMsg->code != 0) {
3,814✔
145
    stError("[checkpoint] handleSyncWriteCheckPointRsp, code:%d, msgType:%d", pRpcMsg->code, pRpcMsg->msgType);
×
146
    return pRpcMsg->code;
×
147
  } 
148
  void* data = pRpcMsg->pCont;
3,814✔
149
  int32_t dataLen = pRpcMsg->contLen;
3,814✔
150
  
151
  int32_t ver = *(int32_t*)(POINTER_SHIFT(data, INT_BYTES));
3,814✔
152
  int64_t streamId = *(int64_t*)(POINTER_SHIFT(data, 2 * INT_BYTES));
3,814✔
153
  stDebug("[checkpoint] handleSyncWriteCheckPointRsp, ver:%d, streamId:%"PRIx64",dataLen:%d", 
3,814✔
154
    ver, streamId, dataLen);
155

156
  if (ver != -1){
3,814✔
UNCOV
157
    (void)streamWriteCheckPoint(streamId, data, dataLen);
×
158
  }
159
  return streamCheckpointSetReady(streamId);
3,814✔
160
}
161

162
static int32_t buildStreamFetchRsp(SSDataBlock* pBlock, void** data, size_t* size, int8_t precision, bool finished) {
4,133,131✔
163
  int32_t code = 0;
4,133,131✔
164
  int32_t lino = 0;
4,133,131✔
165
  void*   buf =  NULL;
4,133,131✔
166

167
  int32_t blockSize = pBlock == NULL ? 0 : blockGetInternalEncodeSize(pBlock);
4,133,131✔
168
  size_t dataEncodeBufSize = sizeof(SRetrieveTableRsp) + INT_BYTES * 2 + blockSize;
4,133,131✔
169
  buf = rpcMallocCont(dataEncodeBufSize);
4,133,131✔
170
  if (!buf) {
4,133,131✔
171
    code = terrno;
×
172
    goto end;
×
173
  }
174

175
  SRetrieveTableRsp* pRetrieve = (SRetrieveTableRsp*)buf;
4,133,131✔
176
  pRetrieve->version = 0;
4,133,131✔
177
  pRetrieve->precision = precision;
4,133,131✔
178
  pRetrieve->compressed = 0;
4,133,131✔
179
  *((int32_t*)(pRetrieve->data)) = blockSize;
4,133,131✔
180
  *((int32_t*)(pRetrieve->data + INT_BYTES)) = blockSize;
4,133,131✔
181
  if (pBlock == NULL || pBlock->info.rows == 0) {
4,133,131✔
182
    pRetrieve->numOfRows = 0;
2,371,956✔
183
    pRetrieve->numOfBlocks = 0;
2,371,956✔
184
    pRetrieve->completed = 1;
2,371,956✔
185
  } else {
186
    pRetrieve->numOfRows = htobe64((int64_t)pBlock->info.rows);
1,761,175✔
187
    pRetrieve->numOfBlocks = htonl(1);
1,761,175✔
188
    int32_t actualLen = blockEncodeInternal(pBlock, pRetrieve->data + INT_BYTES * 2, blockSize, taosArrayGetSize(pBlock->pDataBlock));
1,761,175✔
189
    if (actualLen < 0) {
1,761,175✔
190
      code = terrno;
×
191
      goto end;
×
192
    }
193
  }
194
  if (finished) {
4,133,131✔
195
    pRetrieve->completed = 1;
2,661,745✔
196
  }
197

198
  *data = buf;
4,133,131✔
199
  *size = dataEncodeBufSize;
4,133,131✔
200
  buf = NULL;
4,133,131✔
201

202
end:
4,133,131✔
203
  rpcFreeCont(buf);
4,133,131✔
204
  return code;
4,133,131✔
205
}
206

207
static int32_t handleStreamFetchData(SSnode* pSnode, void *pWorkerCb, SRpcMsg* pRpcMsg) {
21,366✔
208
  int32_t code = 0, lino = 0;
21,366✔
209
  void* taskAddr = NULL;
21,366✔
210
  SResFetchReq req = {0};
21,366✔
211
  SSTriggerCalcRequest calcReq = {0};
21,366✔
212
  SStreamRunnerTask* pTask = NULL;
21,366✔
213
  void* buf = NULL;
21,366✔
214
  size_t size = 0;
21,366✔
215

216
  stDebug("handleStreamFetchData, msgType:%s, contLen:%d 0x%" PRIx64 ":0x%" PRIx64, 
21,366✔
217
      TMSG_INFO(pRpcMsg->msgType), pRpcMsg->contLen, TRACE_GET_ROOTID(&pRpcMsg->info.traceId), TRACE_GET_MSGID(&pRpcMsg->info.traceId));
218
  
219
  TAOS_CHECK_EXIT(tDeserializeSResFetchReq(pRpcMsg->pCont,pRpcMsg->contLen, &req));
21,366✔
220

221
  calcReq.streamId = req.queryId;
21,366✔
222
  calcReq.runnerTaskId = req.taskId;
21,366✔
223
  calcReq.brandNew = req.reset;
21,366✔
224
  calcReq.execId = req.execId;
21,366✔
225
  calcReq.sessionId = req.pStRtFuncInfo->sessionId;
21,366✔
226
  calcReq.triggerType = req.pStRtFuncInfo->triggerType;
21,366✔
227
  calcReq.isWindowTrigger = req.pStRtFuncInfo->isWindowTrigger;
21,366✔
228
  calcReq.precision = req.pStRtFuncInfo->precision;
21,366✔
229
  TSWAP(calcReq.groupColVals, req.pStRtFuncInfo->pStreamPartColVals);
21,366✔
230
  TSWAP(calcReq.params, req.pStRtFuncInfo->pStreamPesudoFuncVals);
21,366✔
231
  calcReq.gid = req.pStRtFuncInfo->groupId;
21,366✔
232
  calcReq.curWinIdx = req.pStRtFuncInfo->curIdx;
21,366✔
233
  calcReq.pOutBlock = NULL;
21,366✔
234

235
  TAOS_CHECK_EXIT(streamAcquireTask(calcReq.streamId, calcReq.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
21,366✔
236

237
  pTask->msgCb = pSnode->msgCb;
21,366✔
238
  //pTask->pMsgCb = &pSnode->msgCb;
239
  pTask->pWorkerCb = pWorkerCb;
21,366✔
240
  
241
  TAOS_CHECK_EXIT(stRunnerTaskExecute(pTask, &calcReq));
21,366✔
242

243
  TAOS_CHECK_EXIT(buildStreamFetchRsp(calcReq.pOutBlock, &buf, &size, 0, false));
21,366✔
244

245
_exit:
21,366✔
246

247
  tDestroySTriggerCalcRequest(&calcReq);
21,366✔
248
  tDestroySResFetchReq(&req);
21,366✔
249
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_FETCH_FROM_RUNNER_RSP, .contLen = size, .pCont = buf, .info = pRpcMsg->info};
21,366✔
250
  tmsgSendRsp(&rsp);
21,366✔
251
  
252
  streamReleaseTask(taskAddr);
21,366✔
253

254
  if (code) {
21,366✔
255
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
256
  }
257
  
258
  return code;
21,366✔
259
}
260

261
static int32_t handleStreamFetchFromCache(SSnode* pSnode, SRpcMsg* pRpcMsg) {
4,111,765✔
262
  int32_t code = 0, lino = 0;
4,111,765✔
263
  SResFetchReq req = {0};
4,111,765✔
264
  SStreamCacheReadInfo readInfo = {0};
4,111,765✔
265
  void* buf = NULL;
4,111,765✔
266
  int64_t streamId = 0;
4,111,765✔
267
  size_t size = 0;
4,111,765✔
268
  TAOS_CHECK_EXIT(tDeserializeSResFetchReq(pRpcMsg->pCont, pRpcMsg->contLen, &req));
4,111,765✔
269

270
  streamId = req.queryId;
4,111,559✔
271
  readInfo.taskInfo.streamId = req.queryId;
4,111,559✔
272
  readInfo.taskInfo.taskId = req.taskId;
4,111,559✔
273
  readInfo.taskInfo.sessionId = req.pStRtFuncInfo->sessionId;
4,111,559✔
274
  readInfo.gid = req.pStRtFuncInfo->groupId;
4,111,359✔
275
  //SSTriggerCalcParam* pParam = taosArrayGet(req.pStRtFuncInfo->pStreamPesudoFuncVals, req.pStRtFuncInfo->curIdx);
276
  readInfo.start = req.pStRtFuncInfo->curWindow.skey;
4,110,838✔
277
  readInfo.end = req.pStRtFuncInfo->curWindow.ekey;
4,111,038✔
278
  bool finished;
4,110,808✔
279
  TAOS_CHECK_EXIT(stRunnerFetchDataFromCache(&readInfo,&finished));
4,111,765✔
280

281
  TAOS_CHECK_EXIT(buildStreamFetchRsp(readInfo.pBlock, &buf, &size, 0, finished));
4,111,765✔
282

283
_exit:
4,111,765✔
284

285
  printDataBlock(readInfo.pBlock, __func__, "fetchFromCache", streamId);
4,111,765✔
286

287
  stsDebug("task %" PRIx64 " TDMT_STREAM_FETCH_FROM_CACHE_RSP with code:%d rows:%" PRId64 ", size:%d, time range:[%" PRId64 ", %" PRId64 "]", 
4,111,765✔
288
      req.taskId, code, readInfo.pBlock ? readInfo.pBlock->info.rows : 0, (int32_t)size, readInfo.start, readInfo.end);  
289
      
290
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_FETCH_FROM_CACHE_RSP, .contLen = size, .pCont = buf, .info = pRpcMsg->info};
4,111,765✔
291
  tmsgSendRsp(&rsp);
4,111,765✔
292

293
  if (code) {
4,111,765✔
294
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
295
  }
296

297
  blockDataDestroy(readInfo.pBlock);
4,111,765✔
298
  tDestroySResFetchReq(&req);
4,111,765✔
299
  
300
  return code;
4,111,556✔
301
}
302

303
static void sndSendErrorRrsp(SRpcMsg *pMsg, int32_t errCode) {
×
304
  SRpcMsg             rspMsg = {0};
×
305

306
  rspMsg.info = pMsg->info;
×
307
  rspMsg.pCont = NULL;
×
308
  rspMsg.contLen = 0;
×
309
  rspMsg.code = errCode;
×
310
  rspMsg.msgType = pMsg->msgType;
×
311

312
  tmsgSendRsp(&rspMsg);
×
313
}
×
314

315
static int32_t handleStreamDropTableReq(SSnode* pSnode, SRpcMsg* pRpcMsg) {
239✔
316
  SSTriggerDropRequest req = {0};
239✔
317
  SStreamRunnerTask* pTask = NULL;
239✔
318
  void* taskAddr = NULL;
239✔
319
  int32_t code = 0, lino = 0;
239✔
320
  TAOS_CHECK_EXIT(tDeserializeSTriggerDropTableRequest(POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead)), pRpcMsg->contLen - sizeof(SMsgHead), &req));
239✔
321
  TAOS_CHECK_EXIT(streamAcquireTask(req.streamId, req.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
239✔
322
  
323
  pTask->msgCb = pSnode->msgCb;
239✔
324
  TAOS_CHECK_EXIT(stRunnerTaskDropTable(pTask, &req));
239✔
325

326
_exit:
239✔
327
  tDestroySSTriggerDropRequest(&req);
239✔
328
  if (code) {
239✔
329
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
330
    sndSendErrorRrsp(pRpcMsg, code);
×
331
  } else {
332
    SRpcMsg rsp = {.code = 0, .msgType = TDMT_STREAM_TRIGGER_DROP_RSP, .contLen = 0, .pCont = NULL, .info = pRpcMsg->info};
239✔
333
    tmsgSendRsp(&rsp);
239✔
334
  }
335
  streamReleaseTask(taskAddr);
239✔
336

337
  return code;
239✔
338
}
339

340

341
int32_t sndProcessStreamMsg(SSnode *pSnode, void *pWorkerCb, SRpcMsg *pMsg) {
6,041,621✔
342
  int32_t code = 0, lino = 0;
6,041,621✔
343
  switch (pMsg->msgType) {
6,041,621✔
344
    case TDMT_STREAM_TRIGGER_CALC:
1,899,227✔
345
      TAOS_CHECK_EXIT(handleTriggerCalcReq(pSnode, pWorkerCb, pMsg));
1,899,227✔
346
      break;
640,574✔
347
    case TDMT_STREAM_DELETE_CHECKPOINT:
1,645✔
348
      TAOS_CHECK_EXIT(handleSyncDeleteCheckPointReq(pSnode, pMsg));
1,645✔
349
      break;
1,645✔
350
    case TDMT_STREAM_SYNC_CHECKPOINT:
3,798✔
351
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointReq(pSnode, pMsg));
3,798✔
352
      break;
3,798✔
353
    case TDMT_STREAM_SYNC_CHECKPOINT_RSP:
3,814✔
354
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointRsp(pSnode, pMsg));
3,814✔
355
      break;
3,332✔
356
    case TDMT_STREAM_FETCH_FROM_RUNNER:
21,366✔
357
      TAOS_CHECK_EXIT(handleStreamFetchData(pSnode, pWorkerCb, pMsg));
21,366✔
358
      break;
21,366✔
359
    case TDMT_STREAM_FETCH_FROM_CACHE:
4,111,765✔
360
      TAOS_CHECK_EXIT(handleStreamFetchFromCache(pSnode, pMsg));
4,111,765✔
361
      break;
4,111,556✔
362
      case TDMT_STREAM_TRIGGER_DROP:
239✔
363
     TAOS_CHECK_EXIT(handleStreamDropTableReq(pSnode, pMsg));
239✔
364
      break;
239✔
365
    default:
×
366
      sndError("invalid snode msg:%d", pMsg->msgType);
×
367
      TAOS_CHECK_EXIT(TSDB_CODE_INVALID_MSG);
×
368
  }
369

370
_exit:
×
371

372
  if (code) {
6,041,645✔
373
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
1,259,135✔
374
  }
375
  
376
  return code;
6,041,645✔
377
}
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