Skip to content

Commit c4fb106

Browse files
committed
fix read tests, note todos
1 parent eab19b5 commit c4fb106

File tree

4 files changed

+26
-62
lines changed

4 files changed

+26
-62
lines changed

networkpolicies/yaml-syntax/triple-dash-separated.yaml

-46
This file was deleted.

networkpolicies/yaml-syntax/yaml-list.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apiVersion: v1
2+
kind: List
23
items:
34
- apiVersion: networking.k8s.io/v1
45
kind: NetworkPolicy

pkg/kube/read.go

+11-9
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,19 @@ func ReadNetworkPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPoli
2828
return err
2929
}
3030

31-
// try parsing multiple policies separated by '---' lines
32-
policies, err := utils.ParseYaml[[]*networkingv1.NetworkPolicy](bytes)
33-
if err == nil {
34-
log.Debugf("parsed %d policies from %s", len(*policies), path)
35-
allPolicies = append(allPolicies, *policies...)
36-
return nil
37-
}
31+
// TODO try parsing plain yaml list (that is: not a NetworkPolicyList)
32+
// policies, err := utils.ParseYaml[[]*networkingv1.NetworkPolicy](bytes)
3833

39-
log.Debugf("unable to parse multiple policies separated by '---' lines: %+v", err)
34+
// TODO try parsing multiple policies separated by '---' lines
35+
// policies, err := yaml.ParseMany[networkingv1.NetworkPolicy](bytes)
36+
// if err == nil {
37+
// log.Debugf("parsed %d policies from %s", len(policies), path)
38+
// allPolicies = append(allPolicies, refNetpolList(policies)...)
39+
// return nil
40+
// }
41+
// log.Errorf("unable to parse multiple policies separated by '---' lines: %+v", err)
4042

41-
// try parsing a list
43+
// try parsing a NetworkPolicyList
4244
policyList, err := utils.ParseYamlStrict[networkingv1.NetworkPolicyList](bytes)
4345
if err == nil {
4446
allPolicies = append(allPolicies, refNetpolList(policyList.Items)...)

pkg/kube/read_tests.go

+14-7
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,22 @@ func RunReadNetworkPolicyTests() {
1717
Expect(err).To(BeNil())
1818
Expect(len(policies)).To(Equal(3))
1919
})
20-
It("Should read multiple policies separated by '---' lines from a single file", func() {
21-
policies, err := ReadNetworkPoliciesFromPath("../../networkpolicies/yaml-syntax/triple-dash-separated.yaml")
22-
Expect(err).To(BeNil())
23-
Expect(len(policies)).To(Equal(3))
24-
})
20+
21+
// TODO test case to read multiple policies from plain yaml list
22+
23+
// TODO
24+
// It("Should read multiple policies separated by '---' lines from a single file", func() {
25+
// policies, err := ReadNetworkPoliciesFromPath("../../networkpolicies/yaml-syntax/triple-dash-separated.yaml")
26+
// Expect(err).To(BeNil())
27+
// Expect(len(policies)).To(Equal(3))
28+
// })
29+
2530
It("Should read multiple policies from all files in a directory", func() {
26-
policies, err := ReadNetworkPoliciesFromPath("../../networkpolicies/yaml-syntax")
31+
policies, err := ReadNetworkPoliciesFromPath("../../networkpolicies/simple-example")
2732
Expect(err).To(BeNil())
28-
Expect(len(policies)).To(Equal(6))
33+
Expect(len(policies)).To(Equal(7))
2934
})
35+
36+
// TODO test to show what happens for duplicate names
3037
})
3138
}

0 commit comments

Comments
 (0)