Test swift-object-info opens meta and ts files
Adds a unit test to verify the change made in [1], i.e. that swift-object-info will read from .meta and .ts files as well as .data files. [1] change I43966d371218ad39414e9282cde579e48370a2a7 Change-Id: I82dde36e3a96db1a21cfe9a4cca0d941e543dfd0 Related-Bug: 1425679
This commit is contained in:
parent
bbc00d9c60
commit
15b83f67d2
@ -386,6 +386,17 @@ class TestPrintObjFullMeta(TestCliInfoBase):
|
||||
print_obj(self.datafile, swift_dir=self.testdir)
|
||||
self.assertTrue('/objects-1/' in out.getvalue())
|
||||
|
||||
def test_print_obj_meta_and_ts_files(self):
|
||||
# verify that print_obj will also read from meta and ts files
|
||||
base = os.path.splitext(self.datafile)[0]
|
||||
for ext in ('.meta', '.ts'):
|
||||
test_file = '%s%s' % (base, ext)
|
||||
os.link(self.datafile, test_file)
|
||||
out = StringIO()
|
||||
with mock.patch('sys.stdout', out):
|
||||
print_obj(test_file, swift_dir=self.testdir)
|
||||
self.assertTrue('/objects-1/' in out.getvalue())
|
||||
|
||||
def test_print_obj_no_ring(self):
|
||||
no_rings_dir = os.path.join(self.testdir, 'no_rings_here')
|
||||
os.mkdir(no_rings_dir)
|
||||
|
Loading…
Reference in New Issue
Block a user