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
110
111
112
113
114
|
# Copyright (C) 2005 by 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Test testaments for gpg signing."""
# TODO: Testaments with symlinks, x-bits
import os
from sha import sha
import sys
from bzrlib.selftest import TestCaseInTempDir
from bzrlib.selftest.treeshape import build_tree_contents
from bzrlib.branch import Branch
from bzrlib.testament import Testament
from bzrlib.trace import mutter
class TestamentTests(TestCaseInTempDir):
def setUp(self):
super(TestamentTests, self).setUp()
b = self.b = Branch.initialize('.')
b.commit(message='initial null commit',
committer='test@user',
timestamp=1129025423, # 'Tue Oct 11 20:10:23 2005'
timezone=0,
rev_id='test@user-1')
build_tree_contents([('hello', 'contents of hello file'),
('src/', ),
('src/foo.c', 'int main()\n{\n}\n')])
b.add(['hello', 'src', 'src/foo.c'],
['hello-id', 'src-id', 'foo.c-id'])
b.commit(message='add files and directories',
timestamp=1129025483,
timezone=36000,
rev_id='test@user-2',
committer='test@user')
def test_null_testament(self):
"""Testament for a revision with no contents."""
t = Testament.from_revision(self.b, 'test@user-1')
ass = self.assertTrue
eq = self.assertEqual
ass(isinstance(t, Testament))
eq(t.revision_id, 'test@user-1')
eq(t.committer, 'test@user')
eq(t.timestamp, 1129025423)
eq(t.timezone, 0)
def test_testment_text_form(self):
"""Conversion of testament to canonical text form."""
t = Testament.from_revision(self.b, 'test@user-1')
text_form = t.as_text()
self.log('testament text form:\n' + text_form)
expect = """\
bazaar-ng testament version 1
revision-id: test@user-1
committer: test@user
timestamp: 1129025423
timezone: 0
parents:
message:
initial null commit
inventory:
"""
self.assertEqual(text_form, expect)
def test_testament_with_contents(self):
"""Testament containing a file and a directory."""
t = Testament.from_revision(self.b, 'test@user-2')
text_form = t.as_text()
self.log('testament text form:\n' + text_form)
self.assertEqualDiff(text_form, REV_2_TESTAMENT)
actual_short = t.as_short_text()
self.assertEqualDiff(actual_short, """\
bazaar-ng testament short form 1
revision test@user-2
sha1 %s
""" % sha(REV_2_TESTAMENT).hexdigest())
def test_testament_command(self):
"""Testament containing a file and a directory."""
out, err = self.run_bzr_captured(['testament', '--long'])
self.assertEqualDiff(err, '')
self.assertEqualDiff(out, REV_2_TESTAMENT)
REV_2_TESTAMENT = """\
bazaar-ng testament version 1
revision-id: test@user-2
committer: test@user
timestamp: 1129025483
timezone: 36000
parents:
test@user-1
message:
add files and directories
inventory:
file hello hello-id 34dd0ac19a24bf80c4d33b5c8960196e8d8d1f73
directory src src-id
file src/foo.c foo.c-id a2a049c20f908ae31b231d98779eb63c66448f24
"""
|