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
28
import bzrlib.bzrdir as bzrdir
29
import bzrlib.errors as errors
30
from bzrlib.errors import (NotBranchError,
33
UnsupportedFormatError,
35
import bzrlib.repository as repository
36
from bzrlib.tests import TestCase, TestCaseWithTransport
37
from bzrlib.transport import get_transport
38
from bzrlib.transport.http import HttpServer
39
from bzrlib.transport.memory import MemoryServer
42
class TestDefaultFormat(TestCase):
44
def test_get_set_default_format(self):
45
old_format = repository.RepositoryFormat.get_default_format()
46
# default is None - we cannot create a Repository independently yet
47
self.assertTrue(isinstance(old_format, repository.RepositoryFormat7))
48
repository.RepositoryFormat.set_default_format(SampleRepositoryFormat())
49
# creating a repository should now create an instrumented dir.
51
# the default branch format is used by the meta dir format
52
# which is not the default bzrdir format at this point
53
dir = bzrdir.BzrDirMetaFormat1().initialize('memory:/')
54
result = dir.create_repository()
55
self.assertEqual(result, 'A bzr repository dir')
57
repository.RepositoryFormat.set_default_format(old_format)
58
self.assertEqual(old_format, repository.RepositoryFormat.get_default_format())
61
class SampleRepositoryFormat(repository.RepositoryFormat):
64
this format is initializable, unsupported to aid in testing the
65
open and open(unsupported=True) routines.
68
def get_format_string(self):
69
"""See RepositoryFormat.get_format_string()."""
70
return "Sample .bzr repository format."
72
def initialize(self, a_bzrdir, shared=False):
73
"""Initialize a repository in a BzrDir"""
74
t = a_bzrdir.get_repository_transport(self)
75
t.put('format', StringIO(self.get_format_string()))
76
return 'A bzr repository dir'
78
def is_supported(self):
81
def open(self, a_bzrdir, _found=False):
82
return "opened repository."
85
class TestRepositoryFormat(TestCaseWithTransport):
86
"""Tests for the Repository format detection used by the bzr meta dir facility.BzrBranchFormat facility."""
88
def test_find_format(self):
89
# is the right format object found for a repository?
90
# create a branch with a few known format objects.
91
# this is not quite the same as
92
self.build_tree(["foo/", "bar/"])
93
def check_format(format, url):
94
dir = format._matchingbzrdir.initialize(url)
95
format.initialize(dir)
96
t = get_transport(url)
97
found_format = repository.RepositoryFormat.find_format(dir)
98
self.failUnless(isinstance(found_format, format.__class__))
99
check_format(repository.RepositoryFormat7(), "bar")
101
def test_find_format_no_repository(self):
102
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
103
self.assertRaises(errors.NoRepositoryPresent,
104
repository.RepositoryFormat.find_format,
107
def test_find_format_unknown_format(self):
108
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
109
SampleRepositoryFormat().initialize(dir)
110
self.assertRaises(UnknownFormatError,
111
repository.RepositoryFormat.find_format,
114
def test_register_unregister_format(self):
115
format = SampleRepositoryFormat()
117
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
119
format.initialize(dir)
120
# register a format for it.
121
repository.RepositoryFormat.register_format(format)
122
# which repository.Open will refuse (not supported)
123
self.assertRaises(UnsupportedFormatError, repository.Repository.open, self.get_url())
124
# but open(unsupported) will work
125
self.assertEqual(format.open(dir), "opened repository.")
126
# unregister the format
127
repository.RepositoryFormat.unregister_format(format)
130
class TestFormat6(TestCaseWithTransport):
132
def test_no_ancestry_weave(self):
133
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
134
repo = repository.RepositoryFormat6().initialize(control)
135
# We no longer need to create the ancestry.weave file
136
# since it is *never* used.
137
self.assertRaises(NoSuchFile,
138
control.transport.get,
142
class TestFormat7(TestCaseWithTransport):
144
def test_disk_layout(self):
145
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
146
repo = repository.RepositoryFormat7().initialize(control)
148
# format 'Bazaar-NG Repository format 7'
150
# inventory.weave == empty_weave
151
# empty revision-store directory
152
# empty weaves directory
153
t = control.get_repository_transport(None)
154
self.assertEqualDiff('Bazaar-NG Repository format 7',
155
t.get('format').read())
156
self.assertEqualDiff('', t.get('lock').read())
157
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
158
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
159
self.assertEqualDiff('# bzr weave file v5\n'
162
t.get('inventory.weave').read())
164
def test_shared_disk_layout(self):
165
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
166
repo = repository.RepositoryFormat7().initialize(control, shared=True)
168
# format 'Bazaar-NG Repository format 7'
170
# inventory.weave == empty_weave
171
# empty revision-store directory
172
# empty weaves directory
173
# a 'shared-storage' marker file.
174
t = control.get_repository_transport(None)
175
self.assertEqualDiff('Bazaar-NG Repository format 7',
176
t.get('format').read())
177
self.assertEqualDiff('', t.get('lock').read())
178
self.assertEqualDiff('', t.get('shared-storage').read())
179
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
180
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
181
self.assertEqualDiff('# bzr weave file v5\n'
184
t.get('inventory.weave').read())
186
def test_shared_no_tree_disk_layout(self):
187
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
188
repo = repository.RepositoryFormat7().initialize(control, shared=True)
189
repo.set_make_working_trees(False)
191
# format 'Bazaar-NG Repository format 7'
193
# inventory.weave == empty_weave
194
# empty revision-store directory
195
# empty weaves directory
196
# a 'shared-storage' marker file.
197
t = control.get_repository_transport(None)
198
self.assertEqualDiff('Bazaar-NG Repository format 7',
199
t.get('format').read())
200
self.assertEqualDiff('', t.get('lock').read())
201
self.assertEqualDiff('', t.get('shared-storage').read())
202
self.assertEqualDiff('', t.get('no-working-trees').read())
203
repo.set_make_working_trees(True)
204
self.assertFalse(t.has('no-working-trees'))
205
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
206
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
207
self.assertEqualDiff('# bzr weave file v5\n'
210
t.get('inventory.weave').read())