/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/blackbox/test_reference.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 18:26:22 UTC
  • mfrom: (7167.1.4 run-flake8)
  • Revision ID: breezy.the.bot@gmail.com-20181116182622-qw3gan3hz78a2imw
Add a flake8 test.

Merged from https://code.launchpad.net/~jelmer/brz/run-flake8/+merge/358902

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
17
 
 
18
from breezy import (
 
19
    controldir,
 
20
    )
 
21
from breezy.bzr import (
 
22
    branch as _mod_bzrbranch,
 
23
    )
 
24
from breezy.tests import TestCaseWithTransport
 
25
 
 
26
 
 
27
class TestReference(TestCaseWithTransport):
 
28
 
 
29
    def get_default_format(self):
 
30
        return controldir.format_registry.make_controldir('development-subtree')
 
31
 
 
32
    def test_no_args_lists(self):
 
33
        branch = self.make_branch('branch')
 
34
        branch.set_reference_info('path', 'http://example.org', b'file-id')
 
35
        branch.set_reference_info('lath', 'http://example.org/2', b'file-id2')
 
36
        out, err = self.run_bzr('reference', working_dir='branch')
 
37
        lines = out.splitlines()
 
38
        self.assertEqual('lath http://example.org/2', lines[0])
 
39
        self.assertEqual('path http://example.org', lines[1])
 
40
 
 
41
    def make_tree_with_reference(self):
 
42
        tree = self.make_branch_and_tree('tree')
 
43
        self.build_tree(['tree/newpath'])
 
44
        tree.add('newpath', b'file-id')
 
45
        tree.branch.set_reference_info('newpath', 'http://example.org', b'file-id')
 
46
        tree.branch.set_reference_info('lath', 'http://example.org/2',
 
47
                b'file-id2')
 
48
        return tree
 
49
 
 
50
    def test_uses_working_tree_location(self):
 
51
        tree = self.make_tree_with_reference()
 
52
        out, err = self.run_bzr('reference', working_dir='tree')
 
53
        self.assertContainsRe(out, 'newpath http://example.org\n')
 
54
 
 
55
    def test_uses_basis_tree_location(self):
 
56
        tree = self.make_tree_with_reference()
 
57
        tree.commit('add newpath')
 
58
        tree.controldir.destroy_workingtree()
 
59
        out, err = self.run_bzr('reference', working_dir='tree')
 
60
        self.assertContainsRe(out, 'newpath http://example.org\n')
 
61
 
 
62
    def test_one_arg_displays(self):
 
63
        tree = self.make_tree_with_reference()
 
64
        out, err = self.run_bzr('reference newpath', working_dir='tree')
 
65
        self.assertEqual('newpath http://example.org\n', out)
 
66
 
 
67
    def test_one_arg_uses_containing_tree(self):
 
68
        tree = self.make_tree_with_reference()
 
69
        out, err = self.run_bzr('reference tree/newpath')
 
70
        self.assertEqual('newpath http://example.org\n', out)
 
71
 
 
72
    def test_two_args_sets(self):
 
73
        tree = self.make_branch_and_tree('tree')
 
74
        self.build_tree(['tree/file'])
 
75
        tree.add('file', b'file-id')
 
76
        out, err = self.run_bzr('reference tree/file http://example.org')
 
77
        location, file_id = tree.branch.get_reference_info('file')
 
78
        self.assertEqual('http://example.org', location)
 
79
        self.assertEqual(b'file-id', file_id)
 
80
        self.assertEqual('', out)
 
81
        self.assertEqual('', err)
 
82
 
 
83
    def test_missing_file(self):
 
84
        tree = self.make_branch_and_tree('tree')
 
85
        out, err = self.run_bzr('reference file http://example.org',
 
86
                                working_dir='tree', retcode=3)
 
87
        self.assertEqual('brz: ERROR: file is not versioned.\n', err)
 
88
 
 
89
    def test_missing_file_forced(self):
 
90
        tree = self.make_branch_and_tree('tree')
 
91
        out, err = self.run_bzr(
 
92
                'reference --force-unversioned file http://example.org',
 
93
                working_dir='tree')
 
94
        location, file_id = tree.branch.get_reference_info('file')
 
95
        self.assertEqual('http://example.org', location)
 
96
        self.assertEqual('', out)
 
97
        self.assertEqual('', err)