上传到 Prow CI 中的 Codacy 时消息头值中的非法字符

问题描述

我有 Kotlin 项目的 jacoco 代码覆盖率报告,我正在将其上传codacy

我正在使用 codacy-coverage-reporter 7.1.0 并使用以下 gradle 任务上传报告。

task("uploadTestCoverageReportTocodacy",JavaExec::class) {
    dependsOn("codeCoverageReport")
    main = "com.codacy.codacyCoverageReporter"
    classpath = codacy
    args = arraylistof(
            "report","-l","Kotlin","-r","$buildDir/reports/jacoco/jacocoTestReport.xml")
}

任务“codeCoverageReport”已成功完成,并且我在 PROW CI 中配置了 codacy_PROJECT_TOKEN。

我面临的问题是以下消息:

Exception in thread "main" java.lang.IllegalArgumentException: Illegal character(s) in message header value: <codacy_PROJECT_TOKEN> (the token value)
at java.base/sun.net.www.protocol.http.HttpURLConnection.checkMessageHeader(HttpURLConnection.java:559)
    at java.base/sun.net.www.protocol.http.HttpURLConnection.isExternalMessageHeaderAllowed(HttpURLConnection.java:494)
    at java.base/sun.net.www.protocol.http.HttpURLConnection.setRequestProperty(HttpURLConnection.java:3174)
    at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.setRequestProperty(HttpsURLConnectionImpl.java:312)
    at scalaj.http.HttpRequest.$anonfun$doConnection$3(Http.scala:359)
    at scalaj.http.HttpRequest.$anonfun$doConnection$3$adapted(Http.scala:358)
    at scala.collection.immutable.List.foreach(List.scala:392)
    at scalaj.http.HttpRequest.doConnection(Http.scala:358)
    at scalaj.http.HttpRequest.exec(Http.scala:343)
    at scalaj.http.HttpRequest.asstring(Http.scala:491)
    at com.codacy.api.client.codacyClient.post(codacyClient.scala:71)
    at com.codacy.api.service.CoverageServices.postRequest(CoverageServices.scala:91)
    at com.codacy.api.service.CoverageServices.sendReport(CoverageServices.scala:27)
    at com.codacy.rules.ReportRules.sendReport(ReportRules.scala:128)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$8(ReportRules.scala:54)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$7(ReportRules.scala:53)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$6(ReportRules.scala:52)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$4(ReportRules.scala:51)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$3(ReportRules.scala:50)
    at scala.collection.immutable.List.map(List.scala:286)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$2(ReportRules.scala:47)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.$anonfun$codacyCoverage$1(ReportRules.scala:40)
    at com.codacy.rules.ReportRules.$anonfun$withCommitUUID$4(ReportRules.scala:267)
    at com.codacy.rules.ReportRules.$anonfun$withCommitUUID$4$adapted(ReportRules.scala:267)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.rules.ReportRules.withCommitUUID(ReportRules.scala:267)
    at com.codacy.rules.ReportRules.codacyCoverage(ReportRules.scala:35)
    at com.codacy.codacyCoverageReporter$.$anonfun$sendReport$1(codacyCoverageReporter.scala:41)
    at scala.util.Either.flatMap(Either.scala:341)
    at com.codacy.codacyCoverageReporter$.sendReport(codacyCoverageReporter.scala:33)
    at com.codacy.codacyCoverageReporter$.run(codacyCoverageReporter.scala:18)
    at com.codacy.configuration.parser.ConfigurationParsingApp.run(ConfigurationParser.scala:13)
    at com.codacy.configuration.parser.ConfigurationParsingApp.run(ConfigurationParser.scala:11)
    at caseapp.CommandAppWithPreCommand.$anonfun$main$1(CommandAppWithPreCommand.scala:97)
    at caseapp.CommandAppWithPreCommand.$anonfun$main$1$adapted(CommandAppWithPreCommand.scala:82)
    at scala.Option.foreach(Option.scala:407)
    at caseapp.CommandAppWithPreCommand.main(CommandAppWithPreCommand.scala:82)
    at com.codacy.codacyCoverageReporter.main(codacyCoverageReporter.scala)

我已经仔细检查了 codacy 标记是否正确,并且没有任何前导或尾随空格或任何奇怪的字符。

有人知道为什么上传codacy 会出现这个问题吗?请注意,此 gradle 任务在本地机器上运行良好,但在 CI 中产生了问题。

解决方法

CI 正在使用新行注入令牌。我使用以下方法解决了这个问题:

task("uploadTestCoverageReportToCodacy",JavaExec::class) {
    dependsOn("codeCoverageReport")
    main = "com.codacy.CodacyCoverageReporter"
    classpath = codacy
    args = arrayListOf(
            "report","-t",System.getenv("CODACY_PROJECT_TOKEN")?.trim() ?: "","-l","Kotlin","-r","$buildDir/reports/jacoco/jacocoTestReport.xml")
}