-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathacl_test.go
More file actions
152 lines (136 loc) · 4.35 KB
/
acl_test.go
File metadata and controls
152 lines (136 loc) · 4.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
Copyright 2021 The Flux authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package acl
import (
"fmt"
"testing"
. "github.com/onsi/gomega"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
ctrl "sigs.k8s.io/controller-runtime"
"github.com/fluxcd/pkg/apis/acl"
"github.com/fluxcd/pkg/runtime/testenv"
)
func TestAclAuthorization(t *testing.T) {
ctx := ctrl.SetupSignalHandler()
testEnv := testenv.New()
go func() {
if err := testEnv.Start(ctx); err != nil {
panic(fmt.Sprintf("Failed to start the testenv: %v", err))
}
}()
<-testEnv.Manager.Elected()
defer testEnv.Stop()
aclAuth := NewAuthorization(testEnv.Client)
tests := []struct {
name string
namespace *corev1.Namespace
object *corev1.ConfigMap
reference types.NamespacedName
referenceAcl *acl.AccessFrom
wantErr bool
}{
{
name: "When in same namespace it ignores the ACL and grands access",
object: getObject("test1", "test1"),
reference: getReference("test1", "test1"),
namespace: getNamespaceWithLabels("test1", map[string]string{"tenant": "a"}),
referenceAcl: getReferenceAcl(map[string]string{"tenant": "b"}),
wantErr: false,
},
{
name: "When in different namespace with nil ACL it denies access",
object: getObject("test2", "test2"),
reference: getReference("test2", "default"),
namespace: getNamespaceWithLabels("test2", nil),
referenceAcl: nil,
wantErr: true,
},
{
name: "When in different namespace with empty ACL it denies access",
object: getObject("test3", "test3"),
reference: getReference("test3", "default"),
namespace: getNamespaceWithLabels("test3", nil),
referenceAcl: &acl.AccessFrom{},
wantErr: true,
},
{
name: "When in different namespace with empty match labels it grants access",
object: getObject("test4", "test4"),
reference: getReference("test4", "default"),
namespace: getNamespaceWithLabels("test4", nil),
referenceAcl: getReferenceAcl(nil),
wantErr: false,
},
{
name: "When in different namespace with matching labels it grands access",
object: getObject("test5", "test5"),
reference: getReference("test5", "default"),
namespace: getNamespaceWithLabels("test5", map[string]string{"tenant": "a"}),
referenceAcl: getReferenceAcl(map[string]string{"tenant": "a"}),
wantErr: false,
},
{
name: "When in different namespace with mismatching labels it denies access",
object: getObject("test6", "test6"),
reference: getReference("test6", "default"),
namespace: getNamespaceWithLabels("test6", map[string]string{"tenant": "a"}),
referenceAcl: getReferenceAcl(map[string]string{"tenant": "b"}),
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
g := NewWithT(t)
g.Expect(testEnv.CreateAndWait(ctx, tt.namespace)).ToNot(HaveOccurred())
err := aclAuth.HasAccessToRef(ctx, tt.object, tt.reference, tt.referenceAcl)
if tt.wantErr {
g.Expect(IsAccessDenied(err)).To(BeTrue())
return
}
g.Expect(err).ToNot(HaveOccurred())
})
}
}
func getNamespaceWithLabels(name string, labels map[string]string) *corev1.Namespace {
return &corev1.Namespace{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Labels: labels,
},
}
}
func getObject(name, namespace string) *corev1.ConfigMap {
return &corev1.ConfigMap{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: namespace,
},
}
}
func getReference(name, namespace string) types.NamespacedName {
return types.NamespacedName{
Namespace: namespace,
Name: name,
}
}
func getReferenceAcl(labels map[string]string) *acl.AccessFrom {
return &acl.AccessFrom{
NamespaceSelectors: []acl.NamespaceSelector{
{
MatchLabels: labels,
},
},
}
}