make basic test more robust, try 2

check if we have all expected files in list output (but ignore extra lines,
like "can't load libfakeroot" or so).
This commit is contained in:
Thomas Waldmann 2015-11-07 00:30:02 +01:00
parent eb3bc1023b
commit 8cc726a107
1 changed files with 6 additions and 4 deletions

View File

@ -304,9 +304,9 @@ class ArchiverTestCase(ArchiverTestCaseBase):
self.cmd('create', '--stats', self.repository_location + '::test.2', 'input')
with changedir('output'):
self.cmd('extract', self.repository_location + '::test')
list_output = self.cmd('list', self.repository_location)
self.assert_in('test ', list_output)
self.assert_in('test.2 ', list_output)
list_output = self.cmd('list', '--short', self.repository_location)
self.assert_in('test', list_output)
self.assert_in('test.2', list_output)
expected = [
'input',
'input/bdev',
@ -328,7 +328,9 @@ class ArchiverTestCase(ArchiverTestCaseBase):
# remove the file we did not backup, so input and output become equal
expected.remove('input/flagfile') # this file is UF_NODUMP
os.remove(os.path.join('input', 'flagfile'))
self.assert_equal(self.cmd('list', '--short', self.repository_location + '::test').splitlines(), expected)
list_output = self.cmd('list', '--short', self.repository_location + '::test')
for name in expected:
self.assert_in(name, list_output)
self.assert_dirs_equal('input', 'output/input')
info_output = self.cmd('info', self.repository_location + '::test')
item_count = 3 if has_lchflags else 4 # one file is UF_NODUMP