~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_config.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-10-15 10:14:53 UTC
  • mfrom: (5447.4.21 config-modify)
  • Revision ID: pqm@pqm.ubuntu.com-20101015101453-ran88oqq3a5qb7jw
(vila) Add ``bzr config` command. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2010 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
"""Black-box tests for bzr config."""
 
19
 
 
20
import os
 
21
 
 
22
from bzrlib import (
 
23
    config,
 
24
    errors,
 
25
    tests,
 
26
    )
 
27
from bzrlib.tests import (
 
28
    script,
 
29
    test_config as _t_config,
 
30
    )
 
31
 
 
32
class TestWithoutConfig(tests.TestCaseWithTransport):
 
33
 
 
34
    def test_no_config(self):
 
35
        out, err = self.run_bzr(['config'])
 
36
        self.assertEquals('', out)
 
37
        self.assertEquals('', err)
 
38
 
 
39
    def test_all_variables_no_config(self):
 
40
        out, err = self.run_bzr(['config', '*'])
 
41
        self.assertEquals('', out)
 
42
        self.assertEquals('', err)
 
43
 
 
44
    def test_unknown_option(self):
 
45
        self.run_bzr_error(['The "file" configuration option does not exist',],
 
46
                           ['config', '--remove', 'file'])
 
47
 
 
48
class TestConfigDisplay(tests.TestCaseWithTransport):
 
49
 
 
50
    def setUp(self):
 
51
        super(TestConfigDisplay, self).setUp()
 
52
        _t_config.create_configs(self)
 
53
 
 
54
    def test_bazaar_config(self):
 
55
        self.bazaar_config.set_user_option('hello', 'world')
 
56
        script.run_script(self, '''\
 
57
            $ bzr config -d tree
 
58
            bazaar:
 
59
              hello = world
 
60
            ''')
 
61
 
 
62
    def test_locations_config_for_branch(self):
 
63
        self.locations_config.set_user_option('hello', 'world')
 
64
        self.branch_config.set_user_option('hello', 'you')
 
65
        script.run_script(self, '''\
 
66
            $ bzr config -d tree
 
67
            locations:
 
68
              hello = world
 
69
            branch:
 
70
              hello = you
 
71
            ''')
 
72
 
 
73
    def test_locations_config_outside_branch(self):
 
74
        self.bazaar_config.set_user_option('hello', 'world')
 
75
        self.locations_config.set_user_option('hello', 'world')
 
76
        script.run_script(self, '''\
 
77
            $ bzr config
 
78
            bazaar:
 
79
              hello = world
 
80
            ''')
 
81
 
 
82
 
 
83
class TestConfigSetOption(tests.TestCaseWithTransport):
 
84
 
 
85
    def setUp(self):
 
86
        super(TestConfigSetOption, self).setUp()
 
87
        _t_config.create_configs(self)
 
88
 
 
89
    def test_unknown_config(self):
 
90
        self.run_bzr_error(['The "moon" configuration does not exist'],
 
91
                           ['config', '--scope', 'moon', 'hello=world'])
 
92
 
 
93
    def test_bazaar_config_outside_branch(self):
 
94
        script.run_script(self, '''\
 
95
            $ bzr config --scope bazaar hello=world
 
96
            $ bzr config -d tree hello
 
97
            bazaar:
 
98
              hello = world
 
99
            ''')
 
100
 
 
101
    def test_bazaar_config_inside_branch(self):
 
102
        script.run_script(self, '''\
 
103
            $ bzr config -d tree --scope bazaar hello=world
 
104
            $ bzr config -d tree hello
 
105
            bazaar:
 
106
              hello = world
 
107
            ''')
 
108
 
 
109
    def test_locations_config_inside_branch(self):
 
110
        script.run_script(self, '''\
 
111
            $ bzr config -d tree --scope locations hello=world
 
112
            $ bzr config -d tree hello
 
113
            locations:
 
114
              hello = world
 
115
            ''')
 
116
 
 
117
    def test_branch_config_default(self):
 
118
        script.run_script(self, '''\
 
119
            $ bzr config -d tree hello=world
 
120
            $ bzr config -d tree hello
 
121
            branch:
 
122
              hello = world
 
123
            ''')
 
124
 
 
125
    def test_branch_config_forcing_branch(self):
 
126
        script.run_script(self, '''\
 
127
            $ bzr config -d tree --scope branch hello=world
 
128
            $ bzr config -d tree hello
 
129
            branch:
 
130
              hello = world
 
131
            ''')
 
132
 
 
133
 
 
134
class TestConfigRemoveOption(tests.TestCaseWithTransport):
 
135
 
 
136
    def setUp(self):
 
137
        super(TestConfigRemoveOption, self).setUp()
 
138
        _t_config.create_configs_with_file_option(self)
 
139
 
 
140
    def test_unknown_config(self):
 
141
        self.run_bzr_error(['The "moon" configuration does not exist'],
 
142
                           ['config', '--scope', 'moon', '--remove', 'file'])
 
143
 
 
144
    def test_bazaar_config_outside_branch(self):
 
145
        script.run_script(self, '''\
 
146
            $ bzr config --scope bazaar --remove file
 
147
            $ bzr config -d tree file
 
148
            locations:
 
149
              file = locations
 
150
            branch:
 
151
              file = branch
 
152
            ''')
 
153
 
 
154
    def test_bazaar_config_inside_branch(self):
 
155
        script.run_script(self, '''\
 
156
            $ bzr config -d tree --scope bazaar --remove file
 
157
            $ bzr config -d tree file
 
158
            locations:
 
159
              file = locations
 
160
            branch:
 
161
              file = branch
 
162
            ''')
 
163
 
 
164
    def test_locations_config_inside_branch(self):
 
165
        script.run_script(self, '''\
 
166
            $ bzr config -d tree --scope locations --remove file
 
167
            $ bzr config -d tree file
 
168
            branch:
 
169
              file = branch
 
170
            bazaar:
 
171
              file = bazaar
 
172
            ''')
 
173
 
 
174
    def test_branch_config_default(self):
 
175
        script.run_script(self, '''\
 
176
            $ bzr config -d tree --remove file
 
177
            $ bzr config -d tree file
 
178
            branch:
 
179
              file = branch
 
180
            bazaar:
 
181
              file = bazaar
 
182
            ''')
 
183
        script.run_script(self, '''\
 
184
            $ bzr config -d tree --remove file
 
185
            $ bzr config -d tree file
 
186
            bazaar:
 
187
              file = bazaar
 
188
            ''')
 
189
 
 
190
    def test_branch_config_forcing_branch(self):
 
191
        script.run_script(self, '''\
 
192
            $ bzr config -d tree --scope branch --remove file
 
193
            $ bzr config -d tree file
 
194
            locations:
 
195
              file = locations
 
196
            bazaar:
 
197
              file = bazaar
 
198
            ''')
 
199
        script.run_script(self, '''\
 
200
            $ bzr config -d tree --remove file
 
201
            $ bzr config -d tree file
 
202
            bazaar:
 
203
              file = bazaar
 
204
            ''')