Skip to content

Commit 1804703

Browse files
committed
use improved set
1 parent 9ce96d7 commit 1804703

File tree

5 files changed

+10
-13
lines changed

5 files changed

+10
-13
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.18
55
require (
66
github.com/go-resty/resty/v2 v2.5.0
77
github.com/jstemmer/go-junit-report v0.9.1
8-
github.com/mattfenwick/collections v0.1.6
8+
github.com/mattfenwick/collections v0.1.7
99
github.com/olekukonko/tablewriter v0.0.4
1010
github.com/onsi/ginkgo/v2 v2.1.4
1111
github.com/onsi/gomega v1.19.0

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN
241241
github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc=
242242
github.com/mailru/easyjson v0.7.6 h1:8yTIVnZgCoiM1TgqoeTl+LfU5Jg6/xL3QhGQnimLYnA=
243243
github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
244-
github.com/mattfenwick/collections v0.1.6 h1:rbip28GALt86KwuhsN+7jy92rtVW7A4HScH35fCL2Io=
245-
github.com/mattfenwick/collections v0.1.6/go.mod h1:6JmZGWNsbA4g6OzJQGAOTalNWMPghEOl1q4abMZAJSQ=
244+
github.com/mattfenwick/collections v0.1.7 h1:92ehnds2KGUsHm+kvgqH8n8QdDXRMchpw/HvEeI1hx4=
245+
github.com/mattfenwick/collections v0.1.7/go.mod h1:6JmZGWNsbA4g6OzJQGAOTalNWMPghEOl1q4abMZAJSQ=
246246
github.com/mattn/go-runewidth v0.0.7 h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54=
247247
github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
248248
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=

pkg/cli/analyze.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package cli
22

33
import (
44
"fmt"
5-
collections "github.com/mattfenwick/collections/pkg"
5+
"github.com/mattfenwick/collections/pkg/set"
66
"github.com/mattfenwick/cyclonus/pkg/connectivity/probe"
77
"github.com/mattfenwick/cyclonus/pkg/generator"
88
"github.com/mattfenwick/cyclonus/pkg/linter"
@@ -161,7 +161,7 @@ func ExplainPolicies(explainedPolicies *matcher.Policy) {
161161
}
162162

163163
func Lint(kubePolicies []*networkingv1.NetworkPolicy) {
164-
warnings := linter.Lint(kubePolicies, collections.NewSet[linter.Check](nil))
164+
warnings := linter.Lint(kubePolicies, set.NewSet[linter.Check](nil))
165165
fmt.Println(linter.WarningsTable(warnings))
166166
}
167167

pkg/generator/tags.go

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
package generator
22

33
import (
4+
"github.com/mattfenwick/collections/pkg/slice"
45
"github.com/pkg/errors"
6+
"golang.org/x/exp/maps"
57
"sort"
68
"strings"
79
)
@@ -234,12 +236,7 @@ func (s StringSet) GroupTags() map[string][]string {
234236
}
235237

236238
func (s StringSet) Keys() []string {
237-
var stringSlice []string
238-
for k := range s {
239-
stringSlice = append(stringSlice, k)
240-
}
241-
sort.Strings(stringSlice)
242-
return stringSlice
239+
return slice.Sort(maps.Keys(s))
243240
}
244241

245242
func (s StringSet) ContainsAny(stringSlice []string) bool {

pkg/linter/checks.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package linter
22

33
import (
44
"fmt"
5-
collections "github.com/mattfenwick/collections/pkg"
5+
"github.com/mattfenwick/collections/pkg/set"
66
"github.com/mattfenwick/collections/pkg/slice"
77
"github.com/mattfenwick/cyclonus/pkg/matcher"
88
"github.com/mattfenwick/cyclonus/pkg/utils"
@@ -130,7 +130,7 @@ func WarningsTable(warnings []Warning) string {
130130
return str.String()
131131
}
132132

133-
func Lint(kubePolicies []*networkingv1.NetworkPolicy, skip *collections.Set[Check, Check]) []Warning {
133+
func Lint(kubePolicies []*networkingv1.NetworkPolicy, skip *set.Set[Check]) []Warning {
134134
policies := matcher.BuildNetworkPolicies(false, kubePolicies)
135135
warnings := append(LintSourcePolicies(kubePolicies), LintResolvedPolicies(policies)...)
136136

0 commit comments

Comments
 (0)