blob: 380d3dab2a8a9fd29381568dc3e8442e078c3b6d [file] [log] [blame]
// Copyright 2021 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 worker
import (
"context"
"testing"
"github.com/google/go-cmp/cmp"
"golang.org/x/vuln/internal/cveschema"
"golang.org/x/vuln/internal/worker/store"
)
func TestInsertFalsePositives(t *testing.T) {
mstore := store.NewMemStore()
if err := InsertFalsePositives(context.Background(), mstore); err != nil {
t.Fatal(err)
}
// Spot-check a couple of records.
got := mstore.CVERecords()
for _, want := range []*store.CVERecord{
{
ID: "CVE-2016-0216",
Path: "2016/0xxx/CVE-2016-0216.json",
CommitHash: FalsePositiveCommitHash,
BlobHash: "ac9f59c6700576b5936dc014ce265ee0c9a41097",
CVEState: cveschema.StatePublic,
TriageState: store.TriageStateNoActionNeeded,
TriageStateReason: "known false positive",
},
{
ID: "CVE-2020-15112",
Path: "2020/15xxx/CVE-2020-15112.json",
CommitHash: FalsePositiveCommitHash,
BlobHash: "3d87891317ff107037bc0145194ab72df1890411",
CVEState: cveschema.StatePublic,
TriageState: store.TriageStateNoActionNeeded,
TriageStateReason: "covered by GO-2020-0005",
},
} {
if diff := cmp.Diff(want, got[want.ID]); diff != "" {
t.Errorf("mismatch (-want, +got):\n%s", diff)
}
}
}