forked from Kinetic/kinetic-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_cmd.py
424 lines (392 loc) · 16.1 KB
/
test_cmd.py
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
# Copyright 2013-2015 Seagate Technology LLC.
#
# This Source Code Form is subject to the terms of the Mozilla
# Public License, v. 2.0. If a copy of the MPL was not
# distributed with this file, You can obtain one at
# https://mozilla.org/MP:/2.0/.
#
# This program is distributed in the hope that it will be useful,
# but is provided AS-IS, WITHOUT ANY WARRANTY; including without
# the implied warranty of MERCHANTABILITY, NON-INFRINGEMENT or
# FITNESS FOR A PARTICULAR PURPOSE. See the Mozilla Public
# License for more details.
#
# See www.openkinetic.org for more project information
#
#@author: Ignacio Corderi
import contextlib
import StringIO
import sys
import unittest
from kinetic import client
from kinetic import cmd
from base import BaseTestCase
class BaseCommandTestCase(BaseTestCase):
def setUp(self):
super(BaseCommandTestCase, self).setUp()
self.test_key = self.buildKey('test')
self.client = client.Client(self.host, self.port)
self.client.connect()
self.conn_args = '-H %s -P %s ' % (self.host, self.port)
@contextlib.contextmanager
def capture_stdout(self):
_orig_stdout = sys.stdout
sys.stdout = StringIO.StringIO()
try:
yield sys.stdout
finally:
sys.stdout = _orig_stdout
@contextlib.contextmanager
def capture_stdio(self):
_orig_stdout = sys.stdout
sys.stdout = StringIO.StringIO()
_orig_stderr = sys.stderr
sys.stderr = StringIO.StringIO()
try:
yield sys.stdout, sys.stderr
finally:
sys.stdout = _orig_stdout
sys.stderr = _orig_stderr
def run_cmd(self, args):
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
return errorcode, output
class TestCommand(BaseCommandTestCase):
def test_command_put(self):
# make sure there's nothing there
value = self.client.get(self.test_key)
self.assert_(value is None)
# add something from the command line
args = 'put %s myvalue' % self.test_key
errorcode = cmd.main(self.conn_args + args)
# returns no error
self.assertFalse(errorcode)
# validate key is set
entry = self.client.get(self.test_key)
self.assertEquals('myvalue', entry.value)
def test_command_get(self):
# make sure there's nothing there
value = self.client.get(self.test_key)
self.assert_(value is None)
# try to read value from command line
args = 'get %s' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns error and no output
self.assert_(errorcode)
self.assertEquals('', output)
# put something there
self.client.put(self.test_key, 'myvalue')
# try to read value from command line
args = 'get %s' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and value
self.assertFalse(errorcode)
self.assertEquals('myvalue\n', output)
# and the data is in fact there
entry = self.client.get(self.test_key)
self.assertEquals('myvalue', entry.value)
def test_command_delete(self):
# make sure there's nothing there
value = self.client.get(self.test_key)
self.assert_(value is None)
# try to remove key from command line
args = 'delete %s' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns error and no output
self.assert_(errorcode)
self.assertEquals('', output)
# put something there
self.client.put(self.test_key, 'myvalue')
# try to remove key from command line
args = 'delete %s' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and no output
self.assertFalse(errorcode)
self.assertEquals('', output)
# and the data is in fact removed
value = self.client.get(self.test_key)
self.assert_(value is None)
def test_command_list(self):
# range will include test_key
start = self.test_key[:-1]
end = self.test_key + 'END'
# range starts empty
key_list = self.client.getKeyRange(start, end)
self.assertEquals([], key_list)
# validate empty from the command line
args = 'list %s %s' % (start, end)
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and no output
self.assertFalse(errorcode)
self.assertEquals('', output)
# add test_key
self.client.put(self.test_key, 'myvalue')
# validate list from the command line
args = 'list %s %s' % (start, end)
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and list of keys
self.assertFalse(errorcode)
self.assertEquals('%s\n' % self.test_key, output)
def test_list_prefix(self):
# because the cmd output uses text/line based delimiters it's hard to
# reason about keynames with a new line in them in this test
bad_characters = [ord(c) for c in ('\n', '\r')]
keys = [self.test_key + chr(ord_) for ord_ in range(200) if ord_ not
in bad_characters]
for i, key in enumerate(keys):
self.client.put(key, 'myvalue.%s' % i)
args = 'list %s' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and list of keys
self.assertFalse(errorcode)
output_keys = output.splitlines()
self.assertEquals(len(keys), len(output_keys))
self.assertEquals(keys, output_keys)
# add the prefix key
self.client.put(self.test_key, 'mystart')
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and list of keys
self.assertFalse(errorcode)
output_keys = output.splitlines()
self.assertEquals(len(keys) + 1, len(output_keys))
self.assertEquals(self.test_key, output_keys[0])
# add something just "after" the prefix
end_key = self.test_key[-1] + chr(ord(self.test_key[-1]) + 1)
self.client.put(end_key, 'myend')
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and list of keys
self.assertFalse(errorcode)
output_keys = output.splitlines()
self.assertEquals(len(keys) + 1, len(output_keys))
self.assert_(end_key not in output_keys)
def test_command_next(self):
# make sure there's nothing there
value = self.client.get(self.test_key)
self.assert_(value is None)
# try to read value from command line
args = 'next %s' % self.test_key[:-1]
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# if simulator is empty, there's no output
if not output:
# returns error and no output
self.assertEquals('', output)
self.assertTrue(errorcode)
else:
self.assertFalse(errorcode)
# put something there
self.client.put(self.test_key, 'myvalue')
# try a short offset to value from command line
args = 'next %s' % self.test_key[:-1]
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and data
self.assertFalse(errorcode)
self.assertEquals('myvalue\n', output)
# try a longer offset to value from command line
args = 'next %s' % self.test_key[0]
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and data
self.assertFalse(errorcode)
self.assertEquals('myvalue\n', output)
# try a next right on top of value from command line
args = 'next %s' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# if simulator is empty, there's no output
if not output:
# returns error and no output
self.assert_(errorcode)
self.assertEquals('', output)
else:
self.assertFalse(errorcode)
# and past value from command line
args = 'next %sXXX' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# if simulator is empty, there's no output
if not output:
# returns error and no output
self.assert_(errorcode)
self.assertEquals('', output)
else:
self.assertFalse(errorcode)
def test_command_next_verbose(self):
# put something there
self.client.put(self.test_key, 'myvalue')
# try a short offset to value from command line
args = '-vb next %s' % self.test_key[:-1]
with self.capture_stdio() as stdio:
errorcode = cmd.main(self.conn_args + args)
stdout, stderr = stdio
output = stdout.getvalue()
verbose = stderr.getvalue()
# returns no error and data
self.assertFalse(errorcode)
self.assertEquals('key: %s\n' % self.test_key, verbose)
self.assertEquals('myvalue\n', output)
def test_command_prev(self):
# make sure there's nothing there
value = self.client.get(self.test_key)
self.assert_(value is None)
# try to read value from command line
args = 'prev %sXXX' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# if simulator is empty, there's no output
if not output:
# returns error and no output
self.assertEquals('', output)
self.assertTrue(errorcode)
else:
self.assertFalse(errorcode)
# put something there
self.client.put(self.test_key, 'myvalue')
# try a short offset to value from command line
args = 'prev %sXXX' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and data
self.assertFalse(errorcode)
self.assertEquals('myvalue\n', output)
# try a longer offset to value from command line
args = 'prev %s~' % self.test_key.rsplit('/', 1)[0]
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# returns no error and data
self.assertFalse(errorcode)
self.assertEquals('myvalue\n', output)
# try a prev right on top of value from command line
args = 'prev %s' % self.test_key
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# if simulator is empty, there's no output
if not output:
# returns error and no output
self.assertEquals('', output)
self.assertTrue(errorcode)
else:
self.assertFalse(errorcode)
# and past value from command line
args = 'prev %s' % self.test_key[:-1]
with self.capture_stdout() as stdout:
errorcode = cmd.main(self.conn_args + args)
output = stdout.getvalue()
# if simulator is empty, there's no output
if not output:
# returns error and no output
self.assertEquals('', output)
self.assertTrue(errorcode)
else:
self.assertFalse(errorcode)
def test_command_prev_verbose(self):
# put something there
self.client.put(self.test_key, 'myvalue')
# try a short offset to value from command line
args = '-vb prev %s~' % self.test_key
with self.capture_stdio() as stdio:
errorcode = cmd.main(self.conn_args + args)
stdout, stderr = stdio
output = stdout.getvalue()
verbose = stderr.getvalue()
# returns no error and data
self.assertFalse(errorcode)
self.assertEquals('key: %s\n' % self.test_key, verbose)
self.assertEquals('myvalue\n', output)
class TestGetRangeCommand(BaseCommandTestCase):
def test_command_getr(self):
num_keys = 3
for i in range(num_keys):
self.client.put(self.test_key + '.%.5d' % i, 'myvalue.%.5d' % i)
args = 'getr %s' % self.test_key
errorcode, output = self.run_cmd(args)
self.assertFalse(errorcode)
expected = ''.join(['myvalue.%.5d' % i for i in range(num_keys)])
self.assertEquals(expected + '\n', output)
def test_missing_keys(self):
args = 'getr %s' % self.test_key
errorcode, output = self.run_cmd(args)
self.assertFalse(errorcode)
self.assertEquals('\n', output)
def test_explicit_range(self):
num_keys = 10
for i in range(num_keys):
self.client.put(self.test_key + '.%.5d' % i, 'myvalue.%.5d' % i)
last_included_key_number = num_keys // 2
args = 'getr {key} {key}.{stop:0=5}'.format(key=self.test_key,
stop=(last_included_key_number))
errorcode, output = self.run_cmd(args)
self.assertFalse(errorcode)
expected = ''.join(['myvalue.%.5d' % i for i in
range(last_included_key_number + 1)])
self.assertEquals(expected + '\n', output)
class TestDeleteRangeCommand(BaseCommandTestCase):
def test_command_deleter(self):
num_keys = 3
keys = []
for i in range(num_keys):
key = self.test_key + '.%.5d' % i
self.client.put(key, 'myvalue.%.5d' % i)
keys.append(key)
args = 'deleter %s' % self.test_key
errorcode, output = self.run_cmd(args)
self.assertFalse(errorcode)
self.assertEquals('', output)
for key in keys:
self.assertEquals(None, self.client.get(key))
def test_missing_keys(self):
args = 'deleter %s' % self.test_key
errorcode, output = self.run_cmd(args)
self.assertFalse(errorcode)
self.assertEquals('', output)
def test_explicit_range(self):
num_keys = 10
keys = []
for i in range(num_keys):
key = self.test_key + '.%.5d' % i
self.client.put(key, 'myvalue.%.5d' % i)
keys.append(key)
last_included_key_number = num_keys // 2
args = 'deleter {key} {key}.{stop:0=5}'.format(key=self.test_key,
stop=(last_included_key_number))
errorcode, output = self.run_cmd(args)
self.assertFalse(errorcode)
for i, key in enumerate(keys):
if i <= last_included_key_number:
# deleted
self.assertEquals(None, self.client.get(key))
else:
# not deleted
self.assertEquals('myvalue.%.5d' % i,
self.client.get(key).value)
if __name__ == '__main__':
unittest.main()