summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-02-11 20:27:49 +0100
committerhut <hut@lavabit.com>2010-03-09 14:40:20 +0100
commit0975223399cb7559659f3c04f4f46defe70865cc (patch)
tree58ac5b5d4b8f70b64e6b039b99cbf014c341b058
parentcfe081ec178da88d6adb7edc651a05dd83810f70 (diff)
downloadranger-0975223399cb7559659f3c04f4f46defe70865cc.tar.gz
keyparser: added seperate Tree class
-rw-r--r--test/tc_newkeys.py53
1 files changed, 53 insertions, 0 deletions
diff --git a/test/tc_newkeys.py b/test/tc_newkeys.py
index c8b560ee..5c40e260 100644
--- a/test/tc_newkeys.py
+++ b/test/tc_newkeys.py
@@ -231,6 +231,54 @@ def translate_keys(obj):
 			for c in bracket_content:
 				yield ord(c)
 
+Nothing = type('nothing', (object, ), {})
+
+class Tree(object):
+	def __init__(self):
+		self._tree = dict()
+
+	def plow(self, iterable, append=Nothing):
+		"""
+		Move along a path, creating nonexistant subtrees
+		The additional argument <append> allows you to define
+		one element which will be appended at the end
+		"""
+		tree = self._tree
+		last_tree = tree
+		char = Nothing
+		for char in iterable:
+			try:
+				newtree = tree[char]
+				if not isinstance(newtree, dict):
+					raise KeyError()
+			except KeyError:
+				newtree = dict()
+				tree[char] = newtree
+			last_tree = tree
+			tree = newtree
+		if append is not Nothing:
+			if char is not Nothing:
+				last_tree[char] = append
+			else:
+				self._tree = append
+		return tree
+
+	def traverse(self, iterable):
+		"""Move along a path, raising exceptions when failed"""
+		tree = self._tree
+		for char in iterable:
+			try:
+				tree = tree[char]
+			except TypeError:
+				raise KeyError("trying to enter leaf")
+			except KeyError:
+				raise KeyError(str(char) + " not in tree " + str(tree))
+		try:
+			return tree
+		except KeyError:
+			raise KeyError(str(char) + " not in tree " + str(tree))
+
+
 class KeyMap(object):
 	"""Contains a tree with all the keybindings"""
 	def __init__(self):
@@ -383,6 +431,11 @@ class Test(PressTestCase):
 		test('k<a<>nz>')
 		test('>nz>')
 
+	def test_tree(self):
+		t = Tree()
+		subtree = t.plow('abcd', "Yes")
+		self.assertEqual("Yes", t.traverse('abcd'))
+
 	def test_add(self):
 		# depends on internals
 		c = KeyMap()
es Booth <boothj5@gmail.com> 2014-12-04 00:16:42 +0000 Added /resource autocompletion' href='/danisanti/profani-tty/commit/src/contact.h?id=5314e5970358f2864ce8dbc8e6d95f67738ffcec'>5314e597 ^
0a57c4de ^
8c9f9162 ^
6e46e8fe ^

dd11334b ^

8c9f9162 ^
3b0f7e10 ^
6e46e8fe ^
facb2a65 ^
ca3f7412 ^
8e90f7a4 ^
ca3f7412 ^
c5f76721 ^
8e90f7a4 ^
a84e4ade ^
8e90f7a4 ^
3b0f7e10 ^
8e90f7a4 ^
2f2fa8de ^
b5e06a07 ^
3b0f7e10 ^


a061b0d4 ^
8e90f7a4 ^
6794fb81 ^
a84e4ade ^
3b0f7e10 ^
d017999a ^
dd11334b ^
3b0f7e10 ^
581c1e8b ^
3b0f7e10 ^
5314e597 ^

6e46e8fe ^

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