@@ -112,15 +112,18 @@ func RunSimplifierTests() {
112
112
})
113
113
114
114
Describe ("Port Simplifier" , func () {
115
+ port99 := intstr .FromInt (99 )
116
+ port100 := intstr .FromInt (100 )
117
+ port999 := intstr .FromInt (999 )
118
+
115
119
It ("should combine matchers correctly" , func () {
116
- port99 := intstr .FromInt (99 )
117
120
allPortsOnSctp := & PortProtocolMatcher {
118
121
Port : nil ,
119
122
Protocol : v1 .ProtocolSCTP ,
120
123
}
121
124
port99OnUdp := & PortProtocolMatcher {
122
125
Port : & port99 ,
123
- Protocol : v1 .ProtocolSCTP ,
126
+ Protocol : v1 .ProtocolSCTP , // TODO should this be udp?
124
127
}
125
128
126
129
allMatcher := & AllPortMatcher {}
@@ -136,5 +139,20 @@ func RunSimplifierTests() {
136
139
Expect (CombinePortMatchers (allPortsOnSctpMatcher , port99OnUdpMatcher )).To (Equal (combinedMatcher ))
137
140
Expect (CombinePortMatchers (port99OnUdpMatcher , allPortsOnSctpMatcher )).To (Equal (combinedMatcher ))
138
141
})
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
+ })
139
157
})
140
158
}
0 commit comments