~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_repository.py

  • Committer: Robert Collins
  • Date: 2006-02-22 10:35:05 UTC
  • mto: (1594.2.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: robertc@robertcollins.net-20060222103505-bddb211d353f2543
Merge in a variation of the versionedfile api from versioned-file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# (C) 2006 Canonical Ltd
 
2
 
 
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.
 
7
 
 
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.
 
12
 
 
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
 
16
 
 
17
"""Tests for the Repository facility that are not interface tests.
 
18
 
 
19
For interface tests see tests/repository_implementations/*.py.
 
20
 
 
21
For concrete class tests see this file, and for storage formats tests
 
22
also see this file.
 
23
"""
 
24
 
 
25
from stat import *
 
26
from StringIO import StringIO
 
27
 
 
28
import bzrlib.bzrdir as bzrdir
 
29
import bzrlib.errors as errors
 
30
from bzrlib.errors import (NotBranchError,
 
31
                           NoSuchFile,
 
32
                           UnknownFormatError,
 
33
                           UnsupportedFormatError,
 
34
                           )
 
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
 
40
 
 
41
 
 
42
class TestDefaultFormat(TestCase):
 
43
 
 
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.
 
50
        try:
 
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')
 
56
        finally:
 
57
            repository.RepositoryFormat.set_default_format(old_format)
 
58
        self.assertEqual(old_format, repository.RepositoryFormat.get_default_format())
 
59
 
 
60
 
 
61
class SampleRepositoryFormat(repository.RepositoryFormat):
 
62
    """A sample format
 
63
 
 
64
    this format is initializable, unsupported to aid in testing the 
 
65
    open and open(unsupported=True) routines.
 
66
    """
 
67
 
 
68
    def get_format_string(self):
 
69
        """See RepositoryFormat.get_format_string()."""
 
70
        return "Sample .bzr repository format."
 
71
 
 
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'
 
77
 
 
78
    def is_supported(self):
 
79
        return False
 
80
 
 
81
    def open(self, a_bzrdir, _found=False):
 
82
        return "opened repository."
 
83
 
 
84
 
 
85
class TestRepositoryFormat(TestCaseWithTransport):
 
86
    """Tests for the Repository format detection used by the bzr meta dir facility.BzrBranchFormat facility."""
 
87
 
 
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")
 
100
        
 
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,
 
105
                          dir)
 
106
 
 
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,
 
112
                          dir)
 
113
 
 
114
    def test_register_unregister_format(self):
 
115
        format = SampleRepositoryFormat()
 
116
        # make a control dir
 
117
        dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
 
118
        # make a repo
 
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)
 
128
 
 
129
 
 
130
class TestFormat6(TestCaseWithTransport):
 
131
 
 
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,
 
139
                          'ancestry.weave')
 
140
 
 
141
 
 
142
class TestFormat7(TestCaseWithTransport):
 
143
    
 
144
    def test_disk_layout(self):
 
145
        control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
 
146
        repo = repository.RepositoryFormat7().initialize(control)
 
147
        # in case of side effects of locking.
 
148
        repo.lock_write()
 
149
        repo.unlock()
 
150
        # we want:
 
151
        # format 'Bazaar-NG Repository format 7'
 
152
        # lock ''
 
153
        # inventory.weave == empty_weave
 
154
        # empty revision-store directory
 
155
        # empty weaves directory
 
156
        t = control.get_repository_transport(None)
 
157
        self.assertEqualDiff('Bazaar-NG Repository format 7',
 
158
                             t.get('format').read())
 
159
        self.assertEqualDiff('', t.get('lock').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'
 
163
                             'w\n'
 
164
                             'W\n',
 
165
                             t.get('inventory.weave').read())
 
166
 
 
167
    def test_shared_disk_layout(self):
 
168
        control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
 
169
        repo = repository.RepositoryFormat7().initialize(control, shared=True)
 
170
        # we want:
 
171
        # format 'Bazaar-NG Repository format 7'
 
172
        # lock ''
 
173
        # inventory.weave == empty_weave
 
174
        # empty revision-store directory
 
175
        # empty weaves directory
 
176
        # a 'shared-storage' marker file.
 
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('lock').read())
 
181
        self.assertEqualDiff('', t.get('shared-storage').read())
 
182
        self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
 
183
        self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
 
184
        self.assertEqualDiff('# bzr weave file v5\n'
 
185
                             'w\n'
 
186
                             'W\n',
 
187
                             t.get('inventory.weave').read())
 
188
 
 
189
    def test_shared_no_tree_disk_layout(self):
 
190
        control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
 
191
        repo = repository.RepositoryFormat7().initialize(control, shared=True)
 
192
        repo.set_make_working_trees(False)
 
193
        # we want:
 
194
        # format 'Bazaar-NG Repository format 7'
 
195
        # lock ''
 
196
        # inventory.weave == empty_weave
 
197
        # empty revision-store directory
 
198
        # empty weaves directory
 
199
        # a 'shared-storage' marker file.
 
200
        t = control.get_repository_transport(None)
 
201
        self.assertEqualDiff('Bazaar-NG Repository format 7',
 
202
                             t.get('format').read())
 
203
        self.assertEqualDiff('', t.get('lock').read())
 
204
        self.assertEqualDiff('', t.get('shared-storage').read())
 
205
        self.assertEqualDiff('', t.get('no-working-trees').read())
 
206
        repo.set_make_working_trees(True)
 
207
        self.assertFalse(t.has('no-working-trees'))
 
208
        self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
 
209
        self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
 
210
        self.assertEqualDiff('# bzr weave file v5\n'
 
211
                             'w\n'
 
212
                             'W\n',
 
213
                             t.get('inventory.weave').read())
 
214
 
 
215
 
 
216
class InterString(repository.InterRepository):
 
217
    """An inter-repository optimised code path for strings.
 
218
 
 
219
    This is for use during testing where we use strings as repositories
 
220
    so that none of the default regsitered inter-repository classes will
 
221
    match.
 
222
    """
 
223
 
 
224
    @staticmethod
 
225
    def is_compatible(repo_source, repo_target):
 
226
        """InterString is compatible with strings-as-repos."""
 
227
        return isinstance(repo_source, str) and isinstance(repo_target, str)
 
228
 
 
229
 
 
230
class TestInterRepository(TestCaseWithTransport):
 
231
 
 
232
    def test_get_default_inter_repository(self):
 
233
        # test that the InterRepository.get(repo_a, repo_b) probes
 
234
        # for a inter_repo class where is_compatible(repo_a, repo_b) returns
 
235
        # true and returns a default inter_repo otherwise.
 
236
        # This also tests that the default registered optimised interrepository
 
237
        # classes do not barf inappropriately when a surprising repository type
 
238
        # is handed to them.
 
239
        dummy_a = "Repository 1."
 
240
        dummy_b = "Repository 2."
 
241
        self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
 
242
 
 
243
    def assertGetsDefaultInterRepository(self, repo_a, repo_b):
 
244
        """Asserts that InterRepository.get(repo_a, repo_b) -> the default."""
 
245
        inter_repo = repository.InterRepository.get(repo_a, repo_b)
 
246
        self.assertEqual(repository.InterRepository,
 
247
                         inter_repo.__class__)
 
248
        self.assertEqual(repo_a, inter_repo.source)
 
249
        self.assertEqual(repo_b, inter_repo.target)
 
250
 
 
251
    def test_register_inter_repository_class(self):
 
252
        # test that a optimised code path provider - a
 
253
        # InterRepository subclass can be registered and unregistered
 
254
        # and that it is correctly selected when given a repository
 
255
        # pair that it returns true on for the is_compatible static method
 
256
        # check
 
257
        dummy_a = "Repository 1."
 
258
        dummy_b = "Repository 2."
 
259
        repository.InterRepository.register_optimiser(InterString)
 
260
        try:
 
261
            # we should get the default for something InterString returns False
 
262
            # to
 
263
            self.assertFalse(InterString.is_compatible(dummy_a, None))
 
264
            self.assertGetsDefaultInterRepository(dummy_a, None)
 
265
            # and we should get an InterString for a pair it 'likes'
 
266
            self.assertTrue(InterString.is_compatible(dummy_a, dummy_b))
 
267
            inter_repo = repository.InterRepository.get(dummy_a, dummy_b)
 
268
            self.assertEqual(InterString, inter_repo.__class__)
 
269
            self.assertEqual(dummy_a, inter_repo.source)
 
270
            self.assertEqual(dummy_b, inter_repo.target)
 
271
        finally:
 
272
            repository.InterRepository.unregister_optimiser(InterString)
 
273
        # now we should get the default InterRepository object again.
 
274
        self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
 
275
 
 
276
 
 
277
class TestInterWeaveRepo(TestCaseWithTransport):
 
278
 
 
279
    def test_is_compatible_and_registered(self):
 
280
        # InterWeaveRepo is compatible when either side
 
281
        # is a format 5/6/7 branch
 
282
        formats = [repository.RepositoryFormat5(),
 
283
                   repository.RepositoryFormat6(),
 
284
                   repository.RepositoryFormat7()]
 
285
        repo_a = self.make_repository('a')
 
286
        repo_b = self.make_repository('b')
 
287
        # force incompatible left then right
 
288
        repo_a._format = repository.RepositoryFormat4()
 
289
        repo_b._format = formats[0]
 
290
        is_compatible = repository.InterWeaveRepo.is_compatible
 
291
        self.assertFalse(is_compatible(repo_a, repo_b))
 
292
        self.assertFalse(is_compatible(repo_b, repo_a))
 
293
        for source in formats:
 
294
            repo_a._format = source
 
295
            for target in formats:
 
296
                repo_b._format = target
 
297
                self.assertTrue(is_compatible(repo_a, repo_b))
 
298
        self.assertEqual(repository.InterWeaveRepo,
 
299
                         repository.InterRepository.get(repo_a,
 
300
                                                        repo_b).__class__)