@@ -265,19 +265,10 @@ func TestAdmitSuccess(t *testing.T) {
265
265
if i == 0 {
266
266
containers = v .pod .Spec .InitContainers
267
267
}
268
- attrs := kadmission .NewAttributesRecord (v .pod , nil , kapi .Kind ("Pod" ).WithVersion ("version" ), v .pod .Namespace , v .pod .Name , kapi .Resource ("pods" ).WithVersion ("version" ), "" , kadmission .Create , & user.DefaultInfo {})
269
- err := p .Admit (attrs )
270
-
271
- if err != nil {
272
- t .Fatalf ("%s expected no errors but received %v" , k , err )
273
- }
274
268
275
- validatedSCC , ok := v .pod .Annotations [allocator .ValidatedSCCAnnotation ]
276
- if ! ok {
277
- t .Errorf ("%s expected to find the validated annotation on the pod for the scc but found none" , k )
278
- }
279
- if validatedSCC != saSCC .Name {
280
- t .Errorf ("%s should have validated against %s but found %s" , k , saSCC .Name , validatedSCC )
269
+ hasErrors := testSCCAdmission (v .pod , p , saSCC .Name , k , t )
270
+ if hasErrors {
271
+ continue
281
272
}
282
273
283
274
if ! reflect .DeepEqual (v .expectedPodSC , v .pod .Spec .SecurityContext ) {
@@ -939,23 +930,25 @@ func TestAdmitSeccomp(t *testing.T) {
939
930
}
940
931
941
932
// testSCCAdmission is a helper to admit the pod and ensure it was validated against the expected
942
- // SCC.
943
- func testSCCAdmission (pod * kapi.Pod , plugin kadmission.Interface , expectedSCC , testName string , t * testing.T ) {
933
+ // SCC. Returns true when errors have been encountered.
934
+ func testSCCAdmission (pod * kapi.Pod , plugin kadmission.Interface , expectedSCC , testName string , t * testing.T ) bool {
944
935
attrs := kadmission .NewAttributesRecord (pod , nil , kapi .Kind ("Pod" ).WithVersion ("version" ), pod .Namespace , pod .Name , kapi .Resource ("pods" ).WithVersion ("version" ), "" , kadmission .Create , & user.DefaultInfo {})
945
936
err := plugin .Admit (attrs )
946
937
if err != nil {
947
938
t .Errorf ("%s error admitting pod: %v" , testName , err )
948
- return
939
+ return true
949
940
}
950
941
951
942
validatedSCC , ok := pod .Annotations [allocator .ValidatedSCCAnnotation ]
952
943
if ! ok {
953
944
t .Errorf ("expected %q to find the validated annotation on the pod for the scc but found none" , testName )
954
- return
945
+ return true
955
946
}
956
947
if validatedSCC != expectedSCC {
957
948
t .Errorf ("%q should have validated against %s but found %s" , testName , expectedSCC , validatedSCC )
949
+ return true
958
950
}
951
+ return false
959
952
}
960
953
961
954
func laxSCC () * securityapi.SecurityContextConstraints {
0 commit comments