]> git.proxmox.com Git - ovs.git/blob - tests/ovsdb-data.at
ovsdb: Drop regular expression constraints.
[ovs.git] / tests / ovsdb-data.at
1 AT_BANNER([OVSDB -- atoms without constraints])
2
3 OVSDB_CHECK_POSITIVE([integer atom from JSON],
4 [[parse-atoms '["integer"]' \
5 '[0]' \
6 '[-1]' \
7 '[1e3]' \
8 '[9223372036854775807]' \
9 '[-9223372036854775808]' ]],
10 [0
11 -1
12 1000
13 9223372036854775807
14 -9223372036854775808])
15
16 OVSDB_CHECK_POSITIVE([integer atom from string],
17 [[parse-atom-strings -- '["integer"]' \
18 '0' \
19 '-1' \
20 '+1000' \
21 '9223372036854775807' \
22 '-9223372036854775808' ]],
23 [0
24 -1
25 1000
26 9223372036854775807
27 -9223372036854775808])
28
29 OVSDB_CHECK_POSITIVE([real atom from JSON],
30 [[parse-atoms '["real"]' \
31 '[0]' \
32 '[0.0]' \
33 '[-0.0]' \
34 '[-1.25]' \
35 '[1e3]' \
36 '[1e37]' \
37 '[0.00390625]' ]],
38 [0
39 0
40 0
41 -1.25
42 1000
43 1e+37
44 0.00390625])
45
46 OVSDB_CHECK_POSITIVE([real atom from string],
47 [[parse-atom-strings -- '["real"]' \
48 '0' \
49 '0.0' \
50 '-0.0' \
51 '-1.25' \
52 '1e3' \
53 '1e37' \
54 '0.00390625' ]],
55 [0
56 0
57 0
58 -1.25
59 1000
60 1e+37
61 0.00390625])
62
63 OVSDB_CHECK_POSITIVE([boolean atom from JSON],
64 [[parse-atoms '["boolean"]' '[true]' '[false]' ]],
65 [true
66 false])
67
68 OVSDB_CHECK_POSITIVE([boolean atom from string],
69 [[parse-atom-strings '["boolean"]' 'true' 'false' ]],
70 [true
71 false])
72
73 OVSDB_CHECK_POSITIVE([string atom from JSON],
74 [[parse-atoms '["string"]' '[""]' '["true"]' '["\"\\\/\b\f\n\r\t"]']],
75 [""
76 "true"
77 "\"\\/\b\f\n\r\t"])
78
79 OVSDB_CHECK_POSITIVE([string atom from string],
80 [[parse-atom-strings '["string"]' \
81 'unquoted' \
82 '"quoted-string"' \
83 '"needs quotes"' \
84 '""' \
85 '"true"' \
86 '"\"\\\/\b\f\n\r\t"']],
87 [unquoted
88 quoted-string
89 "needs quotes"
90 ""
91 "true"
92 "\"\\/\b\f\n\r\t"])
93
94 OVSDB_CHECK_POSITIVE([uuid atom from JSON],
95 [[parse-atoms '["uuid"]' '["uuid", "550e8400-e29b-41d4-a716-446655440000"]']],
96 [[["uuid","550e8400-e29b-41d4-a716-446655440000"]]])
97
98 OVSDB_CHECK_POSITIVE([uuid atom from string],
99 [[parse-atom-strings '["uuid"]' '550e8400-e29b-41d4-a716-446655440000']],
100 [550e8400-e29b-41d4-a716-446655440000])
101
102 OVSDB_CHECK_POSITIVE([integer atom sorting],
103 [[sort-atoms '["integer"]' '[55,0,-1,2,1]']],
104 [[[-1,0,1,2,55]]])
105
106 OVSDB_CHECK_POSITIVE([real atom sorting],
107 [[sort-atoms '["real"]' '[1.25,1.23,0.0,-0.0,-1e99]']],
108 [[[-1e+99,0,0,1.23,1.25]]])
109
110 OVSDB_CHECK_POSITIVE([boolean atom sorting],
111 [[sort-atoms '["boolean"]' '[true,false,true,false,false]']],
112 [[[false,false,false,true,true]]])
113
114 OVSDB_CHECK_POSITIVE([string atom sorting],
115 [[sort-atoms '["string"]' '["abd","abc","\b","xxx"]']],
116 [[["\b","abc","abd","xxx"]]])
117
118 OVSDB_CHECK_POSITIVE([uuid atom sorting],
119 [[sort-atoms '["uuid"]' '[
120 ["uuid", "00000000-0000-0000-0000-000000000001"],
121 ["uuid", "00000000-1000-0000-0000-000000000000"],
122 ["uuid", "00000000-0000-1000-0000-000000000000"],
123 ["uuid", "00010000-0000-0000-0000-000000000000"],
124 ["uuid", "00000000-0000-0000-0000-000000000100"],
125 ["uuid", "00000000-0000-0000-0000-000100000000"],
126 ["uuid", "00000000-0000-0010-0000-000000000000"],
127 ["uuid", "00000100-0000-0000-0000-000000000000"],
128 ["uuid", "00000000-0000-0001-0000-000000000000"],
129 ["uuid", "00000000-0000-0000-0000-000001000000"],
130 ["uuid", "01000000-0000-0000-0000-000000000000"],
131 ["uuid", "00000000-0000-0000-0000-000000001000"],
132 ["uuid", "00000000-0000-0000-0000-000010000000"],
133 ["uuid", "00000000-0000-0000-0000-010000000000"],
134 ["uuid", "00000000-0000-0100-0000-000000000000"],
135 ["uuid", "10000000-0000-0000-0000-000000000000"],
136 ["uuid", "00000000-0000-0000-0000-000000000010"],
137 ["uuid", "00000000-0100-0000-0000-000000000000"],
138 ["uuid", "00000000-0000-0000-0100-000000000000"],
139 ["uuid", "00000000-0000-0000-0001-000000000000"],
140 ["uuid", "00000010-0000-0000-0000-000000000000"],
141 ["uuid", "00000000-0000-0000-0010-000000000000"],
142 ["uuid", "00000000-0000-0000-0000-000000010000"],
143 ["uuid", "00000000-0000-0000-1000-000000000000"],
144 ["uuid", "00000000-0000-0000-0000-100000000000"],
145 ["uuid", "00000000-0000-0000-0000-001000000000"],
146 ["uuid", "00000000-0000-0000-0000-000000100000"],
147 ["uuid", "00000000-0000-0000-0000-000000000000"],
148 ["uuid", "00000000-0010-0000-0000-000000000000"],
149 ["uuid", "00100000-0000-0000-0000-000000000000"],
150 ["uuid", "00000000-0001-0000-0000-000000000000"],
151 ["uuid", "00000001-0000-0000-0000-000000000000"],
152 ["uuid", "00001000-0000-0000-0000-000000000000"]]']],
153 [[[["uuid","00000000-0000-0000-0000-000000000000"],["uuid","00000000-0000-0000-0000-000000000001"],["uuid","00000000-0000-0000-0000-000000000010"],["uuid","00000000-0000-0000-0000-000000000100"],["uuid","00000000-0000-0000-0000-000000001000"],["uuid","00000000-0000-0000-0000-000000010000"],["uuid","00000000-0000-0000-0000-000000100000"],["uuid","00000000-0000-0000-0000-000001000000"],["uuid","00000000-0000-0000-0000-000010000000"],["uuid","00000000-0000-0000-0000-000100000000"],["uuid","00000000-0000-0000-0000-001000000000"],["uuid","00000000-0000-0000-0000-010000000000"],["uuid","00000000-0000-0000-0000-100000000000"],["uuid","00000000-0000-0000-0001-000000000000"],["uuid","00000000-0000-0000-0010-000000000000"],["uuid","00000000-0000-0000-0100-000000000000"],["uuid","00000000-0000-0000-1000-000000000000"],["uuid","00000000-0000-0001-0000-000000000000"],["uuid","00000000-0000-0010-0000-000000000000"],["uuid","00000000-0000-0100-0000-000000000000"],["uuid","00000000-0000-1000-0000-000000000000"],["uuid","00000000-0001-0000-0000-000000000000"],["uuid","00000000-0010-0000-0000-000000000000"],["uuid","00000000-0100-0000-0000-000000000000"],["uuid","00000000-1000-0000-0000-000000000000"],["uuid","00000001-0000-0000-0000-000000000000"],["uuid","00000010-0000-0000-0000-000000000000"],["uuid","00000100-0000-0000-0000-000000000000"],["uuid","00001000-0000-0000-0000-000000000000"],["uuid","00010000-0000-0000-0000-000000000000"],["uuid","00100000-0000-0000-0000-000000000000"],["uuid","01000000-0000-0000-0000-000000000000"],["uuid","10000000-0000-0000-0000-000000000000"]]]])
154
155 OVSDB_CHECK_POSITIVE([real not acceptable integer JSON atom],
156 [[parse-atoms '["integer"]' '[0.5]' ]],
157 [syntax "0.5": syntax error: expected integer])
158
159 dnl <C0> is not allowed anywhere in a UTF-8 string.
160 dnl <ED A0 80> is a surrogate and not allowed in UTF-8.
161 OVSDB_CHECK_POSITIVE([no invalid UTF-8 sequences in strings],
162 [parse-atoms '[["string"]]' \
163 '@<:@"m4_esyscmd([printf "\xc0"])"@:>@' \
164 '@<:@"m4_esyscmd([printf "\xed\xa0\x80"])"@:>@' \
165 ],
166 [constraint violation: "m4_esyscmd([printf "\xc0"])" is not a valid UTF-8 string: invalid UTF-8 sequence 0xc0
167 constraint violation: "m4_esyscmd([printf "\xed\xa0\x80"])" is not a valid UTF-8 string: invalid UTF-8 sequence 0xed 0xa0])
168
169 OVSDB_CHECK_NEGATIVE([real not acceptable integer string atom],
170 [[parse-atom-strings '["integer"]' '0.5' ]],
171 ["0.5" is not a valid integer])
172
173 OVSDB_CHECK_POSITIVE([string "true" not acceptable boolean JSON atom],
174 [[parse-atoms '["boolean"]' '["true"]' ]],
175 [syntax ""true"": syntax error: expected boolean])
176
177 OVSDB_CHECK_NEGATIVE([string "true" not acceptable boolean string atom],
178 [[parse-atom-strings '["boolean"]' '"true"' ]],
179 [""true"" is not a valid boolean (use "true" or "false")])
180
181 OVSDB_CHECK_POSITIVE([integer not acceptable string JSON atom],
182 [[parse-atoms '["string"]' '[1]']],
183 [syntax "1": syntax error: expected string])
184
185 OVSDB_CHECK_POSITIVE([uuid atom must be expressed as JSON array],
186 [[parse-atoms '["uuid"]' '["550e8400-e29b-41d4-a716-446655440000"]']],
187 [[syntax ""550e8400-e29b-41d4-a716-446655440000"": syntax error: expected ["uuid", <string>]]])
188
189 OVSDB_CHECK_NEGATIVE([empty string atom must be quoted],
190 [[parse-atom-strings '["string"]' '']],
191 [An empty string is not valid as input; use "" to represent the empty string])
192
193 OVSDB_CHECK_NEGATIVE([quotes must be balanced],
194 [parse-atom-strings '[["string"]]' '"asdf'],
195 ["asdf: missing quote at end of quoted string])
196
197 OVSDB_CHECK_NEGATIVE([uuids must be valid],
198 [parse-atom-strings '[["uuid"]]' '1234-5678'],
199 ["1234-5678" is not a valid UUID])
200 \f
201 AT_BANNER([OVSDB -- atoms with constraints])
202
203 OVSDB_CHECK_POSITIVE([integers >= 5],
204 [[parse-atoms '[{"type": "integer", "minInteger": 5}]' \
205 '[0]' \
206 '[4]' \
207 '[5]' \
208 '[6]' \
209 '[12345]']],
210 [constraint violation: 0 is less than minimum allowed value 5
211 constraint violation: 4 is less than minimum allowed value 5
212 5
213 6
214 12345])
215
216 OVSDB_CHECK_POSITIVE([integers <= -1],
217 [[parse-atoms '[{"type": "integer", "maxInteger": -1}]' \
218 '[0]' \
219 '[-1]' \
220 '[-2]' \
221 '[-123]']],
222 [constraint violation: 0 is greater than maximum allowed value -1
223 -1
224 -2
225 -123])
226
227 OVSDB_CHECK_POSITIVE([integers in range -10 to 10],
228 [[parse-atoms '[{"type": "integer", "minInteger": -10, "maxInteger": 10}]' \
229 '[-20]' \
230 '[-11]' \
231 '[-10]' \
232 '[-9]' \
233 '[1]' \
234 '[9]' \
235 '[10]' \
236 '[11]' \
237 '[123576]']],
238 [constraint violation: -20 is not in the valid range -10 to 10 (inclusive)
239 constraint violation: -11 is not in the valid range -10 to 10 (inclusive)
240 -10
241 -9
242 1
243 9
244 10
245 constraint violation: 11 is not in the valid range -10 to 10 (inclusive)
246 constraint violation: 123576 is not in the valid range -10 to 10 (inclusive)])
247
248 OVSDB_CHECK_POSITIVE([reals >= 5],
249 [[parse-atoms '[{"type": "real", "minReal": 5}]' \
250 '[0]' \
251 '[4]' \
252 '[5]' \
253 '[6]' \
254 '[12345]']],
255 [constraint violation: 0 is less than minimum allowed value 5
256 constraint violation: 4 is less than minimum allowed value 5
257 5
258 6
259 12345])
260
261 OVSDB_CHECK_POSITIVE([reals <= -1],
262 [[parse-atoms '[{"type": "real", "maxReal": -1}]' \
263 '[0]' \
264 '[-1]' \
265 '[-2]' \
266 '[-123]']],
267 [constraint violation: 0 is greater than maximum allowed value -1
268 -1
269 -2
270 -123])
271
272 OVSDB_CHECK_POSITIVE([reals in range -10 to 10],
273 [[parse-atoms '[{"type": "real", "minReal": -10, "maxReal": 10}]' \
274 '[-20]' \
275 '[-11]' \
276 '[-10]' \
277 '[-9]' \
278 '[1]' \
279 '[9]' \
280 '[10]' \
281 '[11]' \
282 '[123576]']],
283 [constraint violation: -20 is not in the valid range -10 to 10 (inclusive)
284 constraint violation: -11 is not in the valid range -10 to 10 (inclusive)
285 -10
286 -9
287 1
288 9
289 10
290 constraint violation: 11 is not in the valid range -10 to 10 (inclusive)
291 constraint violation: 123576 is not in the valid range -10 to 10 (inclusive)])
292
293 OVSDB_CHECK_POSITIVE([strings at least 2 characters long],
294 [[parse-atoms '{"type": "string", "minLength": 2}' \
295 '[""]' \
296 '["a"]' \
297 '["ab"]' \
298 '["abc"]' \
299 '["\ud834\udd1e"]']],
300 [[constraint violation: "" length 0 is less than minimum allowed length 2
301 constraint violation: "a" length 1 is less than minimum allowed length 2
302 "ab"
303 "abc"
304 constraint violation: "𝄞" length 1 is less than minimum allowed length 2]])
305
306 OVSDB_CHECK_POSITIVE([strings no more than 2 characters long],
307 [[parse-atoms '{"type": "string", "maxLength": 2}' \
308 '[""]' \
309 '["a"]' \
310 '["ab"]' \
311 '["abc"]' \
312 '["\ud834\udd1e"]']],
313 [[""
314 "a"
315 "ab"
316 constraint violation: "abc" length 3 is greater than maximum allowed length 2
317 "𝄞"]])
318
319 AT_BANNER([OSVDB -- simple data])
320
321 OVSDB_CHECK_POSITIVE([integer JSON datum],
322 [[parse-data '["integer"]' '[0]' '["set",[1]]' '[-1]']],
323 [0
324 1
325 -1])
326
327 OVSDB_CHECK_POSITIVE([integer string datum],
328 [[parse-data-strings -- '["integer"]' '0' '1' '-1' '+1']],
329 [0
330 1
331 -1
332 1])
333
334 OVSDB_CHECK_POSITIVE([real JSON datum],
335 [[parse-data '["real"]' '[0]' '["set",[1.0]]' '[-1.25]']],
336 [0
337 1
338 -1.25])
339
340 OVSDB_CHECK_POSITIVE([real string datum],
341 [[parse-data-strings -- '["real"]' '0' '1.0' '-1.25']],
342 [0
343 1
344 -1.25])
345
346 OVSDB_CHECK_POSITIVE([boolean JSON datum],
347 [[parse-data '["boolean"]' '["set", [true]]' '[false]' ]],
348 [true
349 false])
350
351 OVSDB_CHECK_POSITIVE([boolean string datum],
352 [[parse-data-strings '["boolean"]' 'true' 'false' ]],
353 [true
354 false])
355
356 OVSDB_CHECK_POSITIVE([string JSON datum],
357 [[parse-data '["string"]' '["set",[""]]' '["true"]' '["\"\\\/\b\f\n\r\t"]']],
358 [""
359 "true"
360 "\"\\/\b\f\n\r\t"])
361
362 OVSDB_CHECK_POSITIVE([string string datum],
363 [[parse-data-strings '["string"]' '"x"' '""' '"true"' '"\"\\\/\b\f\n\r\t"']],
364 [x
365 ""
366 "true"
367 "\"\\/\b\f\n\r\t"])
368 \f
369 AT_BANNER([OVSDB -- set data])
370
371 OVSDB_CHECK_POSITIVE([JSON optional boolean],
372 [[parse-data '{"key": "boolean", "min": 0}' \
373 '[true]' \
374 '["set", [false]]' \
375 '["set", []]']],
376 [[true
377 false
378 ["set",[]]]],
379 [set])
380
381 OVSDB_CHECK_POSITIVE([string optional boolean],
382 [[parse-data-strings '{"key": "boolean", "min": 0}' \
383 'true' \
384 'false' \
385 '[]']],
386 [[true
387 false
388 []]],
389 [set])
390
391 OVSDB_CHECK_POSITIVE([JSON set of 0 or more integers],
392 [[parse-data '{"key": "integer", "min": 0, "max": "unlimited"}' \
393 '["set", [0]]' \
394 '[1]' \
395 '["set", [0, 1]]' \
396 '["set", [0, 1, 2]]' \
397 '["set", [0, 1, 2, 3, 4, 5]]' \
398 '["set", [0, 1, 2, 3, 4, 5, 6, 7, 8]]' \
399 '["set", [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]]']],
400 [[0
401 1
402 ["set",[0,1]]
403 ["set",[0,1,2]]
404 ["set",[0,1,2,3,4,5]]
405 ["set",[0,1,2,3,4,5,6,7,8]]
406 ["set",[0,1,2,3,4,5,6,7,8,9,10]]]])
407
408 OVSDB_CHECK_POSITIVE([string set of 0 or more integers],
409 [[parse-data-strings '{"key": "integer", "min": 0, "max": "unlimited"}' \
410 '0' \
411 '0,1' \
412 '0, 1, 2' \
413 '[0, 1,2, 3, 4, 5]' \
414 '0, 1,2, 3,4, 5, 6, 7, 8' \
415 '[0, 1, 2, 3, 4,5, 6,7, 8, 9, 10]']],
416 [[[0]
417 [0, 1]
418 [0, 1, 2]
419 [0, 1, 2, 3, 4, 5]
420 [0, 1, 2, 3, 4, 5, 6, 7, 8]
421 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]]])
422
423 OVSDB_CHECK_POSITIVE([JSON set of 1 to 3 uuids],
424 [[parse-data '{"key": "uuid", "min": 1, "max": 3}' \
425 '["set", [["uuid", "550e8400-e29b-41d4-a716-446655440000"]]]' \
426 '["uuid", "b5078be0-7664-4299-b836-8bcc03ef941f"]' \
427 '["set", [["uuid", "c5051240-30ff-43ed-b4b9-93cf3f050813"],
428 ["uuid", "90558331-09af-4d2f-a572-509cad2e9088"],
429 ["uuid", "550e8400-e29b-41d4-a716-446655440000"]]]']],
430 [[["uuid","550e8400-e29b-41d4-a716-446655440000"]
431 ["uuid","b5078be0-7664-4299-b836-8bcc03ef941f"]
432 ["set",[["uuid","550e8400-e29b-41d4-a716-446655440000"],["uuid","90558331-09af-4d2f-a572-509cad2e9088"],["uuid","c5051240-30ff-43ed-b4b9-93cf3f050813"]]]]])
433
434 OVSDB_CHECK_POSITIVE([string set of 1 to 3 uuids],
435 [[parse-data-strings '{"key": "uuid", "min": 1, "max": 3}' \
436 '[550e8400-e29b-41d4-a716-446655440000]' \
437 '[c5051240-30ff-43ed-b4b9-93cf3f050813,
438 90558331-09af-4d2f-a572-509cad2e9088,
439 550e8400-e29b-41d4-a716-446655440000]']],
440 [[[550e8400-e29b-41d4-a716-446655440000]
441 [550e8400-e29b-41d4-a716-446655440000, 90558331-09af-4d2f-a572-509cad2e9088, c5051240-30ff-43ed-b4b9-93cf3f050813]]])
442
443 OVSDB_CHECK_POSITIVE([JSON set of 0 to 3 strings],
444 [[parse-data '{"key": "string", "min": 0, "max": 3}' \
445 '["set", []]' \
446 '["a longer string"]' \
447 '["set", ["a relatively long string"]]' \
448 '["set", ["short string", "a relatively long string"]]' \
449 '["set", ["zzz", "short string", "a relatively long string"]]']],
450 [[["set",[]]
451 "a longer string"
452 "a relatively long string"
453 ["set",["a relatively long string","short string"]]
454 ["set",["a relatively long string","short string","zzz"]]]])
455
456 OVSDB_CHECK_POSITIVE([string set of 0 to 3 strings],
457 [[parse-data-strings '{"key": "string", "min": 0, "max": 3}' \
458 '[]' \
459 '"a relatively long string"' \
460 '["short string", "a relatively long string"]' \
461 '"zzz","short string","a relatively long string"']],
462 [[[]
463 ["a relatively long string"]
464 ["a relatively long string", "short string"]
465 ["a relatively long string", "short string", zzz]]])
466
467 OVSDB_CHECK_NEGATIVE([duplicate boolean not allowed in JSON set],
468 [[parse-data '{"key": "boolean", "max": 5}' '["set", [true, true]]']],
469 [ovsdb error: set contains duplicate])
470
471 OVSDB_CHECK_NEGATIVE([duplicate boolean not allowed in string set],
472 [[parse-data-strings '{"key": "boolean", "max": 5}' 'true, true']],
473 [set contains duplicate value])
474
475 OVSDB_CHECK_NEGATIVE([duplicate integer not allowed in JSON set],
476 [[parse-data '{"key": "integer", "max": 5}' '["set", [1, 2, 3, 1]]']],
477 [ovsdb error: set contains duplicate])
478
479 OVSDB_CHECK_NEGATIVE([duplicate integer not allowed in string set],
480 [[parse-data-strings '{"key": "integer", "max": 5}' '[1, 2, 3, 1]']],
481 [set contains duplicate value])
482
483 OVSDB_CHECK_NEGATIVE([duplicate real not allowed in JSON set],
484 [[parse-data '{"key": "real", "max": 5}' '["set", [0.0, -0.0]]']],
485 [ovsdb error: set contains duplicate])
486
487 OVSDB_CHECK_NEGATIVE([duplicate real not allowed in string set],
488 [[parse-data-strings '{"key": "real", "max": 5}' '0.0, -0.0']],
489 [set contains duplicate value])
490
491 OVSDB_CHECK_NEGATIVE([duplicate string not allowed in JSON set],
492 [[parse-data '{"key": "string", "max": 5}' '["set", ["asdf", "ASDF", "asdf"]]']],
493 [ovsdb error: set contains duplicate])
494
495 OVSDB_CHECK_NEGATIVE([duplicate string not allowed in string set],
496 [[parse-data-strings '{"key": "string", "max": 5}' 'asdf, ASDF, "asdf"']],
497 [set contains duplicate value])
498
499 OVSDB_CHECK_NEGATIVE([duplicate uuid not allowed in JSON set],
500 [[parse-data '{"key": "uuid", "max": 5}' \
501 '["set", [["uuid", "7ef21525-0088-4a28-a418-5518413e43ea"],
502 ["uuid", "355ad037-f1da-40aa-b47c-ff9c7e8c6a38"],
503 ["uuid", "7ef21525-0088-4a28-a418-5518413e43ea"]]]']],
504 [ovsdb error: set contains duplicate])
505
506 OVSDB_CHECK_NEGATIVE([duplicate uuid not allowed in string set],
507 [[parse-data-strings '{"key": "uuid", "max": 5}' \
508 '7ef21525-0088-4a28-a418-5518413e43ea,
509 355ad037-f1da-40aa-b47c-ff9c7e8c6a38,
510 7ef21525-0088-4a28-a418-5518413e43ea']],
511 [set contains duplicate value])
512 \f
513 AT_BANNER([OVSDB -- map data])
514
515 OVSDB_CHECK_POSITIVE([JSON map of 1 integer to boolean],
516 [[parse-data '{"key": "integer", "value": "boolean"}' \
517 '["map", [[1, true]]]']],
518 [[["map",[[1,true]]]]])
519
520 OVSDB_CHECK_POSITIVE([string map of 1 integer to boolean],
521 [[parse-data-strings '{"key": "integer", "value": "boolean"}' \
522 '1=true']],
523 [[1=true]])
524
525 OVSDB_CHECK_POSITIVE([JSON map of at least 1 integer to boolean],
526 [[parse-data '{"key": "integer", "value": "boolean", "max": "unlimited"}' \
527 '["map", [[1, true]]]' \
528 '["map", [[0, true], [1, false], [2, true], [3, true], [4, true]]]' \
529 '["map", [[3, false], [0, true], [4, false]]]']],
530 [[["map",[[1,true]]]
531 ["map",[[0,true],[1,false],[2,true],[3,true],[4,true]]]
532 ["map",[[0,true],[3,false],[4,false]]]]])
533
534 OVSDB_CHECK_POSITIVE([string map of at least 1 integer to boolean],
535 [[parse-data-strings '{"key": "integer", "value": "boolean", "max": "unlimited"}' \
536 '1=true' \
537 '0=true 1=false 2=true, 3=true 4=true,' \
538 '3=false,0=true ,4=false']],
539 [[{1=true}
540 {0=true, 1=false, 2=true, 3=true, 4=true}
541 {0=true, 3=false, 4=false}]])
542
543 OVSDB_CHECK_POSITIVE([JSON map of 1 boolean to integer],
544 [[parse-data '{"key": "boolean", "value": "integer"}' \
545 '["map", [[true, 1]]]']],
546 [[["map",[[true,1]]]]])
547
548 OVSDB_CHECK_POSITIVE([string map of 1 boolean to integer],
549 [[parse-data-strings '{"key": "boolean", "value": "integer"}' \
550 'true=1']],
551 [[true=1]])
552
553 OVSDB_CHECK_POSITIVE([JSON map of 1 uuid to real],
554 [[parse-data '{"key": "uuid", "value": "real", "min": 1, "max": 5}' \
555 '["map", [[["uuid", "cad8542b-6ee1-486b-971b-7dcbf6e14979"], 1.0],
556 [["uuid", "6b94b968-2702-4f64-9457-314a34d69b8c"], 2.0],
557 [["uuid", "d2c4a168-24de-47eb-a8a3-c1abfc814979"], 3.0],
558 [["uuid", "25bfa475-d072-4f60-8be1-00f48643e9cb"], 4.0],
559 [["uuid", "1c92b8ca-d5e4-4628-a85d-1dc2d099a99a"], 5.0]]]']],
560 [[["map",[[["uuid","1c92b8ca-d5e4-4628-a85d-1dc2d099a99a"],5],[["uuid","25bfa475-d072-4f60-8be1-00f48643e9cb"],4],[["uuid","6b94b968-2702-4f64-9457-314a34d69b8c"],2],[["uuid","cad8542b-6ee1-486b-971b-7dcbf6e14979"],1],[["uuid","d2c4a168-24de-47eb-a8a3-c1abfc814979"],3]]]]])
561
562 OVSDB_CHECK_POSITIVE([string map of 1 uuid to real],
563 [[parse-data-strings '{"key": "uuid", "value": "real", "min": 1, "max": 5}' \
564 'cad8542b-6ee1-486b-971b-7dcbf6e14979=1.0,
565 6b94b968-2702-4f64-9457-314a34d69b8c=2.0,
566 d2c4a168-24de-47eb-a8a3-c1abfc814979=3.0,
567 25bfa475-d072-4f60-8be1-00f48643e9cb=4.0,
568 1c92b8ca-d5e4-4628-a85d-1dc2d099a99a=5.0']],
569 [[{1c92b8ca-d5e4-4628-a85d-1dc2d099a99a=5, 25bfa475-d072-4f60-8be1-00f48643e9cb=4, 6b94b968-2702-4f64-9457-314a34d69b8c=2, cad8542b-6ee1-486b-971b-7dcbf6e14979=1, d2c4a168-24de-47eb-a8a3-c1abfc814979=3}]])
570
571 OVSDB_CHECK_POSITIVE([JSON map of 10 string to string],
572 [[parse-data '{"key": "string", "value": "string", "min": 1, "max": 10}' \
573 '["map", [["2 gills", "1 chopin"],
574 ["2 chopins", "1 pint"],
575 ["2 pints", "1 quart"],
576 ["2 quarts", "1 pottle"],
577 ["2 pottles", "1 gallon"],
578 ["2 gallons", "1 peck"],
579 ["2 pecks", "1 demibushel"],
580 ["2 demibushel", "1 firkin"],
581 ["2 firkins", "1 kilderkin"],
582 ["2 kilderkins", "1 barrel"]]]']],
583 [[["map",[["2 chopins","1 pint"],["2 demibushel","1 firkin"],["2 firkins","1 kilderkin"],["2 gallons","1 peck"],["2 gills","1 chopin"],["2 kilderkins","1 barrel"],["2 pecks","1 demibushel"],["2 pints","1 quart"],["2 pottles","1 gallon"],["2 quarts","1 pottle"]]]]])
584
585 OVSDB_CHECK_POSITIVE([string map of 10 string to string],
586 [[parse-data-strings '{"key": "string", "value": "string", "min": 1, "max": 10}' \
587 '{"2 gills"="1 chopin",
588 "2 chopins"= "1 pint",
589 "2 pints"= "1 quart",
590 "2 quarts"= "1 pottle",
591 "2 pottles"= "1 gallon",
592 "2 gallons"= "1 peck",
593 "2 pecks"= "1 demibushel",
594 "2 demibushel"= "1 firkin",
595 "2 firkins"= "1 kilderkin",
596 "2 kilderkins"= "1 barrel"}']],
597 [[{"2 chopins"="1 pint", "2 demibushel"="1 firkin", "2 firkins"="1 kilderkin", "2 gallons"="1 peck", "2 gills"="1 chopin", "2 kilderkins"="1 barrel", "2 pecks"="1 demibushel", "2 pints"="1 quart", "2 pottles"="1 gallon", "2 quarts"="1 pottle"}]])
598
599 OVSDB_CHECK_NEGATIVE([duplicate integer key not allowed in JSON map],
600 [[parse-data '{"key": "integer", "value": "boolean", "max": 5}' \
601 '["map", [[1, true], [2, false], [1, false]]]']],
602 [ovsdb error: map contains duplicate key])
603
604 OVSDB_CHECK_NEGATIVE([duplicate integer key not allowed in string map],
605 [[parse-data-strings '{"key": "integer", "value": "boolean", "max": 5}' \
606 '1=true 2=false 1=false']],
607 [map contains duplicate key])