@@ -550,29 +550,31 @@ func TestValidateLocalVolumesDisabled(t *testing.T) {
550
550
},
551
551
}
552
552
553
- utilfeature .DefaultFeatureGate .Set ("PersistentLocalVolumes=false" )
554
553
for name , scenario := range scenarios {
555
- errs := ValidatePersistentVolume (scenario .volume )
556
- if len (errs ) == 0 && scenario .isExpectedFailure {
557
- t .Errorf ("Unexpected success for scenario: %s" , name )
558
- }
559
- if len (errs ) > 0 && ! scenario .isExpectedFailure {
560
- t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
561
- }
554
+ t .Run (name + " PersistentLocalVolumes disabled" , func (t * testing.T ) {
555
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .PersistentLocalVolumes , false )()
556
+ errs := ValidatePersistentVolume (scenario .volume )
557
+ if len (errs ) == 0 && scenario .isExpectedFailure {
558
+ t .Errorf ("Unexpected success for scenario: %s" , name )
559
+ }
560
+ if len (errs ) > 0 && ! scenario .isExpectedFailure {
561
+ t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
562
+ }
563
+ })
562
564
}
563
- utilfeature .DefaultFeatureGate .Set ("PersistentLocalVolumes=true" )
564
565
565
- utilfeature .DefaultFeatureGate .Set ("VolumeScheduling=false" )
566
566
for name , scenario := range scenarios {
567
- errs := ValidatePersistentVolume (scenario .volume )
568
- if len (errs ) == 0 && scenario .isExpectedFailure {
569
- t .Errorf ("Unexpected success for scenario: %s" , name )
570
- }
571
- if len (errs ) > 0 && ! scenario .isExpectedFailure {
572
- t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
573
- }
567
+ t .Run (name + " VolumeScheduling disabled" , func (t * testing.T ) {
568
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .VolumeScheduling , false )()
569
+ errs := ValidatePersistentVolume (scenario .volume )
570
+ if len (errs ) == 0 && scenario .isExpectedFailure {
571
+ t .Errorf ("Unexpected success for scenario: %s" , name )
572
+ }
573
+ if len (errs ) > 0 && ! scenario .isExpectedFailure {
574
+ t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
575
+ }
576
+ })
574
577
}
575
- utilfeature .DefaultFeatureGate .Set ("VolumeScheduling=true" )
576
578
}
577
579
578
580
func testVolumeWithNodeAffinity (affinity * core.VolumeNodeAffinity ) * core.PersistentVolume {
@@ -1911,11 +1913,7 @@ func TestValidateCSIVolumeSource(t *testing.T) {
1911
1913
},
1912
1914
}
1913
1915
1914
- err := utilfeature .DefaultFeatureGate .Set ("CSIPersistentVolume=true" )
1915
- if err != nil {
1916
- t .Errorf ("Failed to enable feature gate for CSIPersistentVolumes: %v" , err )
1917
- return
1918
- }
1916
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .CSIPersistentVolume , true )()
1919
1917
1920
1918
for i , tc := range testCases {
1921
1919
errs := validateCSIPersistentVolumeSource (tc .csi , field .NewPath ("field" ))
@@ -1932,11 +1930,6 @@ func TestValidateCSIVolumeSource(t *testing.T) {
1932
1930
}
1933
1931
}
1934
1932
}
1935
- err = utilfeature .DefaultFeatureGate .Set ("CSIPersistentVolume=false" )
1936
- if err != nil {
1937
- t .Errorf ("Failed to disable feature gate for CSIPersistentVolumes: %v" , err )
1938
- return
1939
- }
1940
1933
}
1941
1934
1942
1935
// This test is a little too top-to-bottom. Ideally we would test each volume
@@ -3750,20 +3743,14 @@ func TestValidateVolumes(t *testing.T) {
3750
3743
// Validate HugePages medium type for EmptyDir when HugePages feature is enabled/disabled
3751
3744
hugePagesCase := core.VolumeSource {EmptyDir : & core.EmptyDirVolumeSource {Medium : core .StorageMediumHugePages }}
3752
3745
3753
- // Enable alpha feature HugePages
3754
- err := utilfeature .DefaultFeatureGate .Set ("HugePages=true" )
3755
- if err != nil {
3756
- t .Errorf ("Failed to enable feature gate for HugePages: %v" , err )
3757
- }
3746
+ // Enable HugePages
3747
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .HugePages , true )()
3758
3748
if errs := validateVolumeSource (& hugePagesCase , field .NewPath ("field" ).Index (0 ), "working" ); len (errs ) != 0 {
3759
3749
t .Errorf ("Unexpected error when HugePages feature is enabled." )
3760
3750
}
3761
3751
3762
- // Disable alpha feature HugePages
3763
- err = utilfeature .DefaultFeatureGate .Set ("HugePages=false" )
3764
- if err != nil {
3765
- t .Errorf ("Failed to disable feature gate for HugePages: %v" , err )
3766
- }
3752
+ // Disable feature HugePages
3753
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .HugePages , false )()
3767
3754
if errs := validateVolumeSource (& hugePagesCase , field .NewPath ("field" ).Index (0 ), "failing" ); len (errs ) == 0 {
3768
3755
t .Errorf ("Expected error when HugePages feature is disabled got nothing." )
3769
3756
}
@@ -3868,12 +3855,8 @@ func TestAlphaHugePagesIsolation(t *testing.T) {
3868
3855
},
3869
3856
},
3870
3857
}
3871
- // Enable alpha feature HugePages
3872
- err := utilfeature .DefaultFeatureGate .Set ("HugePages=true" )
3873
- if err != nil {
3874
- t .Errorf ("Failed to enable feature gate for HugePages: %v" , err )
3875
- return
3876
- }
3858
+ // Enable feature HugePages
3859
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .HugePages , true )()
3877
3860
for i := range successCases {
3878
3861
pod := & successCases [i ]
3879
3862
if errs := ValidatePod (pod ); len (errs ) != 0 {
@@ -3886,13 +3869,9 @@ func TestAlphaHugePagesIsolation(t *testing.T) {
3886
3869
t .Errorf ("Expected error for case[%d], pod: %v" , i , pod .Name )
3887
3870
}
3888
3871
}
3889
- // Disable alpha feature HugePages
3890
- err = utilfeature .DefaultFeatureGate .Set ("HugePages=false" )
3891
- if err != nil {
3892
- t .Errorf ("Failed to disable feature gate for HugePages: %v" , err )
3893
- return
3894
- }
3895
- // Disable alpha feature HugePages and ensure all success cases fail
3872
+ // Disable feature HugePages
3873
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .HugePages , false )()
3874
+ // Disable feature HugePages and ensure all success cases fail
3896
3875
for i := range successCases {
3897
3876
pod := & successCases [i ]
3898
3877
if errs := ValidatePod (pod ); len (errs ) == 0 {
@@ -4053,23 +4032,15 @@ func TestAlphaLocalStorageCapacityIsolation(t *testing.T) {
4053
4032
testCases := []core.VolumeSource {
4054
4033
{EmptyDir : & core.EmptyDirVolumeSource {SizeLimit : resource .NewQuantity (int64 (5 ), resource .BinarySI )}},
4055
4034
}
4056
- // Enable alpha feature LocalStorageCapacityIsolation
4057
- err := utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=true" )
4058
- if err != nil {
4059
- t .Errorf ("Failed to enable feature gate for LocalStorageCapacityIsolation: %v" , err )
4060
- return
4061
- }
4035
+ // Enable feature LocalStorageCapacityIsolation
4036
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , true )()
4062
4037
for _ , tc := range testCases {
4063
4038
if errs := validateVolumeSource (& tc , field .NewPath ("spec" ), "tmpvol" ); len (errs ) != 0 {
4064
4039
t .Errorf ("expected success: %v" , errs )
4065
4040
}
4066
4041
}
4067
- // Disable alpha feature LocalStorageCapacityIsolation
4068
- err = utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=false" )
4069
- if err != nil {
4070
- t .Errorf ("Failed to disable feature gate for LocalStorageCapacityIsolation: %v" , err )
4071
- return
4072
- }
4042
+ // Disable feature LocalStorageCapacityIsolation
4043
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , false )()
4073
4044
for _ , tc := range testCases {
4074
4045
if errs := validateVolumeSource (& tc , field .NewPath ("spec" ), "tmpvol" ); len (errs ) == 0 {
4075
4046
t .Errorf ("expected failure: %v" , errs )
@@ -4083,21 +4054,13 @@ func TestAlphaLocalStorageCapacityIsolation(t *testing.T) {
4083
4054
resource .BinarySI ),
4084
4055
},
4085
4056
}
4086
- // Enable alpha feature LocalStorageCapacityIsolation
4087
- err = utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=true" )
4088
- if err != nil {
4089
- t .Errorf ("Failed to enable feature gate for LocalStorageCapacityIsolation: %v" , err )
4090
- return
4091
- }
4057
+ // Enable feature LocalStorageCapacityIsolation
4058
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , true )()
4092
4059
if errs := ValidateResourceRequirements (& containerLimitCase , field .NewPath ("resources" )); len (errs ) != 0 {
4093
4060
t .Errorf ("expected success: %v" , errs )
4094
4061
}
4095
- // Disable alpha feature LocalStorageCapacityIsolation
4096
- err = utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=false" )
4097
- if err != nil {
4098
- t .Errorf ("Failed to disable feature gate for LocalStorageCapacityIsolation: %v" , err )
4099
- return
4100
- }
4062
+ // Disable feature LocalStorageCapacityIsolation
4063
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , false )()
4101
4064
if errs := ValidateResourceRequirements (& containerLimitCase , field .NewPath ("resources" )); len (errs ) == 0 {
4102
4065
t .Errorf ("expected failure: %v" , errs )
4103
4066
}
@@ -4132,22 +4095,14 @@ func TestValidateResourceQuotaWithAlphaLocalStorageCapacityIsolation(t *testing.
4132
4095
Spec : spec ,
4133
4096
}
4134
4097
4135
- // Enable alpha feature LocalStorageCapacityIsolation
4136
- err := utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=true" )
4137
- if err != nil {
4138
- t .Errorf ("Failed to enable feature gate for LocalStorageCapacityIsolation: %v" , err )
4139
- return
4140
- }
4098
+ // Enable feature LocalStorageCapacityIsolation
4099
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , true )()
4141
4100
if errs := ValidateResourceQuota (resourceQuota ); len (errs ) != 0 {
4142
4101
t .Errorf ("expected success: %v" , errs )
4143
4102
}
4144
4103
4145
- // Disable alpha feature LocalStorageCapacityIsolation
4146
- err = utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=false" )
4147
- if err != nil {
4148
- t .Errorf ("Failed to disable feature gate for LocalStorageCapacityIsolation: %v" , err )
4149
- return
4150
- }
4104
+ // Disable feature LocalStorageCapacityIsolation
4105
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , false )()
4151
4106
errs := ValidateResourceQuota (resourceQuota )
4152
4107
if len (errs ) == 0 {
4153
4108
t .Errorf ("expected failure for %s" , resourceQuota .Name )
@@ -4280,24 +4235,16 @@ func TestLocalStorageEnvWithFeatureGate(t *testing.T) {
4280
4235
},
4281
4236
},
4282
4237
}
4283
- // Enable alpha feature LocalStorageCapacityIsolation
4284
- err := utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=true" )
4285
- if err != nil {
4286
- t .Errorf ("Failed to enable feature gate for LocalStorageCapacityIsolation: %v" , err )
4287
- return
4288
- }
4238
+ // Enable feature LocalStorageCapacityIsolation
4239
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , true )()
4289
4240
for _ , testCase := range testCases {
4290
4241
if errs := validateEnvVarValueFrom (testCase , field .NewPath ("field" )); len (errs ) != 0 {
4291
4242
t .Errorf ("expected success, got: %v" , errs )
4292
4243
}
4293
4244
}
4294
4245
4295
- // Disable alpha feature LocalStorageCapacityIsolation
4296
- err = utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=false" )
4297
- if err != nil {
4298
- t .Errorf ("Failed to disable feature gate for LocalStorageCapacityIsolation: %v" , err )
4299
- return
4300
- }
4246
+ // Disable feature LocalStorageCapacityIsolation
4247
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , false )()
4301
4248
for _ , testCase := range testCases {
4302
4249
if errs := validateEnvVarValueFrom (testCase , field .NewPath ("field" )); len (errs ) == 0 {
4303
4250
t .Errorf ("expected failure for %v" , testCase .Name )
@@ -11187,26 +11134,17 @@ func TestValidateLimitRangeForLocalStorage(t *testing.T) {
11187
11134
},
11188
11135
}
11189
11136
11190
- // Enable alpha feature LocalStorageCapacityIsolation
11191
- err := utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=true" )
11192
- if err != nil {
11193
- t .Errorf ("Failed to enable feature gate for LocalStorageCapacityIsolation: %v" , err )
11194
- return
11195
- }
11196
-
11137
+ // Enable feature LocalStorageCapacityIsolation
11138
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , true )()
11197
11139
for _ , testCase := range testCases {
11198
11140
limitRange := & core.LimitRange {ObjectMeta : metav1.ObjectMeta {Name : testCase .name , Namespace : "foo" }, Spec : testCase .spec }
11199
11141
if errs := ValidateLimitRange (limitRange ); len (errs ) != 0 {
11200
11142
t .Errorf ("Case %v, unexpected error: %v" , testCase .name , errs )
11201
11143
}
11202
11144
}
11203
11145
11204
- // Disable alpha feature LocalStorageCapacityIsolation
11205
- err = utilfeature .DefaultFeatureGate .Set ("LocalStorageCapacityIsolation=false" )
11206
- if err != nil {
11207
- t .Errorf ("Failed to disable feature gate for LocalStorageCapacityIsolation: %v" , err )
11208
- return
11209
- }
11146
+ // Disable feature LocalStorageCapacityIsolation
11147
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .LocalStorageCapacityIsolation , false )()
11210
11148
for _ , testCase := range testCases {
11211
11149
limitRange := & core.LimitRange {ObjectMeta : metav1.ObjectMeta {Name : testCase .name , Namespace : "foo" }, Spec : testCase .spec }
11212
11150
if errs := ValidateLimitRange (limitRange ); len (errs ) == 0 {
@@ -11746,13 +11684,13 @@ func TestValidateResourceQuota(t *testing.T) {
11746
11684
Spec : nonBestEffortSpec ,
11747
11685
},
11748
11686
}
11749
- utilfeature .DefaultFeatureGate . Set ( " ResourceQuotaScopeSelectors= true" )
11687
+ defer utilfeaturetesting . SetFeatureGateDuringTest ( t , utilfeature .DefaultFeatureGate , features . ResourceQuotaScopeSelectors , true )( )
11750
11688
for _ , successCase := range successCases {
11751
11689
if errs := ValidateResourceQuota (& successCase ); len (errs ) != 0 {
11752
11690
t .Errorf ("expected success: %v" , errs )
11753
11691
}
11754
11692
}
11755
- utilfeature .DefaultFeatureGate . Set ( " ResourceQuotaScopeSelectors= false" )
11693
+ defer utilfeaturetesting . SetFeatureGateDuringTest ( t , utilfeature .DefaultFeatureGate , features . ResourceQuotaScopeSelectors , false )( )
11756
11694
11757
11695
errorCases := map [string ]struct {
11758
11696
R core.ResourceQuota
0 commit comments