-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconsumer_controller_test.go
More file actions
148 lines (128 loc) · 4.93 KB
/
Copy pathconsumer_controller_test.go
File metadata and controls
148 lines (128 loc) · 4.93 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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 controller
import (
"context"
"testing"
"github.com/go-logr/logr"
"github.com/stretchr/testify/require"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
"sigs.k8s.io/controller-runtime/pkg/client/fake"
gatewayv1 "sigs.k8s.io/gateway-api/apis/v1"
"sigs.k8s.io/gateway-api/apis/v1beta1"
"github.com/apache/apisix-ingress-controller/api/v1alpha1"
"github.com/apache/apisix-ingress-controller/internal/provider"
)
const (
consumerNS = "team-a"
secretNS = "team-b"
)
func buildConsumerReconciler(t *testing.T, objs ...runtime.Object) *ConsumerReconciler {
t.Helper()
scheme := runtime.NewScheme()
require.NoError(t, clientgoscheme.AddToScheme(scheme))
require.NoError(t, v1alpha1.AddToScheme(scheme))
require.NoError(t, gatewayv1.Install(scheme))
require.NoError(t, v1beta1.Install(scheme))
cli := fake.NewClientBuilder().WithScheme(scheme).WithRuntimeObjects(objs...).Build()
return &ConsumerReconciler{Client: cli, Log: logr.Discard()}
}
func crossNamespaceConsumer() *v1alpha1.Consumer {
target := secretNS
return &v1alpha1.Consumer{
ObjectMeta: metav1.ObjectMeta{Name: "attacker", Namespace: consumerNS},
Spec: v1alpha1.ConsumerSpec{
Credentials: []v1alpha1.Credential{{
Name: "cred",
Type: "key-auth",
SecretRef: &v1alpha1.SecretReference{Name: "victim-secret", Namespace: &target},
}},
},
}
}
func victimSecret() *corev1.Secret {
return &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{Name: "victim-secret", Namespace: secretNS},
Data: map[string][]byte{"key": []byte("victim-key")},
}
}
func secretGrant() *v1beta1.ReferenceGrant {
return &v1beta1.ReferenceGrant{
ObjectMeta: metav1.ObjectMeta{Name: "allow-consumer", Namespace: secretNS},
Spec: v1beta1.ReferenceGrantSpec{
From: []v1beta1.ReferenceGrantFrom{{
Group: v1beta1.Group(v1alpha1.GroupVersion.Group),
Kind: "Consumer",
Namespace: consumerNS,
}},
To: []v1beta1.ReferenceGrantTo{{
Group: "",
Kind: "Secret",
}},
},
}
}
// Without a ReferenceGrant the cross-namespace secret must not be bound.
func TestProcessSpec_CrossNamespaceSecretRef_DeniedWithoutGrant(t *testing.T) {
SetEnableReferenceGrant(true)
defer SetEnableReferenceGrant(false)
r := buildConsumerReconciler(t, victimSecret())
consumer := crossNamespaceConsumer()
tctx := provider.NewDefaultTranslateContext(context.Background())
err := r.processSpec(context.Background(), tctx, consumer)
require.Error(t, err)
require.Empty(t, tctx.Secrets, "foreign secret must not be loaded without a ReferenceGrant")
}
// A matching ReferenceGrant permits the cross-namespace secret.
func TestProcessSpec_CrossNamespaceSecretRef_AllowedWithGrant(t *testing.T) {
SetEnableReferenceGrant(true)
defer SetEnableReferenceGrant(false)
r := buildConsumerReconciler(t, victimSecret(), secretGrant())
consumer := crossNamespaceConsumer()
tctx := provider.NewDefaultTranslateContext(context.Background())
err := r.processSpec(context.Background(), tctx, consumer)
require.NoError(t, err)
require.Contains(t, tctx.Secrets, types.NamespacedName{Namespace: secretNS, Name: "victim-secret"})
}
// Same-namespace SecretRef needs no grant.
func TestProcessSpec_SameNamespaceSecretRef_Allowed(t *testing.T) {
SetEnableReferenceGrant(true)
defer SetEnableReferenceGrant(false)
secret := &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{Name: "local-secret", Namespace: consumerNS},
Data: map[string][]byte{"key": []byte("local-key")},
}
r := buildConsumerReconciler(t, secret)
consumer := &v1alpha1.Consumer{
ObjectMeta: metav1.ObjectMeta{Name: "local", Namespace: consumerNS},
Spec: v1alpha1.ConsumerSpec{
Credentials: []v1alpha1.Credential{{
Name: "cred",
Type: "key-auth",
SecretRef: &v1alpha1.SecretReference{Name: "local-secret"},
}},
},
}
tctx := provider.NewDefaultTranslateContext(context.Background())
err := r.processSpec(context.Background(), tctx, consumer)
require.NoError(t, err)
require.Contains(t, tctx.Secrets, types.NamespacedName{Namespace: consumerNS, Name: "local-secret"})
}