~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_reconfigure.py

  • Committer: Tarmac
  • Author(s): Vincent Ladeuil
  • Date: 2017-01-30 14:42:05 UTC
  • mfrom: (6620.1.1 trunk)
  • Revision ID: tarmac-20170130144205-r8fh2xpmiuxyozpv
Merge  2.7 into trunk including fix for bug #1657238 [r=vila]

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007, 2008, 2009 Canonical Ltd
 
1
# Copyright (C) 2007, 2008, 2009, 2011, 2012 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
16
16
 
17
17
from bzrlib import (
18
18
    branch as _mod_branch,
19
 
    bzrdir,
 
19
    controldir,
20
20
    errors,
21
21
    reconfigure,
22
22
    repository,
23
23
    tests,
 
24
    vf_repository,
24
25
    workingtree,
25
26
    )
26
27
 
71
72
        checkout = branch.create_checkout('checkout')
72
73
        reconfiguration = reconfigure.Reconfigure.to_branch(checkout.bzrdir)
73
74
        reconfiguration.apply()
74
 
        self.assertIs(None, checkout.branch.get_bound_location())
 
75
        reconfigured = controldir.ControlDir.open('checkout').open_branch()
 
76
        self.assertIs(None, reconfigured.get_bound_location())
75
77
 
76
78
    def prepare_lightweight_checkout_to_branch(self):
77
79
        branch = self.make_branch('branch')
146
148
        self.assertRaises(errors.NoBindLocation,
147
149
                          reconfiguration._select_bind_location)
148
150
        branch.set_parent('http://parent')
 
151
        reconfiguration = reconfigure.Reconfigure(branch.bzrdir)
149
152
        self.assertEqual('http://parent',
150
153
                         reconfiguration._select_bind_location())
151
154
        branch.set_push_location('sftp://push')
 
155
        reconfiguration = reconfigure.Reconfigure(branch.bzrdir)
152
156
        self.assertEqual('sftp://push',
153
157
                         reconfiguration._select_bind_location())
154
 
        branch.set_bound_location('bzr://foo/old-bound')
155
 
        branch.set_bound_location(None)
 
158
        branch.lock_write()
 
159
        try:
 
160
            branch.set_bound_location('bzr://foo/old-bound')
 
161
            branch.set_bound_location(None)
 
162
        finally:
 
163
            branch.unlock()
 
164
        reconfiguration = reconfigure.Reconfigure(branch.bzrdir)
156
165
        self.assertEqual('bzr://foo/old-bound',
157
166
                         reconfiguration._select_bind_location())
158
167
        branch.set_bound_location('bzr://foo/cur-bound')
 
168
        reconfiguration = reconfigure.Reconfigure(branch.bzrdir)
159
169
        self.assertEqual('bzr://foo/cur-bound',
160
170
                         reconfiguration._select_bind_location())
161
171
        reconfiguration.new_bound_location = 'ftp://user-specified'
179
189
        self.assertRaises(errors.NoBindLocation, reconfiguration.apply)
180
190
        # setting a parent allows it to become a checkout
181
191
        tree.branch.set_parent(parent.base)
 
192
        reconfiguration = reconfigure.Reconfigure.to_checkout(tree.bzrdir)
182
193
        reconfiguration.apply()
183
194
        # supplying a location allows it to become a checkout
184
195
        tree2 = self.make_branch_and_tree('tree2')
197
208
        self.assertRaises(errors.NoBindLocation, reconfiguration.apply)
198
209
        # setting a parent allows it to become a checkout
199
210
        tree.branch.set_parent(parent.base)
 
211
        reconfiguration = reconfigure.Reconfigure.to_lightweight_checkout(
 
212
            tree.bzrdir)
200
213
        reconfiguration.apply()
201
214
        # supplying a location allows it to become a checkout
202
215
        tree2 = self.make_branch_and_tree('tree2')
258
271
    def test_branch_to_lightweight_checkout_failure(self):
259
272
        parent, child, reconfiguration = \
260
273
            self.prepare_branch_to_lightweight_checkout()
261
 
        old_Repository_fetch = repository.Repository.fetch
262
 
        repository.Repository.fetch = None
 
274
        old_Repository_fetch = vf_repository.VersionedFileRepository.fetch
 
275
        vf_repository.VersionedFileRepository.fetch = None
263
276
        try:
264
277
            self.assertRaises(TypeError, reconfiguration.apply)
265
278
        finally:
266
 
            repository.Repository.fetch = old_Repository_fetch
 
279
            vf_repository.VersionedFileRepository.fetch = old_Repository_fetch
267
280
        child = _mod_branch.Branch.open('child')
268
281
        self.assertContainsRe(child.base, 'child/$')
269
282
 
432
445
            r"Requested reconfiguration of '.*' is not supported.")
433
446
 
434
447
    def test_lightweight_checkout_to_tree_preserves_reference_locations(self):
435
 
        format = bzrdir.format_registry.make_bzrdir('1.9')
 
448
        format = controldir.format_registry.make_bzrdir('1.9')
436
449
        format.set_branch_format(_mod_branch.BzrBranchFormat8())
437
450
        tree = self.make_branch_and_tree('tree', format=format)
438
451
        tree.branch.set_reference_info('file_id', 'path', '../location')