Skip to content

Commit 31af127

Browse files
committed
Add integration test for Go workaround diagnostic
1 parent 2b193c5 commit 31af127

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: "Go: workaround for indirect tracing"
2+
description: "Checks that our workaround for indirect tracing for Go 1.21+ on Linux works"
3+
# only Linux is affected
4+
operatingSystems: ["ubuntu"]
5+
# pinned to a version which does not support statically linked binaries for indirect tracing
6+
versions: ["stable-v2.14.6"]
7+
steps:
8+
- uses: actions/setup-go@v4
9+
with:
10+
# We need a Go version that ships with statically linked binaries on Linux
11+
go-version: ">=1.21.0"
12+
- uses: ./../action/init
13+
with:
14+
languages: go
15+
tools: ${{ steps.prepare-test.outputs.tools-url }}
16+
# Deliberately change Go after the `init` step
17+
- uses: actions/setup-go@v4
18+
with:
19+
go-version: "1.20"
20+
- name: Build code
21+
shell: bash
22+
run: go build main.go
23+
- uses: ./../action/analyze
24+
with:
25+
output: "${{ runner.temp }}/results"
26+
upload-database: false
27+
- name: Check diagnostic appears in SARIF
28+
uses: actions/github-script@v6
29+
env:
30+
SARIF_PATH: "${{ runner.temp }}/results/go.sarif"
31+
with:
32+
script: |
33+
const fs = require('fs');
34+
35+
const sarif = JSON.parse(fs.readFileSync(process.env['SARIF_PATH'], 'utf8'));
36+
const run = sarif.runs[0];
37+
38+
const toolExecutionNotifications = run.invocations[0].toolExecutionNotifications;
39+
const statusPageNotifications = toolExecutionNotifications.filter(n =>
40+
n.descriptor.id === 'go/workflow/go-installed-after-codeql-init' && n.properties?.visibility?.statusPage
41+
);
42+
if (statusPageNotifications.length !== 1) {
43+
core.setFailed(
44+
'Expected exactly one status page reporting descriptor for this diagnostic in the ' +
45+
`'runs[].invocations[].toolExecutionNotifications[]' SARIF property, but found ` +
46+
`${statusPageNotifications.length}. All notification reporting descriptors: ` +
47+
`${JSON.stringify(toolExecutionNotifications)}.`
48+
);
49+
}

0 commit comments

Comments
 (0)