1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# This file is part of cloud-init. See LICENSE file for license information.
"""Tests cc_keyboard module"""
import re
import pytest
from cloudinit.config.schema import (
SchemaValidationError,
get_schema,
validate_cloudconfig_schema,
)
from tests.unittests.helpers import skipUnlessJsonSchema
class TestKeyboard:
@pytest.mark.parametrize(
"config, error_msg",
(
# Valid schemas
({"keyboard": {"layout": "somestring"}}, None),
# Invalid schemas
(
{"keyboard": {}},
"Cloud config schema errors: keyboard: 'layout' is a"
" required property",
),
(
{"keyboard": "bogus"},
"Cloud config schema errors: keyboard: 'bogus' is not"
" of type 'object'",
),
(
{"keyboard": {"layout": 1}},
"Cloud config schema errors: keyboard.layout: 1 is not"
" of type 'string'",
),
(
{"keyboard": {"layout": "somestr", "model": None}},
"Cloud config schema errors: keyboard.model: None is not"
" of type 'string'",
),
(
{"keyboard": {"layout": "somestr", "variant": [1]}},
re.escape(
"Cloud config schema errors: keyboard.variant: [1] is"
" not of type 'string'"
),
),
(
{"keyboard": {"layout": "somestr", "options": {}}},
"Cloud config schema errors: keyboard.options: {} is not"
" of type 'string'",
),
(
{"keyboard": {"layout": "somestr", "extraprop": "somestr"}},
re.escape(
"Cloud config schema errors: keyboard: Additional"
" properties are not allowed ('extraprop' was unexpected)"
),
),
),
)
@skipUnlessJsonSchema()
def test_schema_validation(self, config, error_msg):
"""Assert expected schema validation and error messages."""
# New-style schema $defs exist in config/cloud-init-schema*.json
schema = get_schema()
if error_msg is None:
validate_cloudconfig_schema(config, schema, strict=True)
else:
with pytest.raises(SchemaValidationError, match=error_msg):
validate_cloudconfig_schema(config, schema, strict=True)
# vi: ts=4 expandtab
|