File tree 4 files changed +26
-62
lines changed
networkpolicies/yaml-syntax
4 files changed +26
-62
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
+ kind : List
2
3
items :
3
4
- apiVersion : networking.k8s.io/v1
4
5
kind : NetworkPolicy
Original file line number Diff line number Diff line change @@ -28,17 +28,19 @@ func ReadNetworkPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPoli
28
28
return err
29
29
}
30
30
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)
38
33
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)
40
42
41
- // try parsing a list
43
+ // try parsing a NetworkPolicyList
42
44
policyList , err := utils.ParseYamlStrict [networkingv1.NetworkPolicyList ](bytes )
43
45
if err == nil {
44
46
allPolicies = append (allPolicies , refNetpolList (policyList .Items )... )
Original file line number Diff line number Diff line change @@ -17,15 +17,22 @@ func RunReadNetworkPolicyTests() {
17
17
Expect (err ).To (BeNil ())
18
18
Expect (len (policies )).To (Equal (3 ))
19
19
})
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
+
25
30
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 " )
27
32
Expect (err ).To (BeNil ())
28
- Expect (len (policies )).To (Equal (6 ))
33
+ Expect (len (policies )).To (Equal (7 ))
29
34
})
35
+
36
+ // TODO test to show what happens for duplicate names
30
37
})
31
38
}
You can’t perform that action at this time.
0 commit comments