diff options
author | Danny Al-Gaaf <danny.al-gaaf@bisect.de> | 2013-04-03 16:01:49 +0200 |
---|---|---|
committer | Danny Al-Gaaf <danny.al-gaaf@bisect.de> | 2013-04-25 15:56:19 +0200 |
commit | 1464169a262a3398a8e2d9837a94797b25dc4dad (patch) | |
tree | 6e7d42af7cafafae8ee2234fe689f82364806cb9 /qa | |
parent | 16c565068b14fffb4b522392a92323d244c593b6 (diff) | |
download | ceph-1464169a262a3398a8e2d9837a94797b25dc4dad.tar.gz |
test_mon_config_key.py: add missing space after comma
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
Diffstat (limited to 'qa')
-rwxr-xr-x | qa/workunits/mon/test_mon_config_key.py | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/qa/workunits/mon/test_mon_config_key.py b/qa/workunits/mon/test_mon_config_key.py index 99fa2da89dc..5d457bfa272 100755 --- a/qa/workunits/mon/test_mon_config_key.py +++ b/qa/workunits/mon/test_mon_config_key.py @@ -100,15 +100,15 @@ def run_cmd(cmd, expects=0): #end run_cmd -def gen_data(size,rnd): +def gen_data(size, rnd): chars = string.ascii_letters + string.digits return ''.join(rnd.choice(chars) for i in range(size)) def gen_key(rnd): - return gen_data(20,rnd) + return gen_data(20, rnd) def gen_tmp_file_path(rnd): - file_name = gen_data(20,rnd) + file_name = gen_data(20, rnd) file_path = os.path.join('/tmp', 'ceph-test.'+file_name) return file_path @@ -128,7 +128,7 @@ def write_data_file(data, rnd): def choose_random_op(rnd): op = rnd.choice(ops.keys()) sop = rnd.choice(ops[op]) - return (op,sop) + return (op, sop) def parse_args(args): @@ -183,13 +183,13 @@ def main(): start = time.time() while (time.time() - start) < duration: - (op,sop) = choose_random_op(rnd) + (op, sop) = choose_random_op(rnd) - LOG.info('{o}({s})'.format(o=op,s=sop)) - opLOG = LOG.getChild('{o}({s})'.format(o=op,s=sop)) + LOG.info('{o}({s})'.format(o=op, s=sop)) + opLOG = LOG.getChild('{o}({s})'.format(o=op, s=sop)) if op == 'put': - via_file = (rnd.uniform(0,100) < 50.0) + via_file = (rnd.uniform(0, 100) < 50.0) expected = 0 cmd = [ 'put' ] @@ -206,7 +206,7 @@ def main(): expected = 0 # the store just overrides the value if the key exists #end if sop == 'existing' elif sop == 'new': - for x in xrange(0,10): + for x in xrange(0, 10): key = gen_key(rnd) if key not in config_existing: break @@ -215,7 +215,7 @@ def main(): opLOG.error('unable to generate an unique key -- try again later.') continue - assert key not in config_put and key not in config_existing,\ + assert key not in config_put and key not in config_existing, \ 'key {k} was not supposed to exist!'.format(k=key) assert key is not None, \ @@ -223,11 +223,11 @@ def main(): cmd += [ key ] - (size,error) = rnd.choice(sizes) + (size, error) = rnd.choice(sizes) if size > 25: via_file = True - data = gen_data(size,rnd) + data = gen_data(size, rnd) if error == 0: # only add if we expect the put to be successful if sop == 'new': config_put.append(key) @@ -263,7 +263,7 @@ def main(): 'key \'{k_}\' not in config_existing'.format(k_=key) if sop == 'enoent': - for x in xrange(0,10): + for x in xrange(0, 10): key = base64.b64encode(os.urandom(20)) if key not in config_existing: break @@ -271,7 +271,7 @@ def main(): if key is None: opLOG.error('unable to generate an unique key -- try again later.') continue - assert key not in config_put and key not in config_existing,\ + assert key not in config_put and key not in config_existing, \ 'key {k} was not supposed to exist!'.format(k=key) expected = 0 # deleting a non-existent key succeeds @@ -301,7 +301,7 @@ def main(): 'key \'{k_}\' not in config_existing'.format(k_=key) if sop == 'enoent': - for x in xrange(0,10): + for x in xrange(0, 10): key = base64.b64encode(os.urandom(20)) if key not in config_existing: break @@ -309,7 +309,7 @@ def main(): if key is None: opLOG.error('unable to generate an unique key -- try again later.') continue - assert key not in config_put and key not in config_existing,\ + assert key not in config_put and key not in config_existing, \ 'key {k} was not supposed to exist!'.format(k=key) expected = -errno.ENOENT @@ -335,7 +335,7 @@ def main(): 'key \'{k_}\' not in config_existing'.format(k_=key) if sop == 'enoent': - for x in xrange(0,10): + for x in xrange(0, 10): key = base64.b64encode(os.urandom(20)) if key not in config_existing: break @@ -343,7 +343,7 @@ def main(): if key is None: opLOG.error('unable to generate an unique key -- try again later.') continue - assert key not in config_put and key not in config_existing,\ + assert key not in config_put and key not in config_existing, \ 'key {k} was not supposed to exist!'.format(k=key) expected = -errno.ENOENT |