1
# (C) 2006 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
"""Tests for the Repository facility that are not interface tests.
19
For interface tests see tests/repository_implementations/*.py.
21
For concrete class tests see this file, and for storage formats tests
26
from StringIO import StringIO
29
import bzrlib.bzrdir as bzrdir
30
import bzrlib.errors as errors
31
from bzrlib.errors import (NotBranchError,
34
UnsupportedFormatError,
36
import bzrlib.repository as repository
37
from bzrlib.tests import TestCase, TestCaseWithTransport
38
from bzrlib.transport import get_transport
39
from bzrlib.transport.http import HttpServer
40
from bzrlib.transport.memory import MemoryServer
43
class TestDefaultFormat(TestCase):
45
def test_get_set_default_format(self):
46
old_format = repository.RepositoryFormat.get_default_format()
47
# default is None - we cannot create a Repository independently yet
48
self.assertTrue(isinstance(old_format, repository.RepositoryFormat7))
49
repository.RepositoryFormat.set_default_format(SampleRepositoryFormat())
50
# creating a repository should now create an instrumented dir.
52
# the default branch format is used by the meta dir format
53
# which is not the default bzrdir format at this point
54
dir = bzrdir.BzrDirMetaFormat1().initialize('memory:/')
55
result = dir.create_repository()
56
self.assertEqual(result, 'A bzr repository dir')
58
repository.RepositoryFormat.set_default_format(old_format)
59
self.assertEqual(old_format, repository.RepositoryFormat.get_default_format())
62
class SampleRepositoryFormat(repository.RepositoryFormat):
65
this format is initializable, unsupported to aid in testing the
66
open and open(unsupported=True) routines.
69
def get_format_string(self):
70
"""See RepositoryFormat.get_format_string()."""
71
return "Sample .bzr repository format."
73
def initialize(self, a_bzrdir, shared=False):
74
"""Initialize a repository in a BzrDir"""
75
t = a_bzrdir.get_repository_transport(self)
76
t.put('format', StringIO(self.get_format_string()))
77
return 'A bzr repository dir'
79
def is_supported(self):
82
def open(self, a_bzrdir, _found=False):
83
return "opened repository."
86
class TestRepositoryFormat(TestCaseWithTransport):
87
"""Tests for the Repository format detection used by the bzr meta dir facility.BzrBranchFormat facility."""
89
def test_find_format(self):
90
# is the right format object found for a repository?
91
# create a branch with a few known format objects.
92
# this is not quite the same as
93
self.build_tree(["foo/", "bar/"])
94
def check_format(format, url):
95
dir = format._matchingbzrdir.initialize(url)
96
format.initialize(dir)
97
t = get_transport(url)
98
found_format = repository.RepositoryFormat.find_format(dir)
99
self.failUnless(isinstance(found_format, format.__class__))
100
check_format(repository.RepositoryFormat7(), "bar")
102
def test_find_format_no_repository(self):
103
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
104
self.assertRaises(errors.NoRepositoryPresent,
105
repository.RepositoryFormat.find_format,
108
def test_find_format_unknown_format(self):
109
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
110
SampleRepositoryFormat().initialize(dir)
111
self.assertRaises(UnknownFormatError,
112
repository.RepositoryFormat.find_format,
115
def test_register_unregister_format(self):
116
format = SampleRepositoryFormat()
118
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
120
format.initialize(dir)
121
# register a format for it.
122
repository.RepositoryFormat.register_format(format)
123
# which repository.Open will refuse (not supported)
124
self.assertRaises(UnsupportedFormatError, repository.Repository.open, self.get_url())
125
# but open(unsupported) will work
126
self.assertEqual(format.open(dir), "opened repository.")
127
# unregister the format
128
repository.RepositoryFormat.unregister_format(format)
131
class TestFormat6(TestCaseWithTransport):
133
def test_no_ancestry_weave(self):
134
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
135
repo = repository.RepositoryFormat6().initialize(control)
136
# We no longer need to create the ancestry.weave file
137
# since it is *never* used.
138
self.assertRaises(NoSuchFile,
139
control.transport.get,
143
class TestFormat7(TestCaseWithTransport):
145
def test_disk_layout(self):
146
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
147
repo = repository.RepositoryFormat7().initialize(control)
148
# in case of side effects of locking.
152
# format 'Bazaar-NG Repository format 7'
154
# inventory.weave == empty_weave
155
# empty revision-store directory
156
# empty weaves directory
157
t = control.get_repository_transport(None)
158
self.assertEqualDiff('Bazaar-NG Repository format 7',
159
t.get('format').read())
160
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
161
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
162
self.assertEqualDiff('# bzr weave file v5\n'
165
t.get('inventory.weave').read())
167
def test_shared_disk_layout(self):
168
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
169
repo = repository.RepositoryFormat7().initialize(control, shared=True)
171
# format 'Bazaar-NG Repository format 7'
172
# inventory.weave == empty_weave
173
# empty revision-store directory
174
# empty weaves directory
175
# a 'shared-storage' marker file.
176
# lock is not present when unlocked
177
t = control.get_repository_transport(None)
178
self.assertEqualDiff('Bazaar-NG Repository format 7',
179
t.get('format').read())
180
self.assertEqualDiff('', t.get('shared-storage').read())
181
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
182
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
183
self.assertEqualDiff('# bzr weave file v5\n'
186
t.get('inventory.weave').read())
187
self.assertFalse(t.has('branch-lock'))
189
def test_creates_lockdir(self):
190
"""Make sure it appears to be controlled by a LockDir existence"""
191
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
192
repo = repository.RepositoryFormat7().initialize(control, shared=True)
193
t = control.get_repository_transport(None)
194
# TODO: Should check there is a 'lock' toplevel directory,
195
# regardless of contents
196
self.assertFalse(t.has('lock/held/info'))
198
self.assertTrue(t.has('lock/held/info'))
200
def test_uses_lockdir(self):
201
"""repo format 7 actually locks on lockdir"""
202
base_url = self.get_url()
203
control = bzrdir.BzrDirMetaFormat1().initialize(base_url)
204
repo = repository.RepositoryFormat7().initialize(control, shared=True)
205
t = control.get_repository_transport(None)
209
# make sure the same lock is created by opening it
210
repo = repository.Repository.open(base_url)
212
self.assertTrue(t.has('lock/held/info'))
214
self.assertFalse(t.has('lock/held/info'))
216
def test_shared_no_tree_disk_layout(self):
217
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
218
repo = repository.RepositoryFormat7().initialize(control, shared=True)
219
repo.set_make_working_trees(False)
221
# format 'Bazaar-NG Repository format 7'
223
# inventory.weave == empty_weave
224
# empty revision-store directory
225
# empty weaves directory
226
# a 'shared-storage' marker file.
227
t = control.get_repository_transport(None)
228
self.assertEqualDiff('Bazaar-NG Repository format 7',
229
t.get('format').read())
230
## self.assertEqualDiff('', t.get('lock').read())
231
self.assertEqualDiff('', t.get('shared-storage').read())
232
self.assertEqualDiff('', t.get('no-working-trees').read())
233
repo.set_make_working_trees(True)
234
self.assertFalse(t.has('no-working-trees'))
235
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
236
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
237
self.assertEqualDiff('# bzr weave file v5\n'
240
t.get('inventory.weave').read())
243
class TestFormatKnit1(TestCaseWithTransport):
245
def test_disk_layout(self):
246
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
247
repo = repository.RepositoryFormatKnit1().initialize(control)
248
# in case of side effects of locking.
252
# format 'Bazaar-NG Knit Repository Format 1'
253
# lock: is a directory
254
# inventory.weave == empty_weave
255
# empty revision-store directory
256
# empty weaves directory
257
t = control.get_repository_transport(None)
258
self.assertEqualDiff('Bazaar-NG Knit Repository Format 1',
259
t.get('format').read())
260
# XXX: no locks left when unlocked at the moment
261
# self.assertEqualDiff('', t.get('lock').read())
262
self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
265
def check_knits(self, t):
266
"""check knit content for a repository."""
267
self.assertEqualDiff('# bzr knit index 7\n',
268
t.get('inventory.kndx').read())
270
self.assertTrue(t.has('inventory.knit'))
271
self.assertEqualDiff('# bzr knit index 7\n',
272
t.get('revisions.kndx').read())
274
self.assertTrue(t.has('revisions.knit'))
275
self.assertEqualDiff('# bzr knit index 7\n',
276
t.get('signatures.kndx').read())
278
self.assertTrue(t.has('signatures.knit'))
280
def test_shared_disk_layout(self):
281
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
282
repo = repository.RepositoryFormatKnit1().initialize(control, shared=True)
284
# format 'Bazaar-NG Knit Repository Format 1'
285
# lock: is a directory
286
# inventory.weave == empty_weave
287
# empty revision-store directory
288
# empty weaves directory
289
# a 'shared-storage' marker file.
290
t = control.get_repository_transport(None)
291
self.assertEqualDiff('Bazaar-NG Knit Repository Format 1',
292
t.get('format').read())
293
# XXX: no locks left when unlocked at the moment
294
# self.assertEqualDiff('', t.get('lock').read())
295
self.assertEqualDiff('', t.get('shared-storage').read())
296
self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
299
def test_shared_no_tree_disk_layout(self):
300
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
301
repo = repository.RepositoryFormatKnit1().initialize(control, shared=True)
302
repo.set_make_working_trees(False)
304
# format 'Bazaar-NG Knit Repository Format 1'
306
# inventory.weave == empty_weave
307
# empty revision-store directory
308
# empty weaves directory
309
# a 'shared-storage' marker file.
310
t = control.get_repository_transport(None)
311
self.assertEqualDiff('Bazaar-NG Knit Repository Format 1',
312
t.get('format').read())
313
# XXX: no locks left when unlocked at the moment
314
# self.assertEqualDiff('', t.get('lock').read())
315
self.assertEqualDiff('', t.get('shared-storage').read())
316
self.assertEqualDiff('', t.get('no-working-trees').read())
317
repo.set_make_working_trees(True)
318
self.assertFalse(t.has('no-working-trees'))
319
self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
323
class InterString(repository.InterRepository):
324
"""An inter-repository optimised code path for strings.
326
This is for use during testing where we use strings as repositories
327
so that none of the default regsitered inter-repository classes will
332
def is_compatible(repo_source, repo_target):
333
"""InterString is compatible with strings-as-repos."""
334
return isinstance(repo_source, str) and isinstance(repo_target, str)
337
class TestInterRepository(TestCaseWithTransport):
339
def test_get_default_inter_repository(self):
340
# test that the InterRepository.get(repo_a, repo_b) probes
341
# for a inter_repo class where is_compatible(repo_a, repo_b) returns
342
# true and returns a default inter_repo otherwise.
343
# This also tests that the default registered optimised interrepository
344
# classes do not barf inappropriately when a surprising repository type
346
dummy_a = "Repository 1."
347
dummy_b = "Repository 2."
348
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
350
def assertGetsDefaultInterRepository(self, repo_a, repo_b):
351
"""Asserts that InterRepository.get(repo_a, repo_b) -> the default."""
352
inter_repo = repository.InterRepository.get(repo_a, repo_b)
353
self.assertEqual(repository.InterRepository,
354
inter_repo.__class__)
355
self.assertEqual(repo_a, inter_repo.source)
356
self.assertEqual(repo_b, inter_repo.target)
358
def test_register_inter_repository_class(self):
359
# test that a optimised code path provider - a
360
# InterRepository subclass can be registered and unregistered
361
# and that it is correctly selected when given a repository
362
# pair that it returns true on for the is_compatible static method
364
dummy_a = "Repository 1."
365
dummy_b = "Repository 2."
366
repository.InterRepository.register_optimiser(InterString)
368
# we should get the default for something InterString returns False
370
self.assertFalse(InterString.is_compatible(dummy_a, None))
371
self.assertGetsDefaultInterRepository(dummy_a, None)
372
# and we should get an InterString for a pair it 'likes'
373
self.assertTrue(InterString.is_compatible(dummy_a, dummy_b))
374
inter_repo = repository.InterRepository.get(dummy_a, dummy_b)
375
self.assertEqual(InterString, inter_repo.__class__)
376
self.assertEqual(dummy_a, inter_repo.source)
377
self.assertEqual(dummy_b, inter_repo.target)
379
repository.InterRepository.unregister_optimiser(InterString)
380
# now we should get the default InterRepository object again.
381
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
384
class TestInterWeaveRepo(TestCaseWithTransport):
386
def test_is_compatible_and_registered(self):
387
# InterWeaveRepo is compatible when either side
388
# is a format 5/6/7 branch
389
formats = [repository.RepositoryFormat5(),
390
repository.RepositoryFormat6(),
391
repository.RepositoryFormat7()]
392
incompatible_formats = [repository.RepositoryFormat4(),
393
repository.RepositoryFormatKnit1(),
395
repo_a = self.make_repository('a')
396
repo_b = self.make_repository('b')
397
is_compatible = repository.InterWeaveRepo.is_compatible
398
for source in incompatible_formats:
399
# force incompatible left then right
400
repo_a._format = source
401
repo_b._format = formats[0]
402
self.assertFalse(is_compatible(repo_a, repo_b))
403
self.assertFalse(is_compatible(repo_b, repo_a))
404
for source in formats:
405
repo_a._format = source
406
for target in formats:
407
repo_b._format = target
408
self.assertTrue(is_compatible(repo_a, repo_b))
409
self.assertEqual(repository.InterWeaveRepo,
410
repository.InterRepository.get(repo_a,
414
class TestRepositoryConverter(TestCaseWithTransport):
416
def test_convert_empty(self):
417
t = get_transport(self.get_url('.'))
418
t.mkdir('repository')
419
repo_dir = bzrdir.BzrDirMetaFormat1().initialize('repository')
420
repo = repository.RepositoryFormat7().initialize(repo_dir)
421
target_format = repository.RepositoryFormatKnit1()
422
converter = repository.CopyConverter(target_format)
423
pb = bzrlib.ui.ui_factory.nested_progress_bar()
425
converter.convert(repo, pb)
428
repo = repo_dir.open_repository()
429
self.assertTrue(isinstance(target_format, repo._format.__class__))