Skip to content

Commit 0c2fe9b

Browse files
committed
add test cases for default namespace labels
1 parent ec3aee4 commit 0c2fe9b

File tree

5 files changed

+43
-6
lines changed

5 files changed

+43
-6
lines changed

pkg/cli/generate.go

+10-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ import (
1313
"github.com/spf13/cobra"
1414
)
1515

16+
var (
17+
DefaultExcludeTags = []string{
18+
generator.TagMultiPeer,
19+
generator.TagUpstreamE2E,
20+
generator.TagExample,
21+
generator.TagEndPort,
22+
generator.TagNamespacesByDefaultLabel}
23+
)
24+
1625
type GenerateArgs struct {
1726
AllowDNS bool
1827
Noisy bool
@@ -67,7 +76,7 @@ func SetupGenerateCommand() *cobra.Command {
6776
command.Flags().IntVar(&args.JobTimeoutSeconds, "job-timeout-seconds", 10, "number of seconds to pass on to 'agnhost connect --timeout=%ds' flag")
6877

6978
command.Flags().StringSliceVar(&args.Include, "include", []string{}, "include tests with any of these tags; if empty, all tests will be included. Valid tags:\n"+strings.Join(generator.TagSlice, "\n"))
70-
command.Flags().StringSliceVar(&args.Exclude, "exclude", []string{generator.TagMultiPeer, generator.TagUpstreamE2E, generator.TagExample, generator.TagEndPort}, "exclude tests with any of these tags. See 'include' field for valid tags")
79+
command.Flags().StringSliceVar(&args.Exclude, "exclude", DefaultExcludeTags, "exclude tests with any of these tags. See 'include' field for valid tags")
7180

7281
command.Flags().BoolVar(&args.Mock, "mock", false, "if true, use a mock kube runner (i.e. don't actually run tests against kubernetes; instead, product fake results")
7382
command.Flags().BoolVar(&args.DryRun, "dry-run", false, "if true, don't actually do anything: just print out what would be done")

pkg/generator/constants.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package generator
22

33
import (
4+
"github.com/mattfenwick/cyclonus/pkg/kube"
45
v1 "k8s.io/api/core/v1"
56
. "k8s.io/api/networking/v1"
67
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -118,4 +119,5 @@ var (
118119
},
119120
},
120121
}
122+
nsZMatchDefaultLabelsSelector = &metav1.LabelSelector{MatchLabels: map[string]string{kube.DefaultNamespaceLabel: "z"}}
121123
)

pkg/generator/namespacecases.go

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package generator
2+
3+
import (
4+
networkingv1 "k8s.io/api/networking/v1"
5+
)
6+
7+
func (t *TestCaseGenerator) NamespaceTestCases() []*TestCase {
8+
peers := []networkingv1.NetworkPolicyPeer{{NamespaceSelector: nsZMatchDefaultLabelsSelector}}
9+
return []*TestCase{
10+
NewSingleStepTestCase("ingress: select namespace by default label",
11+
NewStringSet(TagNamespacesByDefaultLabel, TagIngress),
12+
ProbeAllAvailable,
13+
CreatePolicy(BuildPolicy(SetPeers(true, peers)).NetworkPolicy())),
14+
NewSingleStepTestCase("egress: select namespace by default label",
15+
NewStringSet(TagNamespacesByDefaultLabel, TagEgress),
16+
ProbeAllAvailable,
17+
CreatePolicy(BuildPolicy(SetPeers(false, peers)).NetworkPolicy())),
18+
}
19+
}

pkg/generator/tags.go

+7-5
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,12 @@ const (
5151
)
5252

5353
const (
54-
TagAllPods = "all-pods"
55-
TagPodsByLabel = "pods-by-label"
56-
TagAllNamespaces = "all-namespaces"
57-
TagNamespacesByLabel = "namespaces-by-label"
58-
TagPolicyNamespace = "policy-namespace"
54+
TagAllPods = "all-pods"
55+
TagPodsByLabel = "pods-by-label"
56+
TagAllNamespaces = "all-namespaces"
57+
TagNamespacesByLabel = "namespaces-by-label"
58+
TagPolicyNamespace = "policy-namespace"
59+
TagNamespacesByDefaultLabel = "namespaces-by-default-label"
5960
)
6061

6162
const (
@@ -118,6 +119,7 @@ var AllTags = map[string][]string{
118119
TagAllNamespaces,
119120
TagNamespacesByLabel,
120121
TagPolicyNamespace,
122+
TagNamespacesByDefaultLabel,
121123
},
122124
TagPeerIPBlock: {
123125
TagIPBlockNoExcept,

pkg/kube/constants.go

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package kube
2+
3+
const (
4+
DefaultNamespaceLabel = "kubernetes.io/metadata.name"
5+
)

0 commit comments

Comments
 (0)