diff --git a/test/probe/common.py b/test/probe/common.py index a272277a67..71d3bfbcbd 100644 --- a/test/probe/common.py +++ b/test/probe/common.py @@ -144,7 +144,7 @@ def get_ring(server, force_validate=None): ring.serialized_path, len(ring.devs)) # map server to config by port port_to_config = {} - for node_id in range(1,5): + for node_id in range(1, 5): conf = readconf('/etc/swift/%s-server/%d.conf' % (server, node_id), section_name='%s-replicator' % server) port_to_config[int(conf['bind_port'])] = conf @@ -154,13 +154,14 @@ def get_ring(server, force_validate=None): for device in os.listdir(conf['devices']): if device == dev['device']: full_path = path.realpath(path.join(conf['devices'], device)) - assert path.ismount(full_path), 'device %s in %s was not ' \ - 'mounted (%s)' % (device, conf['devices'], full_path) + assert path.ismount(full_path), \ + 'device %s in %s was not mounted (%s)' % ( + device, conf['devices'], full_path) break else: - assert False, "unable to find ring device %s " \ - "under %s's devices (%s)" % ( - dev['device'], server, conf['devices']) + raise AssertionError( + "unable to find ring device %s under %s's devices (%s)" % ( + dev['device'], server, conf['devices'])) # verify server is exposing rsync device rsync_export = '%s%s' % (server, dev['replication_port']) cmd = "rsync rsync://localhost/%s" % rsync_export @@ -173,9 +174,9 @@ def get_ring(server, force_validate=None): if line.rsplit(None, 1)[-1] == dev['device']: break else: - assert False, "unable to find ring device %s under rsync's " \ - "exported devices for %s (%s)" % ( - dev['device'], rsync_export, cmd) + raise AssertionError("unable to find ring device %s under rsync's " + "exported devices for %s (%s)" % ( + dev['device'], rsync_export, cmd)) return ring @@ -206,7 +207,7 @@ def reset_environment(): except BaseException: try: raise - except AssertionError, e: + except AssertionError as e: print >>sys.stderr, 'ERROR: %s' % e os._exit(1) finally: diff --git a/test/probe/test_container_failures.py b/test/probe/test_container_failures.py index 8b983d6f81..e71d11bf75 100755 --- a/test/probe/test_container_failures.py +++ b/test/probe/test_container_failures.py @@ -31,6 +31,7 @@ from test.probe.common import get_to_final_state, kill_nonprimary_server, \ eventlet.monkey_patch(all=False, socket=True) + def get_db_file_path(obj_dir): files = sorted(listdir(obj_dir), reverse=True) for filename in files: diff --git a/test/probe/test_replication_servers_working.py b/test/probe/test_replication_servers_working.py index 4b32fd0a94..5955712904 100644 --- a/test/probe/test_replication_servers_working.py +++ b/test/probe/test_replication_servers_working.py @@ -166,7 +166,7 @@ class TestReplicatorFunctions(TestCase): # Check behavior by deleting hashes.pkl file for directory in os.listdir(os.path.join(test_node, 'objects')): for input_dir in os.listdir(os.path.join( - test_node, 'objects', directory)): + test_node, 'objects', directory)): if os.path.isdir(os.path.join( test_node, 'objects', directory, input_dir)): shutil.rmtree(os.path.join(