Skip to content

Commit

Permalink
🌱 Add probe test utility
Browse files Browse the repository at this point in the history
Signed-off-by: AdamKorcz <[email protected]>
  • Loading branch information
AdamKorcz committed Oct 6, 2023
1 parent e1d3abc commit 1e708b0
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions probes/internal/utils/test/test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
// 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 test

import (
"testing"

"github.com/google/go-cmp/cmp"

"github.com/ossf/scorecard/v4/finding"
)

// AssertCorrect is a suitable for all probes to compare raw results against expected outcomes.
func AssertCorrect(t *testing.T, probeExpect, probeGot string, findings []finding.Finding, expectedOutcomes []finding.Outcome) {

Check failure on line 26 in probes/internal/utils/test/test.go

View workflow job for this annotation

GitHub Actions / check-linter

line is 128 characters (lll)
if diff := cmp.Diff(probeExpect, probeGot); diff != "" {
t.Errorf("mismatch (-want +got):\n%s", diff)
}
if diff := cmp.Diff(len(expectedOutcomes), len(findings)); diff != "" {
t.Errorf("mismatch (-want +got):\n%s", diff)
}
for i := range expectedOutcomes {
outcome := &expectedOutcomes[i]
f := &findings[i]
if diff := cmp.Diff(*outcome, f.Outcome); diff != "" {
t.Errorf("mismatch (-want +got):\n%s", diff)
}
}
}

0 comments on commit 1e708b0

Please sign in to comment.