-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcheck-junit-upload.js
61 lines (52 loc) · 1.84 KB
/
check-junit-upload.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
'use strict'
const { client, v2 } = require("@datadog/datadog-api-client")
const configuration = client.createConfiguration();
const apiInstance = new v2.CIVisibilityTestsApi(configuration);
const EXPECTED_NUM_TESTS = 32
const params = {
filterQuery: `@test.service:${process.env.DD_SERVICE} @git.commit.sha:${process.env.GITHUB_SHA}`,
filterFrom: new Date(new Date().getTime() + -300 * 1000), // Last 5 minutes
filterTo: new Date(),
pageLimit: 50,
};
const CHECK_INTERVAL_SECONDS = 10
const MAX_NUM_ATTEMPTS = 10
function getTestData (extraFilter) {
const finalFilterQuery = `${params.filterQuery} ${extraFilter}`
console.log(`🔎 Querying CI Visibility tests with ${finalFilterQuery}.`)
return apiInstance
.listCIAppTestEvents({
...params,
filterQuery: `${finalFilterQuery}`,
})
.then(data => data.data)
.catch(error => console.error(error))
}
function waitFor (waitSeconds) {
return new Promise(resolve => setTimeout(() => resolve(), waitSeconds * 1000))
}
async function checkJunitUpload () {
let numAttempts = 0
let isSuccess = false
let data = []
while (numAttempts++ < MAX_NUM_ATTEMPTS && !isSuccess) {
data = await getTestData(`test_level:test ${process.env.EXTRA_TAGS}`)
if (data.length === EXPECTED_NUM_TESTS) {
isSuccess = true
} else {
const isLastAttempt = numAttempts === MAX_NUM_ATTEMPTS
if (!isLastAttempt) {
console.log(`🔁 Attempt number ${numAttempts} failed, retrying in ${CHECK_INTERVAL_SECONDS} seconds.`)
await waitFor(CHECK_INTERVAL_SECONDS)
}
}
}
if (isSuccess) {
console.log(`✅ Successful check: the API returned ${data.length} tests.`)
process.exit(0)
} else {
console.log(`❌ Failed check: the API returned ${data.length} tests but ${EXPECTED_NUM_TESTS} were expected.`)
process.exit(1)
}
}
checkJunitUpload()