57
57
expected = kw.get(n, [])
59
59
# tests are written with unix paths; fix them up for windows
61
expected = [x.replace('/', os.sep) for x in expected]
61
# expected = [x.replace('/', os.sep) for x in expected]
63
63
# strip out only the path components
64
64
got = [x[0] for x in getattr(delta, n)]
65
65
self.assertEquals(expected, got)
67
67
def test_cur_revno(self):
68
b = Branch('.', init=True)
68
wt = self.make_branch_and_tree('.')
71
b.commit('empty commit')
72
wt.commit('empty commit')
72
73
show_log(b, lf, verbose=True, start_revision=1, end_revision=1)
73
74
self.assertRaises(InvalidRevisionNumber, show_log, b, lf,
74
75
start_revision=2, end_revision=1)
154
155
# commit a log message with control characters
155
156
msg = "All 8-bit chars: " + ''.join([unichr(x) for x in range(256)])
157
self.log("original commit message: %r", msg)
157
159
lf = LogCatcher()
158
160
show_log(b, lf, verbose=True)
159
161
committed_msg = lf.logs[0].rev.message
160
162
self.log("escaped commit message: %r", committed_msg)
161
163
self.assert_(msg != committed_msg)
162
164
self.assert_(len(committed_msg) > len(msg))
166
# Check that log message with only XML-valid characters isn't
167
# escaped. As ElementTree apparently does some kind of
168
# newline conversion, neither LF (\x0A) nor CR (\x0D) are
169
# included in the test commit message, even though they are
170
# valid XML 1.0 characters.
171
msg = "\x09" + ''.join([unichr(x) for x in range(0x20, 256)])
172
self.log("original commit message: %r", msg)
175
show_log(b, lf, verbose=True)
176
committed_msg = lf.logs[0].rev.message
177
self.log("escaped commit message: %r", committed_msg)
178
self.assert_(msg == committed_msg)
180
def test_trailing_newlines(self):
181
wt = self.make_branch_and_tree('.')
184
open('a', 'wb').write('hello moto\n')
186
wt.commit('simple log message', rev_id='a1'
187
, timestamp=1132586655.459960938, timezone=-6*3600
188
, committer='Joe Foo <joe@foo.com>')
189
open('b', 'wb').write('goodbye\n')
191
wt.commit('multiline\nlog\nmessage\n', rev_id='a2'
192
, timestamp=1132586842.411175966, timezone=-6*3600
193
, committer='Joe Foo <joe@foo.com>')
195
open('c', 'wb').write('just another manic monday\n')
197
wt.commit('single line with trailing newline\n', rev_id='a3'
198
, timestamp=1132587176.835228920, timezone=-6*3600
199
, committer = 'Joe Foo <joe@foo.com>')
202
lf = ShortLogFormatter(to_file=sio)
204
self.assertEquals(sio.getvalue(), """\
205
3 Joe Foo\t2005-11-21
206
single line with trailing newline
208
2 Joe Foo\t2005-11-21
213
1 Joe Foo\t2005-11-21
219
lf = LongLogFormatter(to_file=sio)
221
self.assertEquals(sio.getvalue(), """\
222
------------------------------------------------------------
224
committer: Joe Foo <joe@foo.com>
226
timestamp: Mon 2005-11-21 09:32:56 -0600
228
single line with trailing newline
229
------------------------------------------------------------
231
committer: Joe Foo <joe@foo.com>
233
timestamp: Mon 2005-11-21 09:27:22 -0600
238
------------------------------------------------------------
240
committer: Joe Foo <joe@foo.com>
242
timestamp: Mon 2005-11-21 09:24:15 -0600
247
def test_verbose_log(self):
248
"""Verbose log includes changed files
252
wt = self.make_branch_and_tree('.')
254
self.build_tree(['a'])
256
# XXX: why does a longer nick show up?
257
b.nick = 'test_verbose_log'
258
wt.commit(message='add a',
259
timestamp=1132711707,
261
committer='Lorem Ipsum <test@example.com>')
262
logfile = file('out.tmp', 'w+')
263
formatter = LongLogFormatter(to_file=logfile)
264
show_log(b, formatter, verbose=True)
267
log_contents = logfile.read()
268
self.assertEqualDiff(log_contents, '''\
269
------------------------------------------------------------
271
committer: Lorem Ipsum <test@example.com>
272
branch nick: test_verbose_log
273
timestamp: Wed 2005-11-23 12:08:27 +1000