def test_remote_repo_restrict_to_path(self):
     self.attic('init', self.repository_location)
     path_prefix = os.path.dirname(self.repository_path)
     with patch.object(RemoteRepository, 'extra_test_args', ['--restrict-to-path', '/foo']):
         self.assert_raises(PathNotAllowed, lambda: self.attic('init', self.repository_location + '_1'))
     with patch.object(RemoteRepository, 'extra_test_args', ['--restrict-to-path', path_prefix]):
         self.attic('init', self.repository_location + '_2')
     with patch.object(RemoteRepository, 'extra_test_args', ['--restrict-to-path', '/foo', '--restrict-to-path', path_prefix]):
         self.attic('init', self.repository_location + '_3')
Example #2
0
 def test_remote_repo_restrict_to_path(self):
     self.attic('init', self.repository_location)
     path_prefix = os.path.dirname(self.repository_path)
     with patch.object(RemoteRepository, 'extra_test_args', ['--restrict-to-path', '/foo']):
         self.assert_raises(PathNotAllowed, lambda: self.attic('init', self.repository_location + '_1'))
     with patch.object(RemoteRepository, 'extra_test_args', ['--restrict-to-path', path_prefix]):
         self.attic('init', self.repository_location + '_2')
     with patch.object(RemoteRepository, 'extra_test_args', ['--restrict-to-path', '/foo', '--restrict-to-path', path_prefix]):
         self.attic('init', self.repository_location + '_3')
 def test_replay_of_readonly_repository(self):
     self.add_keys()
     for name in os.listdir(self.repository.path):
         if name.startswith('index.'):
             os.unlink(os.path.join(self.repository.path, name))
     with patch.object(UpgradableLock, 'upgrade', side_effect=UpgradableLock.WriteLockFailed) as upgrade:
         self.reopen()
         self.assert_raises(UpgradableLock.WriteLockFailed, lambda: len(self.repository))
         upgrade.assert_called_once()
Example #4
0
 def test_replay_of_readonly_repository(self):
     self.add_keys()
     for name in os.listdir(self.repository.path):
         if name.startswith('index.'):
             os.unlink(os.path.join(self.repository.path, name))
     with patch.object(UpgradableLock, 'upgrade', side_effect=UpgradableLock.LockUpgradeFailed) as upgrade:
         self.reopen()
         self.assert_raises(UpgradableLock.LockUpgradeFailed, lambda: len(self.repository))
         upgrade.assert_called_once()
Example #5
0
 def test_crash_before_compact(self):
     self.repository.put(bytes(32), b'data')
     self.repository.put(bytes(32), b'data2')
     # Simulate a crash before compact
     with patch.object(Repository, 'compact_segments') as compact:
         self.repository.commit()
         compact.assert_called_once()
     self.reopen()
     self.check(repair=True)
     self.assert_equal(self.repository.get(bytes(32)), b'data2')
 def test_crash_before_compact(self):
     self.repository.put(bytes(32), b'data')
     self.repository.put(bytes(32), b'data2')
     # Simulate a crash before compact
     with patch.object(Repository, 'compact_segments') as compact:
         self.repository.commit()
         compact.assert_called_once()
     self.reopen()
     self.check(repair=True)
     self.assert_equal(self.repository.get(bytes(32)), b'data2')
 def setUp(self):
     super(ArchiverCheckTestCase, self).setUp()
     with patch.object(ChunkBuffer, 'BUFFER_SIZE', 10):
         self.attic('init', self.repository_location)
         self.create_src_archive('archive1')
         self.create_src_archive('archive2')
Example #8
0
 def setUp(self):
     super(ArchiverCheckTestCase, self).setUp()
     with patch.object(ChunkBuffer, 'BUFFER_SIZE', 10):
         self.attic('init', self.repository_location)
         self.create_src_archive('archive1')
         self.create_src_archive('archive2')