⚠️ Removing the confidence field from CheckResult struct (#1896)

- Removing the confidence field from `CheckResult` struct
- https://github.com/ossf/scorecard/issues/1393

Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
This commit is contained in:
Naveen 2022-05-09 12:46:24 -05:00 committed by GitHub
parent 6d79817e3b
commit 7ff4b7e050
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 16 deletions

View File

@ -79,10 +79,9 @@ const (
// nolint:govet
type CheckResult struct {
// TODO(#1393): Remove old structure after deprecation.
Name string
Details []string
Confidence int
Pass bool
Name string
Details []string
Pass bool
// UPGRADEv2: New structure. Omitting unchanged Name field
// for simplicity.
@ -173,8 +172,7 @@ func CreateResultWithScore(name, reason string, score int) CheckResult {
return CheckResult{
Name: name,
// Old structure.
Confidence: MaxResultScore,
Pass: pass,
Pass: pass,
// New structure.
Version: 2,
Error: nil,
@ -197,8 +195,7 @@ func CreateProportionalScoreResult(name, reason string, b, t int) CheckResult {
return CheckResult{
Name: name,
// Old structure.
Confidence: MaxResultConfidence,
Pass: pass,
Pass: pass,
// New structure.
Version: 2,
Error: nil,
@ -228,8 +225,7 @@ func CreateInconclusiveResult(name, reason string) CheckResult {
return CheckResult{
Name: name,
// Old structure.
Confidence: 0,
Pass: false,
Pass: false,
// New structure.
Version: 2,
Score: InconclusiveResultScore,
@ -242,8 +238,7 @@ func CreateRuntimeErrorResult(name string, e error) CheckResult {
return CheckResult{
Name: name,
// Old structure.
Confidence: 0,
Pass: false,
Pass: false,
// New structure.
Version: 2,
Error: e,

View File

@ -96,8 +96,7 @@ func AsJSON(r *pkg.ScorecardResult, showDetails bool, logLevel log.Level, writer
//nolint
for _, checkResult := range r.Checks {
tmpResult := jsonCheckResult{
Name: checkResult.Name,
Confidence: checkResult.Confidence,
Name: checkResult.Name,
}
if showDetails {
for i := range checkResult.Details2 {

View File

@ -95,8 +95,7 @@ func (r *ScorecardResult) AsJSON(showDetails bool, logLevel log.Level, writer io
//nolint
for _, checkResult := range r.Checks {
tmpResult := jsonCheckResult{
Name: checkResult.Name,
Confidence: checkResult.Confidence,
Name: checkResult.Name,
}
if showDetails {
for i := range checkResult.Details2 {