blob: 6ac12a96ecaf3ce4dd2900f2bdbdfd7c02656201 [file] [log] [blame]
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package report
import (
"os"
"path/filepath"
"strings"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestRoundTrip(t *testing.T) {
// A report shouldn't change after being read and then written.
in := filepath.Join("testdata", "report.yaml")
r, err := Read(in)
if err != nil {
t.Fatal(err)
}
out := filepath.Join(t.TempDir(), "report.yaml")
if err := r.Write(out); err != nil {
t.Fatal(err)
}
want, err := os.ReadFile(in)
if err != nil {
t.Fatal(err)
}
got, err := os.ReadFile(out)
if err != nil {
t.Fatal(err)
}
if diff := cmp.Diff(want, got); diff != "" {
t.Errorf("mismatch (-want, +got):\n%s", diff)
}
}
func TestUnknownField(t *testing.T) {
_, err := Read(filepath.Join("testdata", "unknown-field.yaml"))
const want = "not found"
if err == nil || !strings.Contains(err.Error(), want) {
t.Errorf("got %v, want error containing %q", err, want)
}
}
func TestYAMLFilename(t *testing.T) {
tests := []struct {
name string
r *Report
goID string
want string
}{
{
name: "normal",
r: &Report{ID: "GO-1999-0001"},
want: "data/reports/GO-1999-0001.yaml",
},
{
name: "excluded",
r: &Report{ID: "GO-1999-0002", Excluded: "NOT_IMPORTABLE"},
want: "data/excluded/GO-1999-0002.yaml",
},
}
for _, test := range tests {
got, err := test.r.YAMLFilename()
if err != nil {
t.Fatal(err)
}
if want := filepath.FromSlash(test.want); got != want {
t.Errorf("got %s, want %s", got, want)
}
}
}
func TestToFromLabel(t *testing.T) {
str := "EFFECTIVELY_PRIVATE"
label := "excluded: EFFECTIVELY_PRIVATE"
er := ExcludedReason(str)
if got, want := er.ToLabel(), label; got != want {
t.Errorf("(%s).ToLabel = %s, want %s", er, got, want)
}
got, ok := FromLabel(label)
if want := er; !ok || got != want {
t.Errorf("FromLabel(%s) = (%s, %t), want (%s, true)", label, got, ok, want)
}
}
func TestParseFilepath(t *testing.T) {
filepath := "data/reports/GO-1999-0023.yaml"
wantFolder := "data/reports"
wantFilename := "GO-1999-0023.yaml"
wantIssueID := 23
gotFolder, gotFilename, gotIssueID, err := ParseFilepath(filepath)
if err != nil {
t.Fatalf("ParseFilepath(%s) returned unexpected error: %v", filepath, err)
}
if wantFolder != gotFolder {
t.Errorf("ParseFilepath(%s) returned incorrect folder: want %q, got %q", filepath, wantFolder, gotFolder)
}
if wantFilename != gotFilename {
t.Errorf("ParseFilepath(%s) returned incorrect filename: want %q, got %q", filepath, wantFilename, gotFilename)
}
if wantIssueID != gotIssueID {
t.Errorf("ParseFilepath(%s) returned incorrect filename: want %d, got %d", filepath, wantIssueID, gotIssueID)
}
}
func TestAddAliases(t *testing.T) {
tests := []struct {
name string
report *Report
aliases []string
want int
wantReport *Report
}{
{
name: "add",
report: &Report{
CVEs: []string{"CVE-2023-0002"},
},
aliases: []string{"CVE-2023-0001", "CVE-2023-0002", "GHSA-aaaa-bbbb-cccc"},
want: 2,
wantReport: &Report{
CVEs: []string{"CVE-2023-0001", "CVE-2023-0002"},
GHSAs: []string{"GHSA-aaaa-bbbb-cccc"},
},
},
{
name: "no_change",
report: &Report{
CVEs: []string{"CVE-2023-0001"},
GHSAs: []string{"GHSA-aaaa-bbbb-cccc"},
CVEMetadata: &CVEMeta{
ID: "CVE-2023-0002",
},
},
aliases: []string{"CVE-2023-0001", "CVE-2023-0002", "GHSA-aaaa-bbbb-cccc"},
want: 0,
wantReport: &Report{
CVEs: []string{"CVE-2023-0001"},
GHSAs: []string{"GHSA-aaaa-bbbb-cccc"},
CVEMetadata: &CVEMeta{
ID: "CVE-2023-0002",
},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
gotAdded := test.report.AddAliases(test.aliases)
if gotAdded != test.want {
t.Errorf("AddAliases(%v) = %v, want %v", test.aliases, gotAdded, test.want)
}
if diff := cmp.Diff(test.wantReport, test.report); diff != "" {
t.Errorf("AddAliases(%v) report mismatch: (-want, +got):\n%s", test.aliases, diff)
}
})
}
}