Skip to content

Commit

Permalink
Fix comment lint, add test for remove dup
Browse files Browse the repository at this point in the history
  • Loading branch information
another-rex committed Dec 11, 2022
1 parent f405955 commit 578624d
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
2 changes: 1 addition & 1 deletion clients/osv.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (v osvClient) HasUnfixedVulnerabilities(
return response, nil
}

// RemoveDuplicate removes duplicate entries from a slice
// RemoveDuplicate removes duplicate entries from a slice.
func removeDuplicate[T comparable](sliceList []T) []T {
allKeys := make(map[T]bool)
list := []T{}
Expand Down
48 changes: 48 additions & 0 deletions clients/osv_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
// 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 (
"reflect"
"testing"
)

func TestRemoveDuplicate(t *testing.T) {
t.Parallel()
tests := []struct {
name string
list []string
want []string
keyExtract func(string) 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)
if !reflect.DeepEqual(tt.want, got) {
t.Errorf("got %v, want %v", got, tt.want)
}
})
}
}

0 comments on commit 578624d

Please sign in to comment.