forked from fabric8io/kubernetes-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
V1beta1SubjectAccessReviewAuthTest.java
209 lines (180 loc) · 8.6 KB
/
V1beta1SubjectAccessReviewAuthTest.java
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/**
* Copyright (C) 2015 Red Hat, Inc.
*
* 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 io.fabric8.kubernetes.client.mock;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.LocalSubjectAccessReview;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.LocalSubjectAccessReviewBuilder;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.NonResourceRule;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.NonResourceRuleBuilder;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.ResourceRule;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.ResourceRuleBuilder;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.SelfSubjectAccessReview;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.SelfSubjectAccessReviewBuilder;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.SelfSubjectRulesReview;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.SelfSubjectRulesReviewBuilder;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.SubjectAccessReview;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.SubjectAccessReviewBuilder;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.SubjectAccessReviewStatus;
import io.fabric8.kubernetes.api.model.authorization.v1beta1.SubjectRulesReviewStatusBuilder;
import io.fabric8.kubernetes.client.KubernetesClient;
import io.fabric8.kubernetes.client.server.mock.EnableKubernetesMockClient;
import io.fabric8.kubernetes.client.server.mock.KubernetesMockServer;
import io.fabric8.kubernetes.client.utils.Serialization;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import java.net.HttpURLConnection;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.List;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
@EnableKubernetesMockClient
class V1beta1SubjectAccessReviewAuthTest {
KubernetesMockServer server;
KubernetesClient client;
@Test
@DisplayName("Should Create SubjectAccessReview")
void createSubjectAccessReviewTest() {
// Given
SubjectAccessReview review = new SubjectAccessReviewBuilder()
.withNewSpec()
.withUser("admin-user")
.withNewResourceAttributes()
.withResource("pod")
.withVerb("create")
.endResourceAttributes()
.endSpec()
.build();
server.expect().post().withPath("/apis/authorization.k8s.io/v1beta1/subjectaccessreviews")
.andReply(HttpURLConnection.HTTP_OK, recordedRequest -> {
LocalSubjectAccessReview reviewResponse = Serialization.unmarshal(recordedRequest.getBody().readString(Charset.defaultCharset()), LocalSubjectAccessReview.class);
reviewResponse.setStatus(new SubjectAccessReviewStatus(true, false, "", ""));
return reviewResponse;
}).once();
// When
SubjectAccessReview reviewResponse = client.authorization().v1beta1().subjectAccessReview().create(review);
// Then
assertNotNull(reviewResponse);
assertEquals(true, reviewResponse.getStatus().getAllowed());
}
@Test
@DisplayName("Should Create LocalSubjectAccessReview")
void createLocalSubjectAccessReviewTest() {
// Given
LocalSubjectAccessReview review = new LocalSubjectAccessReviewBuilder().withNewSpec()
.withUser("admin-user")
.withNewResourceAttributes()
.withResource("pod")
.withNamespace("test")
.withVerb("create")
.endResourceAttributes()
.endSpec()
.build();
server.expect().post().withPath("/apis/authorization.k8s.io/v1beta1/namespaces/test/localsubjectaccessreviews")
.andReply(HttpURLConnection.HTTP_OK, recordedRequest -> {
LocalSubjectAccessReview reviewResponse = Serialization.unmarshal(recordedRequest.getBody().readString(Charset.defaultCharset()), LocalSubjectAccessReview.class);
reviewResponse.setStatus(new SubjectAccessReviewStatus(true, false, "", ""));
return reviewResponse;
}).once();
// When
LocalSubjectAccessReview reviewResponse = client.authorization().v1beta1()
.localSubjectAccessReview()
.inNamespace("test")
.create(review);
// Then
assertNotNull(reviewResponse);
assertEquals("test", reviewResponse.getSpec().getResourceAttributes().getNamespace());
assertTrue(reviewResponse.getStatus().getAllowed());
}
@Test
void testCreateSelfSubjectRulesReview() {
// Given
SelfSubjectRulesReview selfSubjectRulesReview = new SelfSubjectRulesReviewBuilder()
.withNewMetadata().withName("foo").endMetadata()
.withNewSpec()
.withNamespace("test")
.endSpec()
.build();
server.expect().post().withPath("/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews")
.andReply(HttpURLConnection.HTTP_OK, recordedRequest -> {
SelfSubjectRulesReview reviewResponse = Serialization.unmarshal(recordedRequest.getBody().readString(Charset.defaultCharset()), SelfSubjectRulesReview.class);
List<NonResourceRule> nonResourceRuleList = new ArrayList<>();
nonResourceRuleList.add(new NonResourceRuleBuilder().withNonResourceURLs("*").withVerbs("*").build());
nonResourceRuleList.add(new NonResourceRuleBuilder()
.withNonResourceURLs("/healthz", "/livez", "/readyz", "/version", "/version/")
.withVerbs("get")
.build());
nonResourceRuleList.add(new NonResourceRuleBuilder()
.withNonResourceURLs("/api", "/api/*", "/apis", "/apis/*", "/healthz", "/livez", "/openapi", "/openapi/*", "/readyz", "/version", "/version/")
.withVerbs("get")
.build());
List<ResourceRule> resourceRuleList = new ArrayList<>();
resourceRuleList.add(new ResourceRuleBuilder().withApiGroups("*").withResources("*").withVerbs("*").build());
resourceRuleList.add(new ResourceRuleBuilder()
.withApiGroups("authorization.k8s.io")
.withResources("selfsubjectaccessreviews", "selfsubjectrulesreviews")
.withVerbs("create")
.build());
reviewResponse.setStatus(new SubjectRulesReviewStatusBuilder()
.withIncomplete(false)
.withNonResourceRules(nonResourceRuleList)
.withResourceRules(resourceRuleList)
.build());
return reviewResponse;
}).once();
// When
SelfSubjectRulesReview reviewResponse = client.authorization().v1beta1()
.selfSubjectRulesReview()
.create(selfSubjectRulesReview);
// Then
assertNotNull(reviewResponse);
assertEquals("test", reviewResponse.getSpec().getNamespace());
assertNotNull(reviewResponse.getStatus());
assertFalse(reviewResponse.getStatus().getIncomplete());
assertEquals(3, reviewResponse.getStatus().getNonResourceRules().size());
assertEquals(2, reviewResponse.getStatus().getResourceRules().size());
}
@Test
@DisplayName("Create SelfSubjectAccessReview")
void testCreateSelfAccessRulesReview() {
// Given
SelfSubjectAccessReview ssar = new SelfSubjectAccessReviewBuilder()
.withNewSpec()
.withNewResourceAttributes()
.withGroup("apps")
.withResource("deployments")
.withVerb("create")
.withNamespace("test")
.endResourceAttributes()
.endSpec()
.build();
server.expect().post().withPath("/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews")
.andReply(HttpURLConnection.HTTP_OK, recordedRequest -> {
SelfSubjectAccessReview reviewResponse = Serialization.unmarshal(recordedRequest.getBody().readString(Charset.defaultCharset()), SelfSubjectAccessReview.class);
reviewResponse.setStatus(new SubjectAccessReviewStatus(true, false, "", ""));
return reviewResponse;
}).once();
// When
SelfSubjectAccessReview reviewResponse = client.authorization().v1beta1()
.selfSubjectAccessReview()
.create(ssar);
// Then
assertNotNull(reviewResponse);
assertEquals("test", reviewResponse.getSpec().getResourceAttributes().getNamespace());
assertTrue(reviewResponse.getStatus().getAllowed());
}
}