mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
add another path trie test for wildcard vs. contant
This commit is contained in:
parent
dd6c076454
commit
2b838b808e
@ -98,4 +98,17 @@ public class PathTrieTests {
|
|||||||
assertThat(trie.retrieve("/b/testX", params), equalTo("test2"));
|
assertThat(trie.retrieve("/b/testX", params), equalTo("test2"));
|
||||||
assertThat(params.get("name"), equalTo("testX"));
|
assertThat(params.get("name"), equalTo("testX"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testPreferNonWildcardExecution() {
|
||||||
|
PathTrie<String> trie = new PathTrie<String>();
|
||||||
|
trie.insert("{test}", "test1");
|
||||||
|
trie.insert("b", "test2");
|
||||||
|
trie.insert("{test}/a", "test3");
|
||||||
|
trie.insert("b/a", "test4");
|
||||||
|
|
||||||
|
Map<String, String> params = newHashMap();
|
||||||
|
assertThat(trie.retrieve("/b", params), equalTo("test2"));
|
||||||
|
assertThat(trie.retrieve("/b/a", params), equalTo("test4"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user