mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-28 10:49:16 +00:00
fix most pep8 warnings
* limit all lines to 80 chars * remove spaces around parameters * missing blank lines
This commit is contained in:
parent
5f6eb87385
commit
4a85f2d0f5
1 changed files with 18 additions and 12 deletions
|
@ -19,6 +19,7 @@
|
|||
from ..repository import Repository, MAGIC
|
||||
from . import BaseTestCase
|
||||
|
||||
|
||||
class ConversionTestCase(BaseTestCase):
|
||||
|
||||
def open(self, path, repo_type=Repository, create=False):
|
||||
|
@ -29,7 +30,7 @@ def setUp(self):
|
|||
self.attic_repo = self.open(self.tmppath,
|
||||
repo_type=attic.repository.Repository,
|
||||
create=True)
|
||||
# throw some stuff in that repo, copied from `RepositoryTestCase.test1`_
|
||||
# throw some stuff in that repo, copied from `RepositoryTestCase.test1`
|
||||
for x in range(100):
|
||||
self.attic_repo.put(('%-32d' % x).encode('ascii'), b'SOMEDATA')
|
||||
self.attic_repo.close()
|
||||
|
@ -39,7 +40,8 @@ def tearDown(self):
|
|||
|
||||
def repo_valid(self,):
|
||||
repository = self.open(self.tmppath)
|
||||
state = repository.check() # can't check raises() because check() handles the error
|
||||
# can't check raises() because check() handles the error
|
||||
state = repository.check()
|
||||
repository.close()
|
||||
return state
|
||||
|
||||
|
@ -53,6 +55,7 @@ def test_convert_segments(self):
|
|||
repo.convert_segments(segments, dryrun=False)
|
||||
assert self.repo_valid()
|
||||
|
||||
|
||||
class EncryptedConversionTestCase(ConversionTestCase):
|
||||
class MockArgs:
|
||||
def __init__(self, path):
|
||||
|
@ -70,10 +73,12 @@ def setUp(self):
|
|||
# about anyways. in real runs, the original key will be retained.
|
||||
os.environ['BORG_KEYS_DIR'] = self.tmppath
|
||||
os.environ['ATTIC_PASSPHRASE'] = 'test'
|
||||
self.key = attic.key.KeyfileKey.create(self.attic_repo, self.MockArgs(self.tmppath))
|
||||
self.key = attic.key.KeyfileKey.create(self.attic_repo,
|
||||
self.MockArgs(self.tmppath))
|
||||
|
||||
def test_keys(self):
|
||||
repository = self.open(self.tmppath, repo_type = AtticRepositoryConverter)
|
||||
repository = self.open(self.tmppath,
|
||||
repo_type=AtticRepositoryConverter)
|
||||
keyfile = AtticKeyfileKey.find_key_file(repository)
|
||||
AtticRepositoryConverter.convert_keyfiles(keyfile, dryrun=False)
|
||||
|
||||
|
@ -87,8 +92,9 @@ def test_convert_all(self):
|
|||
# check should fail because of magic number
|
||||
assert not self.repo_valid()
|
||||
print("opening attic repository with borg and converting")
|
||||
repo = self.open(self.tmppath, repo_type=AtticRepositoryConverter)
|
||||
with pytest.raises(NotImplementedError):
|
||||
self.open(self.tmppath, repo_type = AtticRepositoryConverter).convert(dryrun=False)
|
||||
repo.convert(dryrun=False)
|
||||
# check that the new keyfile is alright
|
||||
keyfile = os.path.join(get_keys_dir(),
|
||||
os.path.basename(self.key.path))
|
||||
|
|
Loading…
Reference in a new issue