Skip to content

Commit 78c5dd2

Browse files
committed
Add egress traffic conformance tests for SCTP protocol
This commit tests .Spec.Egress specifically. We test deny, allow and pass actions. We test SCTP protocol with and without port combination. TODO: In future add test for port range and named ports. Signed-off-by: Surya Seetharaman <[email protected]>
1 parent 92b94ba commit 78c5dd2

File tree

2 files changed

+204
-0
lines changed

2 files changed

+204
-0
lines changed
Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
/*
2+
Copyright 2022 The Kubernetes Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
package tests
18+
19+
import (
20+
"context"
21+
"testing"
22+
23+
"github.com/stretchr/testify/assert"
24+
v1 "k8s.io/api/core/v1"
25+
"k8s.io/kubernetes/test/e2e/framework"
26+
"sigs.k8s.io/controller-runtime/pkg/client"
27+
28+
"sigs.k8s.io/network-policy-api/apis/v1alpha1"
29+
"sigs.k8s.io/network-policy-api/conformance/utils/kubernetes"
30+
"sigs.k8s.io/network-policy-api/conformance/utils/suite"
31+
)
32+
33+
func init() {
34+
ConformanceTests = append(ConformanceTests,
35+
BaselineAdminNetworkPolicyEgressSCTP,
36+
)
37+
}
38+
39+
var BaselineAdminNetworkPolicyEgressSCTP = suite.ConformanceTest{
40+
ShortName: "BaselineAdminNetworkPolicyEgressSCTP",
41+
Description: "Tests support for egress traffic (SCTP protocol) using baseline admin network policy API based on a server and client model",
42+
Features: []suite.SupportedFeature{
43+
suite.SupportBaselineAdminNetworkPolicy,
44+
},
45+
Manifests: []string{"tests/baseline-admin-network-policy-core-egress-sctp-rules_base.yaml"},
46+
Test: func(t *testing.T, s *suite.ConformanceTestSuite) {
47+
48+
t.Run("Should support an 'allow-egress' policy for SCTP protocol; ensure rule ordering is respected", func(t *testing.T) {
49+
ctx, cancel := context.WithTimeout(context.Background(), s.TimeoutConfig.GetTimeout)
50+
defer cancel()
51+
// This test uses `default` BANP
52+
// harry-potter-0 is our server pod in gryffindor namespace
53+
clientPod := &v1.Pod{}
54+
err := s.Client.Get(ctx, client.ObjectKey{
55+
Namespace: "network-policy-conformance-gryffindor",
56+
Name: "harry-potter-0",
57+
}, clientPod)
58+
framework.ExpectNoError(err, "unable to fetch the server pod")
59+
// luna-lovegood-0 is our client pod in ravenclaw namespace
60+
// ensure egress is ALLOWED to gryffindor from ravenclaw
61+
// egressRule at index0 will take precedence over egressRule at index1; thus ALLOW takes precedence over DENY since rules are ordered
62+
success := kubernetes.PokeServer(t, "network-policy-conformance-ravenclaw", "luna-lovegood-0", "sctp",
63+
clientPod.Status.PodIP, int32(9003), s.TimeoutConfig.RequestTimeout, true)
64+
assert.Equal(t, true, success)
65+
// luna-lovegood-1 is our client pod in ravenclaw namespace
66+
success = kubernetes.PokeServer(t, "network-policy-conformance-ravenclaw", "luna-lovegood-1", "sctp",
67+
clientPod.Status.PodIP, int32(9005), s.TimeoutConfig.RequestTimeout, true)
68+
assert.Equal(t, true, success)
69+
})
70+
71+
t.Run("Should support an 'allow-egress' policy for SCTP protocol at the specified port", func(t *testing.T) {
72+
ctx, cancel := context.WithTimeout(context.Background(), s.TimeoutConfig.GetTimeout)
73+
defer cancel()
74+
// This test uses `default` BANP
75+
// cedric-diggory-1 is our server pod in hufflepuff namespace
76+
clientPod := &v1.Pod{}
77+
err := s.Client.Get(ctx, client.ObjectKey{
78+
Namespace: "network-policy-conformance-hufflepuff",
79+
Name: "cedric-diggory-1",
80+
}, clientPod)
81+
framework.ExpectNoError(err, "unable to fetch the server pod")
82+
// luna-lovegood-0 is our client pod in ravenclaw namespace
83+
// ensure egress is ALLOWED to hufflepuff from ravenclaw at port 9003; egressRule at index5
84+
success := kubernetes.PokeServer(t, "network-policy-conformance-ravenclaw", "luna-lovegood-0", "sctp",
85+
clientPod.Status.PodIP, int32(9003), s.TimeoutConfig.RequestTimeout, true)
86+
assert.Equal(t, true, success)
87+
// luna-lovegood-1 is our client pod in ravenclaw namespace
88+
// ensure egress is DENIED to hufflepuff from ravenclaw for rest of the traffic; egressRule at index6
89+
success = kubernetes.PokeServer(t, "network-policy-conformance-ravenclaw", "luna-lovegood-1", "sctp",
90+
clientPod.Status.PodIP, int32(9005), s.TimeoutConfig.RequestTimeout, false)
91+
assert.Equal(t, true, success)
92+
})
93+
94+
t.Run("Should support an 'deny-egress' policy for SCTP protocol; ensure rule ordering is respected", func(t *testing.T) {
95+
ctx, cancel := context.WithTimeout(context.Background(), s.TimeoutConfig.GetTimeout)
96+
defer cancel()
97+
// This test uses `default` BANP
98+
// harry-potter-0 is our server pod in gryffindor namespace
99+
clientPod := &v1.Pod{}
100+
err := s.Client.Get(ctx, client.ObjectKey{
101+
Namespace: "network-policy-conformance-gryffindor",
102+
Name: "harry-potter-1",
103+
}, clientPod)
104+
framework.ExpectNoError(err, "unable to fetch the server pod")
105+
banp := &v1alpha1.BaselineAdminNetworkPolicy{}
106+
err = s.Client.Get(ctx, client.ObjectKey{
107+
Name: "default",
108+
}, banp)
109+
framework.ExpectNoError(err, "unable to fetch the baseline admin network policy")
110+
// swap rules at index0 and index1
111+
allowRule := banp.DeepCopy().Spec.Egress[0]
112+
banp.Spec.Egress[0] = banp.DeepCopy().Spec.Egress[1]
113+
banp.Spec.Egress[1] = allowRule
114+
err = s.Client.Update(ctx, banp)
115+
framework.ExpectNoError(err, "unable to update the baseline admin network policy")
116+
// luna-lovegood-0 is our client pod in gryffindor namespace
117+
// ensure egress is DENIED to gryffindor from ravenclaw
118+
// egressRule at index0 will take precedence over egressRule at index1; thus DENY takes precedence over ALLOW since rules are ordered
119+
success := kubernetes.PokeServer(t, "network-policy-conformance-ravenclaw", "luna-lovegood-0", "sctp",
120+
clientPod.Status.PodIP, int32(9003), s.TimeoutConfig.RequestTimeout, false)
121+
assert.Equal(t, true, success)
122+
// luna-lovegood-1 is our client pod in ravenclaw namespace
123+
success = kubernetes.PokeServer(t, "network-policy-conformance-ravenclaw", "luna-lovegood-1", "sctp",
124+
clientPod.Status.PodIP, int32(9005), s.TimeoutConfig.RequestTimeout, false)
125+
assert.Equal(t, true, success)
126+
})
127+
128+
t.Run("Should support a 'deny-egress' policy for SCTP protocol at the specified port", func(t *testing.T) {
129+
ctx, cancel := context.WithTimeout(context.Background(), s.TimeoutConfig.GetTimeout)
130+
defer cancel()
131+
// This test uses `default` BANP
132+
// draco-malfoy-0 is our server pod in slytherin namespace
133+
clientPod := &v1.Pod{}
134+
err := s.Client.Get(ctx, client.ObjectKey{
135+
Namespace: "network-policy-conformance-slytherin",
136+
Name: "draco-malfoy-0",
137+
}, clientPod)
138+
framework.ExpectNoError(err, "unable to fetch the server pod")
139+
// luna-lovegood-0 is our client pod in ravenclaw namespace
140+
// ensure egress to slytherin is DENIED from ravenclaw at port 9003; egressRule at index3
141+
success := kubernetes.PokeServer(t, "network-policy-conformance-ravenclaw", "luna-lovegood-0", "sctp",
142+
clientPod.Status.PodIP, int32(9003), s.TimeoutConfig.RequestTimeout, false)
143+
assert.Equal(t, true, success)
144+
// luna-lovegood-1 is our client pod in ravenclaw namespace
145+
// ensure egress to slytherin is ALLOWED from ravenclaw for rest of the traffic; matches no rules hence allowed
146+
success = kubernetes.PokeServer(t, "network-policy-conformance-ravenclaw", "luna-lovegood-1", "sctp",
147+
clientPod.Status.PodIP, int32(9005), s.TimeoutConfig.RequestTimeout, true)
148+
assert.Equal(t, true, success)
149+
})
150+
},
151+
}
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
apiVersion: policy.networking.k8s.io/v1alpha1
2+
kind: BaselineAdminNetworkPolicy
3+
metadata:
4+
name: default
5+
spec:
6+
subject:
7+
namespaces:
8+
matchLabels:
9+
kubernetes.io/metadata.name: network-policy-conformance-ravenclaw
10+
egress:
11+
- name: "allow-to-gryffindor-everything"
12+
action: "Allow"
13+
to:
14+
- namespaces:
15+
namespaceSelector:
16+
matchLabels:
17+
kubernetes.io/metadata.name: network-policy-conformance-gryffindor
18+
- name: "deny-to-gryffindor-everything"
19+
action: "Deny"
20+
to:
21+
- namespaces:
22+
namespaceSelector:
23+
matchLabels:
24+
kubernetes.io/metadata.name: network-policy-conformance-gryffindor
25+
- name: "deny-to-slytherin-at-port-9003"
26+
action: "Deny"
27+
to:
28+
- namespaces:
29+
namespaceSelector:
30+
matchLabels:
31+
kubernetes.io/metadata.name: network-policy-conformance-slytherin
32+
ports:
33+
- portNumber:
34+
protocol: SCTP
35+
port: 9003
36+
- name: "allow-to-hufflepuff-at-port-9003"
37+
action: "Allow"
38+
to:
39+
- namespaces:
40+
namespaceSelector:
41+
matchLabels:
42+
kubernetes.io/metadata.name: network-policy-conformance-hufflepuff
43+
ports:
44+
- portNumber:
45+
protocol: SCTP
46+
port: 9003
47+
- name: "deny-to-hufflepuff-everything-else"
48+
action: "Deny"
49+
to:
50+
- namespaces:
51+
namespaceSelector:
52+
matchLabels:
53+
kubernetes.io/metadata.name: network-policy-conformance-hufflepuff

0 commit comments

Comments
 (0)