Skip to content

Commit 36ea6ce

Browse files
committed
fix port simplification test case
1 parent 186b626 commit 36ea6ce

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

pkg/matcher/portmatcher.go

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ package matcher
22

33
import (
44
"encoding/json"
5+
"sort"
6+
7+
collectionsjson "github.com/mattfenwick/collections/pkg/json"
8+
"github.com/sirupsen/logrus"
59
v1 "k8s.io/api/core/v1"
610
"k8s.io/apimachinery/pkg/util/intstr"
7-
"sort"
811
)
912

1013
type PortMatcher interface {
@@ -100,12 +103,18 @@ func (s *SpecificPortMatcher) MarshalJSON() (b []byte, e error) {
100103
}
101104

102105
func (s *SpecificPortMatcher) Combine(other *SpecificPortMatcher) *SpecificPortMatcher {
106+
logrus.Debugf("SpecificPortMatcher Combined:\n%s\n", collectionsjson.MustMarshalToString([]interface{}{s, other}))
107+
103108
pps := append([]*PortProtocolMatcher{}, s.Ports...)
104109
for _, otherPP := range other.Ports {
110+
foundDuplicate := false
105111
for _, pp := range pps {
106112
if pp.Equals(otherPP) {
113+
foundDuplicate = true
107114
break
108115
}
116+
}
117+
if !foundDuplicate {
109118
pps = append(pps, otherPP)
110119
}
111120
}
@@ -126,6 +135,8 @@ func (s *SpecificPortMatcher) Combine(other *SpecificPortMatcher) *SpecificPortM
126135
ranges := append(s.PortRanges, other.PortRanges...)
127136
// TODO sort port ranges
128137

138+
logrus.Debugf("ports:\n%s\n", collectionsjson.MustMarshalToString(pps))
139+
129140
return &SpecificPortMatcher{Ports: pps, PortRanges: ranges}
130141
}
131142

pkg/matcher/simplifier.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
package matcher
22

33
import (
4+
"github.com/mattfenwick/collections/pkg/json"
45
"github.com/mattfenwick/collections/pkg/slice"
56
"github.com/pkg/errors"
7+
"github.com/sirupsen/logrus"
68
"golang.org/x/exp/maps"
79
)
810

@@ -35,6 +37,7 @@ func Simplify(matchers []PeerMatcher) []PeerMatcher {
3537
}
3638

3739
func simplifyPortsForAllPeers(matchers []*PortsForAllPeersMatcher) *PortsForAllPeersMatcher {
40+
logrus.Debugf("simplifyPortsForAllPeers:\n%s\n", json.MustMarshalToString(matchers))
3841
if len(matchers) == 0 {
3942
return nil
4043
}

pkg/matcher/simplifier_tests.go

+20-2
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,18 @@ func RunSimplifierTests() {
112112
})
113113

114114
Describe("Port Simplifier", func() {
115+
port99 := intstr.FromInt(99)
116+
port100 := intstr.FromInt(100)
117+
port999 := intstr.FromInt(999)
118+
115119
It("should combine matchers correctly", func() {
116-
port99 := intstr.FromInt(99)
117120
allPortsOnSctp := &PortProtocolMatcher{
118121
Port: nil,
119122
Protocol: v1.ProtocolSCTP,
120123
}
121124
port99OnUdp := &PortProtocolMatcher{
122125
Port: &port99,
123-
Protocol: v1.ProtocolSCTP,
126+
Protocol: v1.ProtocolSCTP, // TODO should this be udp?
124127
}
125128

126129
allMatcher := &AllPortMatcher{}
@@ -136,5 +139,20 @@ func RunSimplifierTests() {
136139
Expect(CombinePortMatchers(allPortsOnSctpMatcher, port99OnUdpMatcher)).To(Equal(combinedMatcher))
137140
Expect(CombinePortMatchers(port99OnUdpMatcher, allPortsOnSctpMatcher)).To(Equal(combinedMatcher))
138141
})
142+
143+
It("should combine matchers with multiple protocols correctly", func() {
144+
tcp100 := &PortProtocolMatcher{Port: &port100, Protocol: v1.ProtocolTCP}
145+
udp100 := &PortProtocolMatcher{Port: &port100, Protocol: v1.ProtocolUDP}
146+
tcp999 := &PortProtocolMatcher{Port: &port999, Protocol: v1.ProtocolTCP}
147+
udp999 := &PortProtocolMatcher{Port: &port999, Protocol: v1.ProtocolUDP}
148+
149+
matcher100 := &SpecificPortMatcher{Ports: []*PortProtocolMatcher{tcp100, udp100}}
150+
matcher999 := &SpecificPortMatcher{Ports: []*PortProtocolMatcher{tcp999, udp999}}
151+
152+
expected := &SpecificPortMatcher{Ports: []*PortProtocolMatcher{tcp100, udp100, tcp999, udp999}}
153+
154+
Expect(CombinePortMatchers(matcher999, matcher100)).To(Equal(expected))
155+
Expect(CombinePortMatchers(matcher100, matcher999)).To(Equal(expected))
156+
})
139157
})
140158
}

0 commit comments

Comments
 (0)