mirror of
https://github.com/borgbackup/borg.git
synced 2026-05-28 04:03:21 -04:00
Test that archive name is not mentioned; see #6014
This commit is contained in:
parent
f0efd4fad6
commit
ca5fc5769a
1 changed files with 8 additions and 0 deletions
|
|
@ -3529,6 +3529,14 @@ class RemoteArchiverTestCase(ArchiverTestCase):
|
|||
res = self.cmd('extract', "--debug", self.repository_location + '::test', '--strip-components', '0')
|
||||
self.assert_true(marker not in res)
|
||||
|
||||
@pytest.mark.xfail(raises=AssertionError, strict=True)
|
||||
def test_do_not_mention_archive_if_you_can_not_find_repo(self):
|
||||
"""https://github.com/borgbackup/borg/issues/6014"""
|
||||
archive = self.repository_location + '-this-repository-does-not-exist' + '::test'
|
||||
output = self.cmd(*['info', archive], exit_code=2, fork=True)
|
||||
self.assert_in('this-repository-does-not-exist', output)
|
||||
self.assert_not_in('this-repository-does-not-exist::test', output)
|
||||
|
||||
|
||||
class ArchiverCorruptionTestCase(ArchiverTestCaseBase):
|
||||
def setUp(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue