Skip to content

Commit 294e00c

Browse files
committed
Add conversion to properly parse query parameter propagationPolicy
1 parent 88c25ca commit 294e00c

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion.go

+12
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ func AddConversionFuncs(scheme *runtime.Scheme) error {
7575
Convert_unversioned_LabelSelector_to_map,
7676

7777
Convert_Slice_string_To_Slice_int32,
78+
79+
Convert_Slice_string_To_v1_DeletionPropagation,
7880
)
7981
}
8082

@@ -304,3 +306,13 @@ func Convert_Slice_string_To_Slice_int32(in *[]string, out *[]int32, s conversio
304306
}
305307
return nil
306308
}
309+
310+
// Convert_Slice_string_To_v1_DeletionPropagation allows converting a URL query parameter propagationPolicy
311+
func Convert_Slice_string_To_v1_DeletionPropagation(input *[]string, out *DeletionPropagation, s conversion.Scope) error {
312+
if len(*input) > 0 {
313+
*out = DeletionPropagation((*input)[0])
314+
} else {
315+
*out = ""
316+
}
317+
return nil
318+
}

staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion_test.go

+35
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,38 @@ func TestMapToLabelSelectorRoundTrip(t *testing.T) {
4747
}
4848
}
4949
}
50+
51+
func TestConvertSliceStringToDeletionPropagation(t *testing.T) {
52+
tcs := []struct {
53+
Input []string
54+
Output v1.DeletionPropagation
55+
}{
56+
{
57+
Input: nil,
58+
Output: "",
59+
},
60+
{
61+
Input: []string{},
62+
Output: "",
63+
},
64+
{
65+
Input: []string{"foo"},
66+
Output: "foo",
67+
},
68+
{
69+
Input: []string{"bar", "foo"},
70+
Output: "bar",
71+
},
72+
}
73+
74+
for _, tc := range tcs {
75+
var dp v1.DeletionPropagation
76+
if err := v1.Convert_Slice_string_To_v1_DeletionPropagation(&tc.Input, &dp, nil); err != nil {
77+
t.Errorf("Convert_Slice_string_To_v1_DeletionPropagation(%#v): %v", tc.Input, err)
78+
continue
79+
}
80+
if !apiequality.Semantic.DeepEqual(dp, tc.Output) {
81+
t.Errorf("slice string to DeletionPropagation conversion failed: got %v; want %v", dp, tc.Output)
82+
}
83+
}
84+
}

0 commit comments

Comments
 (0)