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