/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_subsume.py

  • Committer: Jelmer Vernooij
  • Date: 2020-04-05 19:11:34 UTC
  • mto: (7490.7.16 work)
  • mto: This revision was merged to the branch mainline in revision 7501.
  • Revision ID: jelmer@jelmer.uk-20200405191134-0aebh8ikiwygxma5
Populate the .gitignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006-2009, 2011 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
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
from bzrlib import bzrdir, errors, repository, workingtree, tests
 
17
from breezy import errors, workingtree, tests
18
18
 
19
19
 
20
20
class TestWorkingTree(tests.TestCaseWithTransport):
21
21
 
22
22
    def make_branch_and_tree(self, relpath, format=None):
23
23
        if format is None:
24
 
            format = 'dirstate-with-subtree'
 
24
            format = 'development-subtree'
25
25
        return tests.TestCaseWithTransport.make_branch_and_tree(self, relpath,
26
26
                                                                format)
27
27
 
31
31
                         'tree/subtree/',
32
32
                         'tree/subtree/file2'])
33
33
        base_tree = self.make_branch_and_tree('tree', format=format)
34
 
        base_tree.add('file', 'file-id')
35
 
        base_tree.commit('first commit', rev_id='tree-1')
 
34
        base_tree.add('file', b'file-id')
 
35
        base_tree.commit('first commit', rev_id=b'tree-1')
36
36
        sub_tree = self.make_branch_and_tree('tree/subtree',
37
 
            format='dirstate-with-subtree')
 
37
                                             format='development-subtree')
38
38
        if same_root is True:
39
 
            sub_tree.set_root_id(base_tree.get_root_id())
40
 
        sub_tree.add('file2', 'file2-id')
41
 
        sub_tree.commit('first commit', rev_id='subtree-1')
 
39
            sub_tree.set_root_id(base_tree.path2id(''))
 
40
        sub_tree.add('file2', b'file2-id')
 
41
        sub_tree.commit('first commit', rev_id=b'subtree-1')
42
42
        return base_tree, sub_tree
43
43
 
44
44
    def test_old_knit1_failure(self):
59
59
 
60
60
    def test_subsume_tree(self):
61
61
        base_tree, sub_tree = self.make_trees()
62
 
        self.assertNotEqual(base_tree.get_root_id(), sub_tree.get_root_id())
63
 
        sub_root_id = sub_tree.get_root_id()
 
62
        self.assertNotEqual(base_tree.path2id(''), sub_tree.path2id(''))
 
63
        sub_root_id = sub_tree.path2id('')
64
64
        # this test checks the subdir is removed, so it needs to know the
65
65
        # control directory; that changes rarely so just hardcode (and check)
66
66
        # it is correct.
67
 
        self.failUnlessExists('tree/subtree/.bzr')
 
67
        self.assertPathExists('tree/subtree/.bzr')
68
68
        base_tree.subsume(sub_tree)
69
 
        self.assertEqual(['tree-1', 'subtree-1'], base_tree.get_parent_ids())
 
69
        self.assertEqual([b'tree-1', b'subtree-1'], base_tree.get_parent_ids())
70
70
        self.assertEqual(sub_root_id, base_tree.path2id('subtree'))
71
 
        self.assertEqual('file2-id', base_tree.path2id('subtree/file2'))
 
71
        self.assertEqual(b'file2-id', base_tree.path2id('subtree/file2'))
72
72
        # subsuming the tree removes the control directory, so you can't open
73
73
        # it.
74
 
        self.failIfExists('tree/subtree/.bzr')
75
 
        file2 = open('tree/subtree/file2', 'rb')
76
 
        try:
 
74
        self.assertPathDoesNotExist('tree/subtree/.bzr')
 
75
        with open('tree/subtree/file2', 'rb') as file2:
77
76
            file2_contents = file2.read()
78
 
        finally:
79
 
            file2.close()
80
77
        base_tree = workingtree.WorkingTree.open('tree')
81
 
        base_tree.commit('combined', rev_id='combined-1')
82
 
        self.assertEqual('file2-id', base_tree.path2id('subtree/file2'))
83
 
        self.assertEqual('subtree/file2', base_tree.id2path('file2-id'))
 
78
        base_tree.commit('combined', rev_id=b'combined-1')
 
79
        self.assertEqual(b'file2-id', base_tree.path2id('subtree/file2'))
 
80
        if base_tree.supports_setting_file_ids():
 
81
            self.assertEqual('subtree/file2', base_tree.id2path(b'file2-id'))
84
82
        self.assertEqualDiff(file2_contents,
85
 
                             base_tree.get_file_text('file2-id'))
 
83
                             base_tree.get_file_text('subtree/file2'))
86
84
        basis_tree = base_tree.basis_tree()
87
85
        basis_tree.lock_read()
88
86
        self.addCleanup(basis_tree.unlock)
89
87
        self.assertEqualDiff(file2_contents,
90
 
                             base_tree.get_file_text('file2-id'))
 
88
                             base_tree.get_file_text('subtree/file2'))
91
89
        self.assertEqualDiff(file2_contents,
92
 
                             basis_tree.get_file_text('file2-id'))
93
 
        self.assertEqual('subtree-1',
94
 
                         basis_tree.inventory['file2-id'].revision)
95
 
        self.assertEqual('combined-1',
96
 
                         basis_tree.inventory[sub_root_id].revision)
 
90
                             basis_tree.get_file_text('subtree/file2'))
 
91
        self.assertEqual(b'subtree-1',
 
92
                         basis_tree.get_file_revision('subtree/file2'))
 
93
        self.assertEqual(b'combined-1',
 
94
                         basis_tree.get_file_revision('subtree'))
97
95
 
98
96
    def test_subsume_failure(self):
99
97
        base_tree, sub_tree = self.make_trees()
100
 
        if base_tree.get_root_id() == sub_tree.get_root_id():
 
98
        if base_tree.path2id('') == sub_tree.path2id(''):
101
99
            raise tests.TestSkipped('This test requires unique roots')
102
 
        sub_root_id = sub_tree.get_root_id()
103
100
        self.assertRaises(errors.BadSubsumeSource, base_tree.subsume,
104
101
                          base_tree)
105
102
        self.assertRaises(errors.BadSubsumeSource, sub_tree.subsume,