/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
4273.1.19 by Aaron Bentley
Implement reference command
1
# Copyright (C) 2009 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
4273.1.21 by Aaron Bentley
Update from review
17
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
18
from breezy import (
6472.2.1 by Jelmer Vernooij
Use bzrdir.controldir for generic access to control directories.
19
    controldir,
4273.1.19 by Aaron Bentley
Implement reference command
20
    )
6670.4.3 by Jelmer Vernooij
Fix more imports.
21
from breezy.bzr import (
22
    branch as _mod_bzrbranch,
23
    )
6622.1.34 by Jelmer Vernooij
Rename brzlib => breezy.
24
from breezy.tests import TestCaseWithTransport
4273.1.19 by Aaron Bentley
Implement reference command
25
4273.1.21 by Aaron Bentley
Update from review
26
4273.1.19 by Aaron Bentley
Implement reference command
27
class TestReference(TestCaseWithTransport):
28
6155.6.2 by Jelmer Vernooij
Simplify handling of default format.
29
    def get_default_format(self):
7131.11.1 by Jelmer Vernooij
Use BzrBranchFormat8 in development-subtree.
30
        return controldir.format_registry.make_controldir('development-subtree')
4273.1.19 by Aaron Bentley
Implement reference command
31
32
    def test_no_args_lists(self):
7447.3.3 by Jelmer Vernooij
Fix some blackbox tests.
33
        tree = self.make_branch_and_tree('branch')
34
        branch = tree.branch
35
        branch.set_reference_info('path', 'http://example.org')
36
        tree.add_reference(self.make_branch_and_tree('branch/path'))
37
        tree.add_reference(self.make_branch_and_tree('branch/lath'))
38
        branch.set_reference_info('lath', 'http://example.org/2')
4273.1.19 by Aaron Bentley
Implement reference command
39
        out, err = self.run_bzr('reference', working_dir='branch')
40
        lines = out.splitlines()
41
        self.assertEqual('lath http://example.org/2', lines[0])
42
        self.assertEqual('path http://example.org', lines[1])
43
44
    def make_tree_with_reference(self):
45
        tree = self.make_branch_and_tree('tree')
7447.3.3 by Jelmer Vernooij
Fix some blackbox tests.
46
        subtree = self.make_branch_and_tree('tree/newpath')
47
        tree.add_reference(subtree)
48
        tree.commit('add reference')
49
        tree.set_reference_info('newpath', 'http://example.org')
50
        tree.set_reference_info('lath', 'http://example.org/2')
4273.1.19 by Aaron Bentley
Implement reference command
51
        return tree
52
53
    def test_uses_working_tree_location(self):
54
        tree = self.make_tree_with_reference()
55
        out, err = self.run_bzr('reference', working_dir='tree')
56
        self.assertContainsRe(out, 'newpath http://example.org\n')
57
58
    def test_uses_basis_tree_location(self):
59
        tree = self.make_tree_with_reference()
60
        tree.commit('add newpath')
6653.6.1 by Jelmer Vernooij
Rename a number of attributes from bzrdir to controldir.
61
        tree.controldir.destroy_workingtree()
4273.1.19 by Aaron Bentley
Implement reference command
62
        out, err = self.run_bzr('reference', working_dir='tree')
63
        self.assertContainsRe(out, 'newpath http://example.org\n')
64
65
    def test_one_arg_displays(self):
66
        tree = self.make_tree_with_reference()
67
        out, err = self.run_bzr('reference newpath', working_dir='tree')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
68
        self.assertEqual('newpath http://example.org\n', out)
4273.1.19 by Aaron Bentley
Implement reference command
69
70
    def test_one_arg_uses_containing_tree(self):
71
        tree = self.make_tree_with_reference()
7447.3.3 by Jelmer Vernooij
Fix some blackbox tests.
72
        out, err = self.run_bzr('reference -d tree newpath')
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
73
        self.assertEqual('newpath http://example.org\n', out)
4273.1.19 by Aaron Bentley
Implement reference command
74
75
    def test_two_args_sets(self):
76
        tree = self.make_branch_and_tree('tree')
77
        self.build_tree(['tree/file'])
7447.3.3 by Jelmer Vernooij
Fix some blackbox tests.
78
        tree.add('file')
79
        out, err = self.run_bzr('reference -d tree file http://example.org')
80
        location = tree.get_reference_info('file')
4273.1.19 by Aaron Bentley
Implement reference command
81
        self.assertEqual('http://example.org', location)
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
82
        self.assertEqual('', out)
83
        self.assertEqual('', err)
4273.1.19 by Aaron Bentley
Implement reference command
84
85
    def test_missing_file(self):
86
        tree = self.make_branch_and_tree('tree')
87
        out, err = self.run_bzr('reference file http://example.org',
88
                                working_dir='tree', retcode=3)
7027.4.1 by Jelmer Vernooij
Use StringIOWithEncoding on Python3.
89
        self.assertEqual('brz: ERROR: file is not versioned.\n', err)
7131.9.1 by Jelmer Vernooij
Support --force option to 'bzr reference'.
90
91
    def test_missing_file_forced(self):
92
        tree = self.make_branch_and_tree('tree')
7131.9.2 by Jelmer Vernooij
s/--force/--force-unversioned/
93
        out, err = self.run_bzr(
7143.15.2 by Jelmer Vernooij
Run autopep8.
94
            'reference --force-unversioned file http://example.org',
95
            working_dir='tree')
7131.9.1 by Jelmer Vernooij
Support --force option to 'bzr reference'.
96
        location, file_id = tree.branch.get_reference_info('file')
97
        self.assertEqual('http://example.org', location)
98
        self.assertEqual('', out)
99
        self.assertEqual('', err)