1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# Copyright (C) 2005, 2006, 2009 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Black-box tests for default log_formats/log_formatters
"""
import os
from bzrlib import (
config,
tests,
workingtree,
)
class TestLogFormats(tests.TestCaseWithTransport):
def setUp(self):
super(TestLogFormats, self).setUp()
# Create a config file with some useful variables
conf_path = config.config_filename()
if os.path.isfile(conf_path):
# Something is wrong in environment,
# we risk overwriting users config
self.fail("%s exists" % conf_path)
config.ensure_config_dir_exists()
f = open(conf_path,'wb')
try:
f.write("""[DEFAULT]
email=Joe Foo <joe@foo.com>
log_format=line
""")
finally:
f.close()
def _make_simple_branch(self, relpath='.'):
wt = self.make_branch_and_tree(relpath)
wt.commit('first revision')
wt.commit('second revision')
return wt
def test_log_default_format(self):
self._make_simple_branch()
# only the lines formatter is this short, one line by revision
log = self.run_bzr('log')[0]
self.assertEquals(2, len(log.splitlines()))
def test_log_format_arg(self):
self._make_simple_branch()
log = self.run_bzr(['log', '--log-format', 'short'])[0]
def test_missing_default_format(self):
wt = self._make_simple_branch('a')
self.run_bzr(['branch', 'a', 'b'])
wt.commit('third revision')
wt.commit('fourth revision')
missing = self.run_bzr('missing', retcode=1, working_dir='b')[0]
# one line for 'Using save location'
# one line for 'You are missing 2 revision(s)'
# one line by missing revision (the line log format is used as
# configured)
self.assertEquals(4, len(missing.splitlines()))
def test_missing_format_arg(self):
wt = self._make_simple_branch('a')
self.run_bzr(['branch', 'a', 'b'])
wt.commit('third revision')
wt.commit('fourth revision')
missing = self.run_bzr(['missing', '--log-format', 'short'],
retcode=1, working_dir='b')[0]
# one line for 'Using save location'
# one line for 'You are missing 2 revision(s)'
# three lines by missing revision
self.assertEquals(8, len(missing.splitlines()))
def test_logformat_gnu_changelog(self):
# from http://launchpad.net/bugs/29582/
wt = self.make_branch_and_tree('.')
wt.commit('first revision', timestamp=1236045060,
timezone=0) # Aka UTC
log, err = self.run_bzr(['log', '--log-format', 'gnu-changelog',
'--timezone=utc'])
self.assertEquals('', err)
expected = """2009-03-03 Joe Foo <joe@foo.com>
\tfirst revision
"""
self.assertEqualDiff(expected, log)
|