@@ -116,15 +116,17 @@ func TestAllowedGrouplessVersion(t *testing.T) {
116
116
117
117
func TestAllowedTypeCoercion (t * testing.T ) {
118
118
ten := int64 (10 )
119
+ twenty := int32 (10 )
119
120
120
121
testcases := []struct {
121
- name string
122
- input []byte
123
- into runtime.Object
124
- expected runtime.Object
122
+ name string
123
+ input []byte
124
+ into runtime.Object
125
+ expected runtime.Object
126
+ expectedErr string
125
127
}{
126
128
{
127
- name : "string to number " ,
129
+ name : "string to int64 " ,
128
130
input : []byte (`{
129
131
"kind":"Pod",
130
132
"apiVersion":"v1",
@@ -135,6 +137,36 @@ func TestAllowedTypeCoercion(t *testing.T) {
135
137
Spec : v1.PodSpec {ActiveDeadlineSeconds : & ten },
136
138
},
137
139
},
140
+ {
141
+ name : "string to int64 malformed" ,
142
+ input : []byte (`{
143
+ "kind":"Pod",
144
+ "apiVersion":"v1",
145
+ "spec":{"activeDeadlineSeconds":"1.1"}
146
+ }` ),
147
+ expectedErr : "read int64: unexpected character: \" " ,
148
+ },
149
+ {
150
+ name : "string to int32" ,
151
+ input : []byte (`{
152
+ "kind":"Pod",
153
+ "apiVersion":"v1",
154
+ "spec":{"priority":"10"}
155
+ }` ),
156
+ expected : & v1.Pod {
157
+ TypeMeta : metav1.TypeMeta {Kind : "Pod" , APIVersion : "v1" },
158
+ Spec : v1.PodSpec {Priority : & twenty },
159
+ },
160
+ },
161
+ {
162
+ name : "string to int32 malformed" ,
163
+ input : []byte (`{
164
+ "kind":"Pod",
165
+ "apiVersion":"v1",
166
+ "spec":{"priority":"1.1"}
167
+ }` ),
168
+ expectedErr : "read int32: unexpected character: \" " ,
169
+ },
138
170
{
139
171
name : "empty object to array" ,
140
172
input : []byte (`{
@@ -144,9 +176,18 @@ func TestAllowedTypeCoercion(t *testing.T) {
144
176
}` ),
145
177
expected : & v1.Pod {
146
178
TypeMeta : metav1.TypeMeta {Kind : "Pod" , APIVersion : "v1" },
147
- Spec : v1.PodSpec {Containers : []v1. Container {} },
179
+ Spec : v1.PodSpec {Containers : nil },
148
180
},
149
181
},
182
+ {
183
+ name : "non-empty object to array fails" ,
184
+ input : []byte (`{
185
+ "kind":"Pod",
186
+ "apiVersion":"v1",
187
+ "spec":{"containers":{"name":"somevalue"}}
188
+ }` ),
189
+ expectedErr : "v1.PodSpec.Containers: decode slice: expect [ or n, but found {" ,
190
+ },
150
191
}
151
192
152
193
for i := range testcases {
@@ -155,8 +196,14 @@ func TestAllowedTypeCoercion(t *testing.T) {
155
196
t .Run (tc .name , func (t * testing.T ) {
156
197
s := jsonserializer .NewSerializer (jsonserializer .DefaultMetaFactory , legacyscheme .Scheme , legacyscheme .Scheme , false )
157
198
obj , _ , err := s .Decode (tc .input , nil , tc .into )
158
- if err != nil {
159
- t .Error (err )
199
+ if err != nil || len (tc .expectedErr ) > 0 {
200
+ if len (tc .expectedErr ) == 0 {
201
+ t .Error (err )
202
+ } else if err == nil {
203
+ t .Errorf ("expected error %q, got none" , tc .expectedErr )
204
+ } else if ! strings .Contains (err .Error (), tc .expectedErr ) {
205
+ t .Errorf ("expected error %q, got %q" , tc .expectedErr , err .Error ())
206
+ }
160
207
return
161
208
}
162
209
if ! reflect .DeepEqual (obj , tc .expected ) {
0 commit comments