@@ -39,15 +39,15 @@ func TestPointValue(t *testing.T) {
39
39
// run through all combos of user strategy + seLinux strategy + priv
40
40
for userStrategy , userStrategyPoints := range userStrategies {
41
41
for seLinuxStrategy , seLinuxStrategyPoints := range seLinuxStrategies {
42
- expectedPoints := privilegedPoints + userStrategyPoints + seLinuxStrategyPoints
42
+ expectedPoints := 5000 + privilegedPoints + userStrategyPoints + seLinuxStrategyPoints
43
43
scc := newSCC (true , seLinuxStrategy , userStrategy )
44
44
actualPoints := pointValue (scc )
45
45
46
46
if actualPoints != expectedPoints {
47
47
t .Errorf ("privileged, user: %v, seLinux %v expected %d score but got %d" , userStrategy , seLinuxStrategy , expectedPoints , actualPoints )
48
48
}
49
49
50
- expectedPoints = userStrategyPoints + seLinuxStrategyPoints
50
+ expectedPoints = 5000 + userStrategyPoints + seLinuxStrategyPoints
51
51
scc = newSCC (false , seLinuxStrategy , userStrategy )
52
52
actualPoints = pointValue (scc )
53
53
@@ -57,12 +57,13 @@ func TestPointValue(t *testing.T) {
57
57
}
58
58
}
59
59
60
- // sanity check to ensure volume score is added (specific volumes scores are tested below
60
+ // sanity check to ensure volume and capabilities scores are added (specific volumes
61
+ // and capabilities scores are tested below
61
62
scc := newSCC (false , kapi .SELinuxStrategyMustRunAs , kapi .RunAsUserStrategyMustRunAs )
62
63
scc .Volumes = []kapi.FSType {kapi .FSTypeHostPath }
63
64
actualPoints := pointValue (scc )
64
- if actualPoints != 120000 { //10000 (SELinux) + 10000 (User) + 100000 (host path volume)
65
- t .Errorf ("volume score was not added to the scc point value correctly!" )
65
+ if actualPoints != 125000 { //10000 (SELinux) + 10000 (User) + 100000 (host path volume) + 5000 capabilities
66
+ t .Errorf ("volume score was not added to the scc point value correctly, got %d!" , actualPoints )
66
67
}
67
68
}
68
69
@@ -172,3 +173,76 @@ func TestVolumePointValue(t *testing.T) {
172
173
}
173
174
}
174
175
}
176
+
177
+ func TestCapabilitiesPointValue (t * testing.T ) {
178
+ newSCC := func (def []kapi.Capability , allow []kapi.Capability , drop []kapi.Capability ) * kapi.SecurityContextConstraints {
179
+ return & kapi.SecurityContextConstraints {
180
+ DefaultAddCapabilities : def ,
181
+ AllowedCapabilities : allow ,
182
+ RequiredDropCapabilities : drop ,
183
+ }
184
+ }
185
+
186
+ tests := map [string ]struct {
187
+ defaultAdd []kapi.Capability
188
+ allowed []kapi.Capability
189
+ requiredDrop []kapi.Capability
190
+ expectedPoints int
191
+ }{
192
+ "nothing specified" : {
193
+ defaultAdd : nil ,
194
+ allowed : nil ,
195
+ requiredDrop : nil ,
196
+ expectedPoints : 5000 ,
197
+ },
198
+ "default" : {
199
+ defaultAdd : []kapi.Capability {"KILL" , "MKNOD" },
200
+ allowed : nil ,
201
+ requiredDrop : nil ,
202
+ expectedPoints : 5600 ,
203
+ },
204
+ "allow" : {
205
+ defaultAdd : nil ,
206
+ allowed : []kapi.Capability {"KILL" , "MKNOD" },
207
+ requiredDrop : nil ,
208
+ expectedPoints : 5020 ,
209
+ },
210
+ "allow star" : {
211
+ defaultAdd : nil ,
212
+ allowed : []kapi.Capability {"*" },
213
+ requiredDrop : nil ,
214
+ expectedPoints : 9000 ,
215
+ },
216
+ "allow all" : {
217
+ defaultAdd : nil ,
218
+ allowed : []kapi.Capability {"ALL" },
219
+ requiredDrop : nil ,
220
+ expectedPoints : 9000 ,
221
+ },
222
+ "drop" : {
223
+ defaultAdd : nil ,
224
+ allowed : nil ,
225
+ requiredDrop : []kapi.Capability {"KILL" , "MKNOD" },
226
+ expectedPoints : 4900 ,
227
+ },
228
+ "drop all" : {
229
+ defaultAdd : nil ,
230
+ allowed : nil ,
231
+ requiredDrop : []kapi.Capability {"ALL" },
232
+ expectedPoints : 2000 ,
233
+ },
234
+ "mixture" : {
235
+ defaultAdd : []kapi.Capability {"SETUID" , "SETGID" },
236
+ allowed : []kapi.Capability {"*" },
237
+ requiredDrop : []kapi.Capability {"SYS_CHROOT" },
238
+ expectedPoints : 9550 ,
239
+ },
240
+ }
241
+ for k , v := range tests {
242
+ scc := newSCC (v .defaultAdd , v .allowed , v .requiredDrop )
243
+ actualPoints := capabilitiesPointValue (scc )
244
+ if actualPoints != v .expectedPoints {
245
+ t .Errorf ("%s expected %d capability score but got %d" , k , v .expectedPoints , actualPoints )
246
+ }
247
+ }
248
+ }
0 commit comments