summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-12-13 19:42:51 +0100
committerhut <hut@lavabit.com>2009-12-13 19:42:51 +0100
commit1159f9ec182496ddc5324f23fb1d5eae73fe63e3 (patch)
tree02a79bdd232b7aa5f49e7ee9ec713141a4118358 /test
parent4c05e43d11430fbfd8a5d86ae0070e24775251b1 (diff)
downloadranger-1159f9ec182496ddc5324f23fb1d5eae73fe63e3.tar.gz
updated / added tests
Diffstat (limited to 'test')
-rw-r--r--test/__init__.py21
-rw-r--r--test/tc_directory.py8
-rw-r--r--test/tc_displayable.py122
-rw-r--r--test/tc_ui.py61
-rw-r--r--test/test.py5
5 files changed, 213 insertions, 4 deletions
diff --git a/test/__init__.py b/test/__init__.py
index 500d3383..3043ba18 100644
--- a/test/__init__.py
+++ b/test/__init__.py
@@ -6,3 +6,24 @@ __all__ = [ x[0:x.index('.')] \
 
 def init():
 	sys.path.append(os.path.abspath(os.path.join(sys.path[0], '..')))
+
+class Fake(object):
+	def __getattr__(self, attrname):
+		if not hasattr(self, attrname):
+			setattr(self, attrname, Fake())
+		return self.__dict__[attrname]
+
+	def __call__(self, *_):
+		return Fake()
+
+	def __clear__(self):
+		self.__dict__.clear()
+
+	def __iter__(self):
+		return iter(())
+
+class OK(Exception):
+	pass
+
+def raise_ok(*_, **__):
+	raise OK()
diff --git a/test/tc_directory.py b/test/tc_directory.py
index 676ec0fe..11c94b3b 100644
--- a/test/tc_directory.py
+++ b/test/tc_directory.py
@@ -48,11 +48,11 @@ class Test1(unittest.TestCase):
 		for name in assumed_filenames:
 			f = File(name)
 			f.load()
-			equal = 0
 			for dirfile in dir.files:
-				if (f.__dict__ == dirfile.__dict__):
-					equal += 1
-			self.assertEqual(equal, 1)
+				if (f.path == dirfile.path and f.stat == dirfile.stat):
+					break
+			else:
+				self.fail("couldn't find file {0}".format(name))
 
 	def test_nonexistant_dir(self):
 		dir = Directory(NONEXISTANT_DIR)
diff --git a/test/tc_displayable.py b/test/tc_displayable.py
new file mode 100644
index 00000000..01be0c9c
--- /dev/null
+++ b/test/tc_displayable.py
@@ -0,0 +1,122 @@
+if __name__ == '__main__': from __init__ import init; init()
+
+import unittest
+import curses
+from random import randint
+
+from ranger.gui.displayable import\
+		Displayable, DisplayableContainer, OutOfBoundsException
+from test import Fake, OK, raise_ok
+
+class TestDisplayable(unittest.TestCase):
+	def setUp(self):
+		self.win = Fake()
+		self.fm = Fake()
+		self.env = Fake()
+		self.settings = Fake()
+		self.disp = Displayable( win=self.win,
+				env=self.env, fm=self.fm, settings=self.settings)
+
+		hei, wid = 100, 100
+		self.env.termsize = (hei, wid)
+
+	def tearDown(self):
+		self.disp.destroy()
+
+	def test_colorscheme(self):
+		# Using a color method implies change of window attributes
+		disp = self.disp
+
+		self.win.chgat = raise_ok
+		self.win.attrset = raise_ok
+
+		self.assertRaises(OK, disp.color, 'a', 'b')
+		self.assertRaises(OK, disp.color_at, 0, 0, 0, 'a', 'b')
+		self.assertRaises(OK, disp.color_reset)
+
+	def test_boundaries(self):
+		disp = self.disp
+		hei, wid = self.env.termsize
+
+		self.assertRaises(OutOfBoundsException, disp.resize, 0, 0, hei + 1, wid)
+		self.assertRaises(OutOfBoundsException, disp.resize, 0, 0, hei, wid + 1)
+		self.assertRaises(OutOfBoundsException, disp.resize, -1, 0, hei, wid)
+		self.assertRaises(OutOfBoundsException, disp.resize, 0, -1, hei, wid)
+
+		box = (randint(10, 20), randint(30, 40), \
+				randint(30, 40), randint(10, 20))
+
+		def in_box(y, x):
+			return (x >= box[1] and x < box[1] + box[3]) and \
+					(y >= box[0] and y < box[0] + box[2])
+
+		disp.resize(*box)
+		for y, x in zip(range(10), range(10)):
+			is_in_box = in_box(y, x)
+
+			point1 = (y, x)
+			self.assertEqual(is_in_box, point1 in disp)
+
+			point2 = Fake()
+			point2.x = x
+			point2.y = y
+			self.assertEqual(is_in_box, point2 in disp)
+
+class TestDisplayableContainer(unittest.TestCase):
+	def setUp(self):
+		self.win = Fake()
+		self.fm = Fake()
+		self.env = Fake()
+		self.settings = Fake()
+
+		self.initdict = {'win': self.win, 'settings': self.settings,
+				'fm': self.fm, 'env': self.env}
+
+		self.disp = Displayable(**self.initdict)
+		self.disc = DisplayableContainer(**self.initdict)
+		self.disc.add_obj(self.disp)
+
+		hei, wid = (100, 100)
+		self.env.termsize = (hei, wid)
+
+	def tearDown(self):
+		self.disc.destroy()
+
+	def test_container(self):
+		self.assertTrue(self.disp in self.disc.container)
+
+	def test_click(self):
+		self.disp.click = raise_ok
+
+		self.disc.resize(0, 0, 50, 50)
+		self.disp.resize(0, 0, 20, 20)
+		fakepos = Fake()
+
+		fakepos.x = 10
+		fakepos.y = 10
+		self.assertRaises(OK, self.disc.click, fakepos)
+
+		fakepos.x = 30
+		fakepos.y = 10
+		self.disc.click(fakepos)
+
+	def test_focused_object(self):
+		d1 = Displayable(**self.initdict)
+		d2 = DisplayableContainer(**self.initdict)
+		d2.add_obj(*[Displayable(**self.initdict) for x in range(5)])
+		d3 = DisplayableContainer(**self.initdict)
+		d3.add_obj(*[Displayable(**self.initdict) for x in range(5)])
+
+		self.disc.add_obj(d1, d2, d3)
+
+		d3.container[3].focused = True
+
+		self.assertEqual(self.disc.get_focused_obj(), d3.container[3])
+
+		d3.container[3].focused = False
+		d2.container[0].focused = True
+
+		self.assertEqual(self.disc.get_focused_obj(), d2.container[0])
+
+if __name__ == '__main__':
+	unittest.main()
diff --git a/test/tc_ui.py b/test/tc_ui.py
new file mode 100644
index 00000000..fbe51f64
--- /dev/null
+++ b/test/tc_ui.py
@@ -0,0 +1,61 @@
+if __name__ == '__main__': from __init__ import init; init()
+
+import unittest
+import curses
+
+from ranger.gui import ui
+
+from test import Fake, OK, raise_ok
+
+ui.curses = Fake()
+
+class Test(unittest.TestCase):
+	def setUp(self):
+
+		self.fm = Fake()
+		self.ui = ui.UI(env=Fake(), fm=self.fm)
+
+		def fakesetup():
+			self.ui.widget = Fake()
+			self.ui.add_obj(self.ui.widget)
+		self.ui.setup = fakesetup
+
+		self.ui.initialize()
+
+	def tearDown(self):
+		self.ui.destroy()
+	
+	def test_scrolling(self):
+		# test whether scrolling works
+		self.fm.scroll = raise_ok
+		self.ui.get_focused_obj = lambda: False
+
+		ui.curses.getmouse = lambda: (0, 0, 0, 0, curses.BUTTON2_PRESSED)
+		self.assertRaises(OK, self.ui.handle_mouse)
+
+		ui.curses.getmouse = lambda: (0, 0, 0, 0, curses.BUTTON4_PRESSED)
+		self.assertRaises(OK, self.ui.handle_mouse)
+	
+	def test_passing(self):
+		# Test whether certain method calls are passed to widgets
+		widget = self.ui.widget
+
+		widget.draw = raise_ok
+		self.assertRaises(OK, self.ui.draw)
+		widget.__clear__()
+
+		widget.finalize = raise_ok
+		self.assertRaises(OK, self.ui.finalize)
+		widget.__clear__()
+
+		widget.press = raise_ok
+		random_key = 123
+		self.assertRaises(OK, self.ui.handle_key, random_key)
+		widget.__clear__()
+
+		widget.destroy = raise_ok
+		self.assertRaises(OK, self.ui.destroy)
+		widget.__clear__()
+
+if __name__ == '__main__':
+	unittest.main()
diff --git a/test/test.py b/test/test.py
new file mode 100644
index 00000000..bf285a47
--- /dev/null
+++ b/test/test.py
@@ -0,0 +1,5 @@
+"""Workaround to allow running single test cases directly"""
+try:
+	from __init__ import init, Fake, OK, raise_ok
+except:
+	from test import init, Fake, OK, raise_ok
-04-19 00:38:23 +0200 committer hut <hut@lavabit.com> 2010-04-19 00:38:23 +0200 defaults.apps: harmless typo' href='/akspecs/ranger/commit/ranger/defaults/apps.py?h=v1.9.0b1&id=13c70addb0a571b16ad2351b8a833283c70a1d39'>13c70add ^
0e2b3164 ^
96883700 ^

035a39a8 ^
d012468d ^
f61767b1 ^
e70f8c83 ^



09449df0 ^
d012468d ^
845bd407 ^
d012468d ^
e70f8c83 ^


845bd407 ^
2052eb74 ^

d012468d ^
cc952d63 ^

0dc57267 ^
cc952d63 ^


23236d0c ^
e70f8c83 ^
ea87d005 ^
cc952d63 ^
d012468d ^
cc952d63 ^
4d9266ac ^
d012468d ^
cc952d63 ^
44a31d6c ^

4e0ca535 ^
44a31d6c ^
a44749f6 ^
23236d0c ^
e70f8c83 ^
23236d0c ^
8b909983 ^
cc952d63 ^
d46a05a8 ^
1b0786f2 ^



d46a05a8 ^
1b0786f2 ^

bd0ede8d ^
1b0786f2 ^


d46a05a8 ^
845bd407 ^




d46a05a8 ^
23236d0c ^

a7772cc6 ^
cc952d63 ^
23236d0c ^
d46a05a8 ^
23236d0c ^


cc952d63 ^
23236d0c ^

871c502d ^
cc952d63 ^
a7772cc6 ^
23236d0c ^
d46a05a8 ^
23236d0c ^




d383965f ^
23236d0c ^
d383965f ^
f01238dc ^
db41bc89 ^
e3744f40 ^
23236d0c ^
d46a05a8 ^
23236d0c ^




ea87d005 ^
0dc57267 ^




d46a05a8 ^
845bd407 ^






ea87d005 ^
d46a05a8 ^
845bd407 ^






ea87d005 ^
d46a05a8 ^
845bd407 ^

845bd407 ^
a7772cc6 ^

748d0a6a ^
6eb85224 ^







a5e1ccdd ^

















748d0a6a ^



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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228