@@ -21,9 +21,13 @@ import (
21
21
"strings"
22
22
"testing"
23
23
24
+ "github.com/google/go-cmp/cmp"
25
+
24
26
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
25
27
"k8s.io/apimachinery/pkg/types"
26
28
"k8s.io/apimachinery/pkg/util/validation/field"
29
+
30
+ "k8s.io/utils/ptr"
27
31
)
28
32
29
33
func TestValidateLabels (t * testing.T ) {
@@ -132,6 +136,96 @@ func boolPtr(b bool) *bool {
132
136
return & b
133
137
}
134
138
139
+ func TestValidateDeleteOptionsWithIgnoreStoreReadError (t * testing.T ) {
140
+ fieldPath := field .NewPath ("ignoreStoreReadErrorWithClusterBreakingPotential" )
141
+ tests := []struct {
142
+ name string
143
+ opts metav1.DeleteOptions
144
+ expectedErrors field.ErrorList
145
+ }{
146
+ {
147
+ name : "option is nil" ,
148
+ opts : metav1.DeleteOptions {
149
+ IgnoreStoreReadErrorWithClusterBreakingPotential : nil ,
150
+ DryRun : []string {"All" },
151
+ },
152
+ expectedErrors : field.ErrorList {},
153
+ },
154
+ {
155
+ name : "option is false, PropagationPolicy is set" ,
156
+ opts : metav1.DeleteOptions {
157
+ IgnoreStoreReadErrorWithClusterBreakingPotential : ptr.To [bool ](false ),
158
+ DryRun : []string {"All" },
159
+ PropagationPolicy : ptr.To [metav1.DeletionPropagation ](metav1 .DeletePropagationBackground ),
160
+ GracePeriodSeconds : ptr.To [int64 ](0 ),
161
+ Preconditions : & metav1.Preconditions {},
162
+ },
163
+ expectedErrors : field.ErrorList {},
164
+ },
165
+ {
166
+ name : "option is false, OrphanDependents is set" ,
167
+ opts : metav1.DeleteOptions {
168
+ IgnoreStoreReadErrorWithClusterBreakingPotential : ptr.To [bool ](false ),
169
+ DryRun : []string {"All" },
170
+ //nolint:staticcheck // until it's being removed
171
+ OrphanDependents : ptr.To [bool ](true ),
172
+ GracePeriodSeconds : ptr.To [int64 ](0 ),
173
+ Preconditions : & metav1.Preconditions {},
174
+ },
175
+ expectedErrors : field.ErrorList {},
176
+ },
177
+ {
178
+ name : "option is true, PropagationPolicy is set" ,
179
+ opts : metav1.DeleteOptions {
180
+ IgnoreStoreReadErrorWithClusterBreakingPotential : ptr.To [bool ](true ),
181
+ DryRun : []string {"All" },
182
+ PropagationPolicy : ptr.To [metav1.DeletionPropagation ](metav1 .DeletePropagationBackground ),
183
+ GracePeriodSeconds : ptr.To [int64 ](0 ),
184
+ Preconditions : & metav1.Preconditions {},
185
+ },
186
+ expectedErrors : field.ErrorList {
187
+ field .Invalid (fieldPath , true , "cannot be set together with .dryRun" ),
188
+ field .Invalid (fieldPath , true , "cannot be set together with .propagationPolicy" ),
189
+ field .Invalid (fieldPath , true , "cannot be set together with .gracePeriodSeconds" ),
190
+ field .Invalid (fieldPath , true , "cannot be set together with .preconditions" ),
191
+ },
192
+ },
193
+ {
194
+ name : "option is true, OrphanDependents is set" ,
195
+ opts : metav1.DeleteOptions {
196
+ IgnoreStoreReadErrorWithClusterBreakingPotential : ptr.To [bool ](true ),
197
+ DryRun : []string {"All" },
198
+ //nolint:staticcheck // until it's being removed
199
+ OrphanDependents : ptr.To [bool ](true ),
200
+ GracePeriodSeconds : ptr.To [int64 ](0 ),
201
+ Preconditions : & metav1.Preconditions {},
202
+ },
203
+ expectedErrors : field.ErrorList {
204
+ field .Invalid (fieldPath , true , "cannot be set together with .dryRun" ),
205
+ field .Invalid (fieldPath , true , "cannot be set together with .orphanDependents" ),
206
+ field .Invalid (fieldPath , true , "cannot be set together with .gracePeriodSeconds" ),
207
+ field .Invalid (fieldPath , true , "cannot be set together with .preconditions" ),
208
+ },
209
+ },
210
+ {
211
+ name : "option is true, no other option is set" ,
212
+ opts : metav1.DeleteOptions {
213
+ IgnoreStoreReadErrorWithClusterBreakingPotential : ptr.To [bool ](false ),
214
+ },
215
+ expectedErrors : field.ErrorList {},
216
+ },
217
+ }
218
+
219
+ for _ , test := range tests {
220
+ t .Run (test .name , func (t * testing.T ) {
221
+ errGot := ValidateDeleteOptions (& test .opts )
222
+ if ! cmp .Equal (test .expectedErrors , errGot ) {
223
+ t .Errorf ("expected error(s) to match, diff: %s" , cmp .Diff (test .expectedErrors , errGot ))
224
+ }
225
+ })
226
+ }
227
+ }
228
+
135
229
func TestValidPatchOptions (t * testing.T ) {
136
230
tests := []struct {
137
231
opts metav1.PatchOptions
0 commit comments