@@ -68,9 +68,9 @@ func TestValidatePersistentVolumes(t *testing.T) {
68
68
validMode := core .PersistentVolumeFilesystem
69
69
invalidMode := core .PersistentVolumeMode ("fakeVolumeMode" )
70
70
scenarios := map [string ]struct {
71
- isExpectedFailure bool
72
- volume * core.PersistentVolume
73
- disableBlockVolume bool
71
+ isExpectedFailure bool
72
+ volume * core.PersistentVolume
73
+ disableBlock bool
74
74
}{
75
75
"good-volume" : {
76
76
isExpectedFailure : false ,
@@ -371,8 +371,8 @@ func TestValidatePersistentVolumes(t *testing.T) {
371
371
}),
372
372
},
373
373
"feature disabled valid volume mode" : {
374
- disableBlockVolume : true ,
375
- isExpectedFailure : true ,
374
+ disableBlock : true ,
375
+ isExpectedFailure : true ,
376
376
volume : testVolume ("foo" , "" , core.PersistentVolumeSpec {
377
377
Capacity : core.ResourceList {
378
378
core .ResourceName (core .ResourceStorage ): resource .MustParse ("10G" ),
@@ -433,20 +433,16 @@ func TestValidatePersistentVolumes(t *testing.T) {
433
433
}
434
434
435
435
for name , scenario := range scenarios {
436
- var restore func ()
437
- if scenario .disableBlockVolume {
438
- restore = utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , false )
439
- }
440
- errs := ValidatePersistentVolume (scenario .volume )
441
- if len (errs ) == 0 && scenario .isExpectedFailure {
442
- t .Errorf ("Unexpected success for scenario: %s" , name )
443
- }
444
- if len (errs ) > 0 && ! scenario .isExpectedFailure {
445
- t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
446
- }
447
- if scenario .disableBlockVolume {
448
- restore ()
449
- }
436
+ t .Run (name , func (t * testing.T ) {
437
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , ! scenario .disableBlock )()
438
+ errs := ValidatePersistentVolume (scenario .volume )
439
+ if len (errs ) == 0 && scenario .isExpectedFailure {
440
+ t .Errorf ("Unexpected success for scenario: %s" , name )
441
+ }
442
+ if len (errs ) > 0 && ! scenario .isExpectedFailure {
443
+ t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
444
+ }
445
+ })
450
446
}
451
447
452
448
}
@@ -834,9 +830,9 @@ func TestValidatePersistentVolumeClaim(t *testing.T) {
834
830
invalidMode := core .PersistentVolumeMode ("fakeVolumeMode" )
835
831
validMode := core .PersistentVolumeFilesystem
836
832
scenarios := map [string ]struct {
837
- isExpectedFailure bool
838
- claim * core.PersistentVolumeClaim
839
- disableBlockVolume bool
833
+ isExpectedFailure bool
834
+ claim * core.PersistentVolumeClaim
835
+ disableBlock bool
840
836
}{
841
837
"good-claim" : {
842
838
isExpectedFailure : false ,
@@ -1032,8 +1028,8 @@ func TestValidatePersistentVolumeClaim(t *testing.T) {
1032
1028
}),
1033
1029
},
1034
1030
"feature disabled valid volume mode" : {
1035
- disableBlockVolume : true ,
1036
- isExpectedFailure : true ,
1031
+ disableBlock : true ,
1032
+ isExpectedFailure : true ,
1037
1033
claim : testVolumeClaim ("foo" , "ns" , core.PersistentVolumeClaimSpec {
1038
1034
Selector : & metav1.LabelSelector {
1039
1035
MatchExpressions : []metav1.LabelSelectorRequirement {
@@ -1074,20 +1070,16 @@ func TestValidatePersistentVolumeClaim(t *testing.T) {
1074
1070
}
1075
1071
1076
1072
for name , scenario := range scenarios {
1077
- var restore func ()
1078
- if scenario .disableBlockVolume {
1079
- restore = utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , false )
1080
- }
1081
- errs := ValidatePersistentVolumeClaim (scenario .claim )
1082
- if len (errs ) == 0 && scenario .isExpectedFailure {
1083
- t .Errorf ("Unexpected success for scenario: %s" , name )
1084
- }
1085
- if len (errs ) > 0 && ! scenario .isExpectedFailure {
1086
- t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
1087
- }
1088
- if scenario .disableBlockVolume {
1089
- restore ()
1090
- }
1073
+ t .Run (name , func (t * testing.T ) {
1074
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , ! scenario .disableBlock )()
1075
+ errs := ValidatePersistentVolumeClaim (scenario .claim )
1076
+ if len (errs ) == 0 && scenario .isExpectedFailure {
1077
+ t .Errorf ("Unexpected success for scenario: %s" , name )
1078
+ }
1079
+ if len (errs ) > 0 && ! scenario .isExpectedFailure {
1080
+ t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
1081
+ }
1082
+ })
1091
1083
}
1092
1084
}
1093
1085
@@ -1170,15 +1162,17 @@ func TestAlphaPVVolumeModeUpdate(t *testing.T) {
1170
1162
}
1171
1163
1172
1164
for name , scenario := range scenarios {
1173
- // ensure we have a resource version specified for updates
1174
- toggleBlockVolumeFeature (scenario .enableBlock , t )
1175
- errs := ValidatePersistentVolumeUpdate (scenario .newPV , scenario .oldPV )
1176
- if len (errs ) == 0 && scenario .isExpectedFailure {
1177
- t .Errorf ("Unexpected success for scenario: %s" , name )
1178
- }
1179
- if len (errs ) > 0 && ! scenario .isExpectedFailure {
1180
- t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
1181
- }
1165
+ t .Run (name , func (t * testing.T ) {
1166
+ // ensure we have a resource version specified for updates
1167
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , scenario .enableBlock )()
1168
+ errs := ValidatePersistentVolumeUpdate (scenario .newPV , scenario .oldPV )
1169
+ if len (errs ) == 0 && scenario .isExpectedFailure {
1170
+ t .Errorf ("Unexpected success for scenario: %s" , name )
1171
+ }
1172
+ if len (errs ) > 0 && ! scenario .isExpectedFailure {
1173
+ t .Errorf ("Unexpected failure for scenario: %s - %+v" , name , errs )
1174
+ }
1175
+ })
1182
1176
}
1183
1177
}
1184
1178
@@ -1622,8 +1616,7 @@ func TestValidatePersistentVolumeClaimUpdate(t *testing.T) {
1622
1616
t .Run (name , func (t * testing.T ) {
1623
1617
// ensure we have a resource version specified for updates
1624
1618
defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .ExpandPersistentVolumes , scenario .enableResize )()
1625
-
1626
- toggleBlockVolumeFeature (scenario .enableBlock , t )
1619
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , scenario .enableBlock )()
1627
1620
scenario .oldClaim .ResourceVersion = "1"
1628
1621
scenario .newClaim .ResourceVersion = "1"
1629
1622
errs := ValidatePersistentVolumeClaimUpdate (scenario .newClaim , scenario .oldClaim )
@@ -1637,23 +1630,6 @@ func TestValidatePersistentVolumeClaimUpdate(t *testing.T) {
1637
1630
}
1638
1631
}
1639
1632
1640
- func toggleBlockVolumeFeature (toggleFlag bool , t * testing.T ) {
1641
- if toggleFlag {
1642
- // Enable alpha feature BlockVolume
1643
- err := utilfeature .DefaultFeatureGate .Set ("BlockVolume=true" )
1644
- if err != nil {
1645
- t .Errorf ("Failed to enable feature gate for BlockVolume: %v" , err )
1646
- return
1647
- }
1648
- } else {
1649
- err := utilfeature .DefaultFeatureGate .Set ("BlockVolume=false" )
1650
- if err != nil {
1651
- t .Errorf ("Failed to disable feature gate for BlockVolume: %v" , err )
1652
- return
1653
- }
1654
- }
1655
- }
1656
-
1657
1633
func TestValidateKeyToPath (t * testing.T ) {
1658
1634
testCases := []struct {
1659
1635
kp core.KeyToPath
@@ -3944,13 +3920,9 @@ func TestAlphaHugePagesIsolation(t *testing.T) {
3944
3920
}
3945
3921
}
3946
3922
3947
- func TestAlphaPVCVolumeMode (t * testing.T ) {
3948
- // Enable alpha feature BlockVolume for PVC
3949
- err := utilfeature .DefaultFeatureGate .Set ("BlockVolume=true" )
3950
- if err != nil {
3951
- t .Errorf ("Failed to enable feature gate for BlockVolume: %v" , err )
3952
- return
3953
- }
3923
+ func TestPVCVolumeMode (t * testing.T ) {
3924
+ // Enable feature BlockVolume for PVC
3925
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , true )()
3954
3926
3955
3927
block := core .PersistentVolumeBlock
3956
3928
file := core .PersistentVolumeFilesystem
@@ -3981,13 +3953,9 @@ func TestAlphaPVCVolumeMode(t *testing.T) {
3981
3953
}
3982
3954
}
3983
3955
3984
- func TestAlphaPVVolumeMode (t * testing.T ) {
3985
- // Enable alpha feature BlockVolume for PV
3986
- err := utilfeature .DefaultFeatureGate .Set ("BlockVolume=true" )
3987
- if err != nil {
3988
- t .Errorf ("Failed to enable feature gate for BlockVolume: %v" , err )
3989
- return
3990
- }
3956
+ func TestPVVolumeMode (t * testing.T ) {
3957
+ // Enable feature BlockVolume for PVC
3958
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , true )()
3991
3959
3992
3960
block := core .PersistentVolumeBlock
3993
3961
file := core .PersistentVolumeFilesystem
@@ -5152,12 +5120,8 @@ func TestAlphaValidateVolumeDevices(t *testing.T) {
5152
5120
{Name : "abc-123" , MountPath : "/this/path/exists" },
5153
5121
}
5154
5122
5155
- // enable Alpha BlockVolume
5156
- err1 := utilfeature .DefaultFeatureGate .Set ("BlockVolume=true" )
5157
- if err1 != nil {
5158
- t .Errorf ("Failed to enable feature gate for BlockVolume: %v" , err1 )
5159
- return
5160
- }
5123
+ // enable BlockVolume
5124
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , true )()
5161
5125
// Success Cases:
5162
5126
// Validate normal success cases - only PVC volumeSource
5163
5127
if errs := ValidateVolumeDevices (successCase , GetVolumeMountMap (goodVolumeMounts ), vols , field .NewPath ("field" )); len (errs ) != 0 {
@@ -5172,12 +5136,8 @@ func TestAlphaValidateVolumeDevices(t *testing.T) {
5172
5136
}
5173
5137
}
5174
5138
5175
- // disable Alpha BlockVolume
5176
- err2 := utilfeature .DefaultFeatureGate .Set ("BlockVolume=false" )
5177
- if err2 != nil {
5178
- t .Errorf ("Failed to disable feature gate for BlockVolume: %v" , err2 )
5179
- return
5180
- }
5139
+ // disable BlockVolume
5140
+ defer utilfeaturetesting .SetFeatureGateDuringTest (t , utilfeature .DefaultFeatureGate , features .BlockVolume , false )()
5181
5141
if errs := ValidateVolumeDevices (disabledAlphaVolDevice , GetVolumeMountMap (goodVolumeMounts ), vols , field .NewPath ("field" )); len (errs ) == 0 {
5182
5142
t .Errorf ("expected failure: %v" , errs )
5183
5143
}
0 commit comments