14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
19
"""Black-box tests for bzr.
21
21
These check that it behaves properly when it's invoked through the regular
22
command-line interface. This doesn't actually run a new interpreter but
22
command-line interface. This doesn't actually run a new interpreter but
23
23
rather starts again from the run_bzr function.
29
from bzrlib.branch import Branch
30
from bzrlib.config import extract_email_address
31
29
from bzrlib.tests import TestCaseWithTransport
32
from bzrlib.urlutils import joinpath
35
32
class TestAnnotate(TestCaseWithTransport):
148
145
self.assertEqual('', out)
149
146
self.assertEqual('bzr: ERROR: bzr annotate --revision takes'
150
' exactly one revision identifier\n',
147
' exactly 1 argument\n',
154
class TestSimpleAnnotate(TestCaseWithTransport):
155
"""Annotate tests with no complex setup."""
157
def _setup_edited_file(self, relpath='.'):
158
"""Create a tree with a locally edited file."""
159
tree = self.make_branch_and_tree(relpath)
160
file_relpath = joinpath(relpath, 'file')
161
self.build_tree_contents([(file_relpath, 'foo\ngam\n')])
163
tree.commit('add file', committer="test@host", rev_id="rev1")
164
self.build_tree_contents([(file_relpath, 'foo\nbar\ngam\n')])
165
tree.branch.get_config().set_user_option('email', 'current@host2')
168
def test_annotate_cmd_revspec_branch(self):
169
tree = self._setup_edited_file('trunk')
170
tree.branch.create_checkout(self.get_url('work'), lightweight=True)
172
out, err = self.run_bzr('annotate file -r branch:../trunk')
173
self.assertEqual('', err)
179
def test_annotate_edited_file(self):
180
tree = self._setup_edited_file()
181
out, err = self.run_bzr('annotate file')
188
def test_annotate_edited_file_show_ids(self):
189
tree = self._setup_edited_file()
190
out, err = self.run_bzr('annotate file --show-ids')
197
def _create_merged_file(self):
198
"""Create a file with a pending merge and local edit."""
199
tree = self.make_branch_and_tree('.')
200
self.build_tree_contents([('file', 'foo\ngam\n')])
202
tree.commit('add file', rev_id="rev1", committer="test@host")
204
self.build_tree_contents([('file', 'foo\nbar\ngam\n')])
205
tree.commit("right", rev_id="rev1.1.1", committer="test@host")
206
tree.pull(tree.branch, True, "rev1")
208
self.build_tree_contents([('file', 'foo\nbaz\ngam\n')])
209
tree.commit("left", rev_id="rev2", committer="test@host")
211
tree.merge_from_branch(tree.branch, "rev1.1.1")
212
# edit the file to be 'resolved' and have a further local edit
213
self.build_tree_contents([('file', 'local\nfoo\nbar\nbaz\ngam\n')])
215
def test_annotated_edited_merged_file_revnos(self):
216
self._create_merged_file()
217
out, err = self.run_bzr('annotate file')
218
email = extract_email_address(Branch.open('.').get_config().username())
222
'1.1.1 test@ho | bar\n'
224
'1 test@ho | gam\n' % email[:7],
227
def test_annotated_edited_merged_file_ids(self):
228
self._create_merged_file()
229
out, err = self.run_bzr('annotate file --show-ids')
238
150
def test_annotate_empty_file(self):
239
151
tree = self.make_branch_and_tree('tree')
240
152
self.build_tree_contents([('tree/empty', '')])
245
157
out, err = self.run_bzr('annotate empty')
246
158
self.assertEqual('', out)
248
def test_annotate_empty_file_show_ids(self):
249
tree = self.make_branch_and_tree('tree')
250
self.build_tree_contents([('tree/empty', '')])
252
tree.commit('add empty file')
255
out, err = self.run_bzr(['annotate', '--show-ids', 'empty'])
256
self.assertEqual('', out)
258
160
def test_annotate_nonexistant_file(self):
259
161
tree = self.make_branch_and_tree('tree')
260
162
self.build_tree(['tree/file'])