~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

[merge] bzr.dev 2255, resolve conflicts, update copyrights

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 by Canonical Ltd
 
1
# Copyright (C) 2005 Canonical Ltd
2
2
# -*- coding: utf-8 -*-
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
108
108
        self.assertTrue('branch nick: branch2\n' in log)
109
109
        self.assertTrue('branch nick: branch1\n' not in log)
110
110
        
 
111
    def test_log_nonexistent_file(self):
 
112
        # files that don't exist in either the basis tree or working tree
 
113
        # should give an error
 
114
        wt = self.make_branch_and_tree('.')
 
115
        out, err = self.run_bzr('log', 'does-not-exist', retcode=3)
 
116
        self.assertContainsRe(
 
117
            err, 'Path does not have any revision history: does-not-exist')
111
118
 
112
119
class TestLogMerges(ExternalBase):
113
120
 
136
143
#message:
137
144
#  merge branch 1
138
145
#    ------------------------------------------------------------
 
146
#    revno: 1.1.2  
139
147
#    merged: foo@example.com-20060328113140-91f43cfb46dc2863
140
148
#    committer: Robert Collins <foo@example.com>
141
149
#    branch nick: child
143
151
#    message:
144
152
#      merge branch 2
145
153
#        ------------------------------------------------------------
 
154
#        revno: 1.1.1.1
146
155
#        merged: foo@example.com-20060328113140-1ba24f850a0ef573
147
156
#        committer: Robert Collins <foo@example.com>
148
157
#        branch nick: smallerchild
150
159
#        message:
151
160
#          branch 2
152
161
#    ------------------------------------------------------------
 
162
#    revno: 1.1.1
153
163
#    merged: foo@example.com-20060328113140-5749a4757a8ac792
154
164
#    committer: Robert Collins <foo@example.com>
155
165
#    branch nick: child
165
175
#  first post
166
176
#""", out)
167
177
        # but we dont have a nice pattern matcher hooked up yet, so:
168
 
        # we check for the indenting of the commit message:
 
178
        # we check for the indenting of the commit message and the 
 
179
        # revision numbers 
 
180
        self.assertTrue('revno: 2' in out)
169
181
        self.assertTrue('  merge branch 1' in out)
 
182
        self.assertTrue('    revno: 1.1.2' in out)
170
183
        self.assertTrue('      merge branch 2' in out)
 
184
        self.assertTrue('        revno: 1.1.1.1' in out)
171
185
        self.assertTrue('          branch 2' in out)
 
186
        self.assertTrue('    revno: 1.1.1' in out)
172
187
        self.assertTrue('      branch 1' in out)
 
188
        self.assertTrue('revno: 1' in out)
173
189
        self.assertTrue('  first post' in out)
174
190
        self.assertEqual('', err)
175
191