Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle nested dict extending non-existent keys #263

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions examples/deep/main.fmf
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,22 @@ hardware:
size: 8
network:
model: e1000

# A deep dictionary extending non-existent values
/single:
undefined+:
deeper+:
key: value

# And a child with a similar deep dictionary
/parent:
one: 1
two: 2

/child:
one+: 1
two+: 2
three+: 3
undefined+:
deeper+:
key: value
8 changes: 7 additions & 1 deletion fmf/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,13 @@ def _merge_plus(self, data, key, value, prepend=False):

# Set the value if key is not present
if key not in data:
data[key] = value
# Special handling for dictionaries as their keys might
# contain suffixes which should be removed
if isinstance(value, dict):
data[key] = {}
self._merge_special(data[key], value)
else:
data[key] = value
return

# Parent is a list of dict and child is a dict
Expand Down
13 changes: 12 additions & 1 deletion tests/unit/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_adjust_strips_control_keys(self):
def test_deep_hierarchy(self):
""" Deep hierarchy on one line """
deep = Tree(EXAMPLES + "deep")
assert len(deep.children) == 1
assert len(deep.children) == 3

def test_deep_dictionary(self):
""" Get value from a deep dictionary """
Expand All @@ -147,6 +147,17 @@ def test_deep_dictionary(self):
assert deep.get(['hardware', 'bad', 'size'], 12) == 12
assert deep.get('nonexistent', default=3) == 3

def test_deep_dictionary_undefined_keys(self):
""" Extending undefined keys using '+' should work """
deep = Tree(EXAMPLES + "deep")
single = deep.find("/single")
assert single.get(["undefined", "deeper", "key"]) == "value"
child = deep.find("/parent/child")
assert child.get("one") == 2
assert child.get("two") == 4
assert child.get("three") == 3
assert child.get(["undefined", "deeper", "key"]) == "value"

def test_merge_plus(self):
""" Extending attributes using the '+' suffix """
child = self.merge.find('/parent/extended')
Expand Down
Loading