support/testing: add new python-ruamel-yaml runtime test

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Marcus Hoffmann
2024-02-07 18:09:54 +01:00
committed by Thomas Petazzoni
parent 9fb8f2e10c
commit 21da0df09d
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
from ruamel.yaml import YAML
yaml_text = """
Rootkey:
- ListEntry
AnotherRootKey: some-string
ListRoot:
- float-value: '1.0'
int-value: 10234
NestedList:
- 1
- 2
- another-float: '1.1'
another-int: 1111
OneMoreRootKey: 9.99
"""
# Tests the pure python based implementation
yaml = YAML(typ='safe', pure=True)
parsed = yaml.load(yaml_text)
assert parsed['OneMoreRootKey'] == 9.99
assert parsed['ListRoot'][1]['another-int'] == 1111