scorecard/finding/finding_test.go
laurentsimon a4da39a779
[experimental] Create probes within findings (#2919)
* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

* update

Signed-off-by: laurentsimon <laurentsimon@google.com>

---------

Signed-off-by: laurentsimon <laurentsimon@google.com>
2023-05-03 00:42:32 +00:00

201 lines
5.7 KiB
Go

// Copyright 2023 OpenSSF Scorecard Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package finding
import (
"errors"
"os"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/ossf/scorecard/v4/finding/probe"
)
func errCmp(e1, e2 error) bool {
return errors.Is(e1, e2) || errors.Is(e2, e1)
}
func Test_FromBytes(t *testing.T) {
snippet := "some code snippet"
patch := "some patch values"
sline := uint(10)
eline := uint(46)
positiveOutcome := OutcomePositive
negativeOutcome := OutcomeNegative
t.Parallel()
// nolint:govet
tests := []struct {
name string
id string
path string
outcome *Outcome
err error
metadata map[string]string
finding *Finding
}{
{
name: "effort low",
id: "effort-low",
path: "testdata/effort-low.yml",
outcome: &negativeOutcome,
finding: &Finding{
Probe: "effort-low",
Outcome: OutcomeNegative,
Remediation: &probe.Remediation{
Text: "step1\nstep2 https://www.google.com/something",
Markdown: "step1\nstep2 [google.com](https://www.google.com/something)",
Effort: probe.RemediationEffortLow,
},
},
},
{
name: "effort high",
id: "effort-high",
path: "testdata/effort-high.yml",
outcome: &negativeOutcome,
finding: &Finding{
Probe: "effort-high",
Outcome: OutcomeNegative,
Remediation: &probe.Remediation{
Text: "step1\nstep2 https://www.google.com/something",
Markdown: "step1\nstep2 [google.com](https://www.google.com/something)",
Effort: probe.RemediationEffortHigh,
},
},
},
{
name: "env variables",
id: "metadata-variables",
path: "testdata/metadata-variables.yml",
outcome: &negativeOutcome,
metadata: map[string]string{"branch": "master", "repo": "ossf/scorecard"},
finding: &Finding{
Probe: "metadata-variables",
Outcome: OutcomeNegative,
Remediation: &probe.Remediation{
Text: "step1\nstep2 google.com/ossf/scorecard@master",
Markdown: "step1\nstep2 [google.com/ossf/scorecard@master](google.com/ossf/scorecard@master)",
Effort: probe.RemediationEffortLow,
},
},
},
{
name: "patch",
id: "metadata-variables",
path: "testdata/metadata-variables.yml",
outcome: &negativeOutcome,
metadata: map[string]string{"branch": "master", "repo": "ossf/scorecard"},
finding: &Finding{
Probe: "metadata-variables",
Outcome: OutcomeNegative,
Remediation: &probe.Remediation{
Text: "step1\nstep2 google.com/ossf/scorecard@master",
Markdown: "step1\nstep2 [google.com/ossf/scorecard@master](google.com/ossf/scorecard@master)",
Effort: probe.RemediationEffortLow,
Patch: &patch,
},
},
},
{
name: "location",
id: "metadata-variables",
path: "testdata/metadata-variables.yml",
outcome: &negativeOutcome,
metadata: map[string]string{"branch": "master", "repo": "ossf/scorecard"},
finding: &Finding{
Probe: "metadata-variables",
Outcome: OutcomeNegative,
Remediation: &probe.Remediation{
Text: "step1\nstep2 google.com/ossf/scorecard@master",
Markdown: "step1\nstep2 [google.com/ossf/scorecard@master](google.com/ossf/scorecard@master)",
Effort: probe.RemediationEffortLow,
},
Location: &Location{
Type: FileTypeSource,
Path: "path/to/file.txt",
LineStart: &sline,
LineEnd: &eline,
Snippet: &snippet,
},
},
},
{
name: "text",
id: "metadata-variables",
path: "testdata/metadata-variables.yml",
outcome: &negativeOutcome,
metadata: map[string]string{"branch": "master", "repo": "ossf/scorecard"},
finding: &Finding{
Probe: "metadata-variables",
Outcome: OutcomeNegative,
Remediation: &probe.Remediation{
Text: "step1\nstep2 google.com/ossf/scorecard@master",
Markdown: "step1\nstep2 [google.com/ossf/scorecard@master](google.com/ossf/scorecard@master)",
Effort: probe.RemediationEffortLow,
},
Message: "some text",
},
},
{
name: "positive outcome",
id: "metadata-variables",
path: "testdata/metadata-variables.yml",
outcome: &positiveOutcome,
finding: &Finding{
Probe: "metadata-variables",
Outcome: OutcomePositive,
Message: "some text",
},
},
}
for _, tt := range tests {
tt := tt // Re-initializing variable so it is not changed while executing the closure below
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
content, err := os.ReadFile(tt.path)
if err != nil {
t.Fatalf(err.Error())
}
r, err := FromBytes(content, tt.id)
if err != nil || tt.err != nil {
if !errCmp(err, tt.err) {
t.Fatalf("unexpected error: %v", cmp.Diff(err, tt.err, cmpopts.EquateErrors()))
}
return
}
r = r.WithMessage(tt.finding.Message).WithLocation(tt.finding.Location)
if len(tt.metadata) > 1 {
r = r.WithRemediationMetadata(tt.metadata)
}
if tt.finding.Remediation != nil {
r = r.WithPatch(tt.finding.Remediation.Patch)
}
if tt.outcome != nil {
r = r.WithOutcome(*tt.outcome)
}
if diff := cmp.Diff(*tt.finding, *r); diff != "" {
t.Errorf("mismatch (-want +got):\n%s", diff)
}
})
}
}