@@ -417,11 +417,10 @@ func TestAdmitFailure(t *testing.T) {
417
417
Groups : []string {"system:serviceaccounts" },
418
418
}
419
419
420
- indexer := cache .NewIndexer (cache .MetaNamespaceKeyFunc , cache.Indexers {cache .NamespaceIndex : cache .MetaNamespaceIndexFunc })
421
- lister := securitylisters .NewSecurityContextConstraintsLister (indexer )
422
-
423
- indexer .Add (saExactSCC )
424
- indexer .Add (saSCC )
420
+ lister , indexer := createSCCListerAndIndexer (t , []* securityapi.SecurityContextConstraints {
421
+ saExactSCC ,
422
+ saSCC ,
423
+ })
425
424
426
425
// create the admission plugin
427
426
p := NewTestAdmission (lister , tc )
@@ -1169,13 +1168,18 @@ func setupClientSet() *clientsetfake.Clientset {
1169
1168
return clientsetfake .NewSimpleClientset (namespace , serviceAccount )
1170
1169
}
1171
1170
1172
- func createSCCLister (t * testing.T , sccs []* securityapi.SecurityContextConstraints ) securitylisters.SecurityContextConstraintsLister {
1171
+ func createSCCListerAndIndexer (t * testing.T , sccs []* securityapi.SecurityContextConstraints ) ( securitylisters.SecurityContextConstraintsLister , cache. Indexer ) {
1173
1172
indexer := cache .NewIndexer (cache .MetaNamespaceKeyFunc , cache.Indexers {cache .NamespaceIndex : cache .MetaNamespaceIndexFunc })
1174
1173
lister := securitylisters .NewSecurityContextConstraintsLister (indexer )
1175
1174
for _ , scc := range sccs {
1176
1175
if err := indexer .Add (scc ); err != nil {
1177
1176
t .Fatalf ("error adding SCC to store: %v" , err )
1178
1177
}
1179
1178
}
1179
+ return lister , indexer
1180
+ }
1181
+
1182
+ func createSCCLister (t * testing.T , sccs []* securityapi.SecurityContextConstraints ) securitylisters.SecurityContextConstraintsLister {
1183
+ lister , _ := createSCCListerAndIndexer (t , sccs )
1180
1184
return lister
1181
1185
}
0 commit comments