@@ -116,6 +116,56 @@ jobs:
116
116
- name : Assert Sonar Scanner CLI was not executed
117
117
run : |
118
118
./test/assertFileDoesntExist ./output.properties
119
+ scannerBinariesUrlIsEscapedWithWget :
120
+ name : >
121
+ 'scannerBinariesUrl' is escaped with wget so special chars are not injected in the download command
122
+ runs-on : ubuntu-latest
123
+ steps :
124
+ - uses : actions/checkout@v4
125
+ with :
126
+ token : ${{ secrets.GITHUB_TOKEN }}
127
+ - name : Run action with scannerBinariesUrl
128
+ id : runTest
129
+ uses : ./
130
+ continue-on-error : true
131
+ with :
132
+ scannerBinariesUrl : ' http://some_uri;touch file.txt;'
133
+ env :
134
+ NO_CACHE : true
135
+ SONAR_HOST_URL : http://not_actually_used
136
+ SONAR_SCANNER_JSON_PARAMS : ' {"sonar.scanner.internal.dumpToFile": "./output1.properties"}'
137
+ - name : Assert file.txt does not exist
138
+ run : |
139
+ ./test/assertFileDoesntExist "$RUNNER_TEMP/sonarscanner/file.txt"
140
+ scannerBinariesUrlIsEscapedWithCurl :
141
+ name : >
142
+ 'scannerBinariesUrl' is escaped with curl so special chars are not injected in the download command
143
+ runs-on : ubuntu-latest
144
+ steps :
145
+ - uses : actions/checkout@v4
146
+ with :
147
+ token : ${{ secrets.GITHUB_TOKEN }}
148
+ - name : Remove wget
149
+ run : sudo apt-get remove -y wget
150
+ - name : Assert wget is not available
151
+ run : |
152
+ if command -v wget 2>&1 >/dev/null
153
+ then
154
+ exit 1
155
+ fi
156
+ - name : Run action with scannerBinariesUrl
157
+ id : runTest
158
+ uses : ./
159
+ continue-on-error : true
160
+ with :
161
+ scannerBinariesUrl : ' http://some_uri http://another_uri'' ; touch file.txt;'
162
+ env :
163
+ NO_CACHE : true
164
+ SONAR_HOST_URL : http://not_actually_used
165
+ SONAR_SCANNER_JSON_PARAMS : ' {"sonar.scanner.internal.dumpToFile": "./output1.properties"}'
166
+ - name : Assert file.txt does not exist
167
+ run : |
168
+ ./test/assertFileDoesntExist "$RUNNER_TEMP/sonarscanner/file.txt"
119
169
dontFailGradleTest :
120
170
name : >
121
171
Don't fail on Gradle project
@@ -376,6 +426,37 @@ jobs:
376
426
- name : Assert failure of previous step
377
427
if : steps.runTest.outcome == 'success'
378
428
run : exit 1
429
+ curlPerformsRedirect :
430
+ name : >
431
+ curl performs redirect when scannerBinariesUrl returns 3xx
432
+ runs-on : ubuntu-latest
433
+ steps :
434
+ - uses : actions/checkout@v4
435
+ with :
436
+ token : ${{ secrets.GITHUB_TOKEN }}
437
+ - name : Remove wget
438
+ run : sudo apt-get remove -y wget
439
+ - name : Assert wget is not available
440
+ run : |
441
+ if command -v wget 2>&1 >/dev/null
442
+ then
443
+ exit 1
444
+ fi
445
+ - name : Start nginx via Docker Compose
446
+ run : docker compose up -d --wait
447
+ working-directory : .github/qa-nginx-redirecting
448
+ - name : Run action with scannerBinariesUrl
449
+ id : runTest
450
+ uses : ./
451
+ with :
452
+ scannerBinariesUrl : http://localhost:8080/clientRedirectToSonarBinaries
453
+ env :
454
+ NO_CACHE : true
455
+ SONAR_HOST_URL : http://not_actually_used
456
+ SONAR_SCANNER_JSON_PARAMS : ' {"sonar.scanner.internal.dumpToFile": "./output1.properties"}'
457
+ - name : Assert Sonar Scanner CLI was downloaded
458
+ run : |
459
+ ./test/assertFileExists "$RUNNER_TEMP/sonarscanner/sonar-scanner-cli-6.2.1.4610-linux-x64.zip"
379
460
useSslCertificate :
380
461
name : >
381
462
'SONAR_ROOT_CERT' is converted to truststore
0 commit comments