Source code for ramble.test.namespace_trie

# Copyright 2022-2025 The Ramble Authors
#
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
# https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
# <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
# option. This file may not be copied, modified, or distributed
# except according to those terms.

import pytest

import ramble.util.naming


[docs] @pytest.fixture() def trie(): return ramble.util.naming.NamespaceTrie()
[docs] def test_add_single(trie): trie["foo"] = "bar" assert trie.is_prefix("foo") assert trie.has_value("foo") assert trie["foo"] == "bar"
[docs] def test_add_multiple(trie): trie["foo.bar"] = "baz" assert not trie.has_value("foo") assert trie.is_prefix("foo") assert trie.is_prefix("foo.bar") assert trie.has_value("foo.bar") assert trie["foo.bar"] == "baz" assert not trie.is_prefix("foo.bar.baz") assert not trie.has_value("foo.bar.baz")
[docs] def test_add_three(trie): # add a three-level namespace trie["foo.bar.baz"] = "quux" assert trie.is_prefix("foo") assert not trie.has_value("foo") assert trie.is_prefix("foo.bar") assert not trie.has_value("foo.bar") assert trie.is_prefix("foo.bar.baz") assert trie.has_value("foo.bar.baz") assert trie["foo.bar.baz"] == "quux" assert not trie.is_prefix("foo.bar.baz.quux") assert not trie.has_value("foo.bar.baz.quux") # Try to add a second element in a prefix namespace trie["foo.bar"] = "blah" assert trie.is_prefix("foo") assert not trie.has_value("foo") assert trie.is_prefix("foo.bar") assert trie.has_value("foo.bar") assert trie["foo.bar"] == "blah" assert trie.is_prefix("foo.bar.baz") assert trie.has_value("foo.bar.baz") assert trie["foo.bar.baz"] == "quux" assert not trie.is_prefix("foo.bar.baz.quux") assert not trie.has_value("foo.bar.baz.quux")
[docs] def test_add_none_single(trie): trie["foo"] = None assert trie.is_prefix("foo") assert trie.has_value("foo") assert trie["foo"] is None assert not trie.is_prefix("foo.bar") assert not trie.has_value("foo.bar")
[docs] def test_add_none_multiple(trie): trie["foo.bar"] = None assert trie.is_prefix("foo") assert not trie.has_value("foo") assert trie.is_prefix("foo.bar") assert trie.has_value("foo.bar") assert trie["foo.bar"] is None assert not trie.is_prefix("foo.bar.baz") assert not trie.has_value("foo.bar.baz")