mirror of
https://github.com/ossf/scorecard.git
synced 2024-11-13 01:25:07 +03:00
b556d932a4
* handle osv errors for projects without packages Signed-off-by: Spencer Schrock <sschrock@google.com> * make test parallel Signed-off-by: Spencer Schrock <sschrock@google.com> --------- Signed-off-by: Spencer Schrock <sschrock@google.com>
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
// Copyright 2022 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 clients
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestRemoveDuplicate(t *testing.T) {
|
|
t.Parallel()
|
|
tests := []struct {
|
|
name string
|
|
keyExtract func(string) string
|
|
list []string
|
|
want []string
|
|
}{
|
|
{
|
|
name: "Basic list with dup items",
|
|
list: []string{"A", "B", "C", "B"},
|
|
want: []string{"A", "B", "C"},
|
|
keyExtract: func(in string) string {
|
|
return in
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
tt := tt
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
t.Parallel()
|
|
got := removeDuplicate(tt.list, tt.keyExtract)
|
|
if !reflect.DeepEqual(tt.want, got) {
|
|
t.Errorf("got %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestEmptyProject(t *testing.T) {
|
|
t.Parallel()
|
|
var client osvClient
|
|
var commit string
|
|
emptyDir := t.TempDir()
|
|
_, err := client.ListUnfixedVulnerabilities(context.Background(), commit, emptyDir)
|
|
if err != nil {
|
|
t.Fatalf("empty directory shouldn't throw an error: %v", err)
|
|
}
|
|
}
|