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, 2008, 2009, 2011, 2016 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
"""Tests for revision properties."""
from bzrlib.tests.per_repository import (
TestCaseWithRepository,
)
class TestRevProps(TestCaseWithRepository):
def test_simple_revprops(self):
"""Simple revision properties"""
wt = self.make_branch_and_tree('.')
b = wt.branch
b.nick = 'Nicholas'
props = dict(flavor='choc-mint',
condiment='orange\n mint\n\tcandy',
empty='',
non_ascii=u'\xb5')
wt.commit(message='initial null commit',
revprops=props,
allow_pointless=True,
rev_id='test@user-1')
rev = b.repository.get_revision('test@user-1')
self.assertTrue('flavor' in rev.properties)
self.assertEqual(rev.properties['flavor'], 'choc-mint')
self.assertEqual([('branch-nick', 'Nicholas'),
('condiment', 'orange\n mint\n\tcandy'),
('empty', ''),
('flavor', 'choc-mint'),
('non_ascii', u'\xb5'),
], sorted(rev.properties.items()))
def test_invalid_revprops(self):
"""Invalid revision properties"""
wt = self.make_branch_and_tree('.')
b = wt.branch
self.assertRaises(ValueError,
wt.commit,
message='invalid',
revprops={'what a silly property': 'fine'})
self.assertRaises(ValueError,
wt.commit,
message='invalid',
revprops=dict(number=13))
class TestRevisionAttributes(TestCaseWithRepository):
"""Test that revision attributes are correct."""
def test_revision_accessors(self):
"""Make sure the values that come out of a revision are the
same as the ones that go in.
"""
tree1 = self.make_branch_and_tree("br1")
# create a revision
rev1 = tree1.commit(message="quux", allow_pointless=True,
committer="jaq",
revprops={'empty':'',
'value':'one',
'unicode':u'\xb5',
'multiline':'foo\nbar\n\n'
})
self.assertEqual(tree1.branch.last_revision(), rev1)
rev_a = tree1.branch.repository.get_revision(
tree1.branch.last_revision())
tree2 = self.make_branch_and_tree("br2")
tree2.commit(message=rev_a.message,
timestamp=rev_a.timestamp,
timezone=rev_a.timezone,
committer=rev_a.committer,
rev_id=rev_a.revision_id,
revprops=rev_a.properties,
allow_pointless=True, # there's nothing in this commit
strict=True,
verbose=True)
rev_b = tree2.branch.repository.get_revision(
tree2.branch.last_revision())
self.assertEqual(rev_a.message, rev_b.message)
self.assertEqual(rev_a.timestamp, rev_b.timestamp)
self.assertEqual(rev_a.timezone, rev_b.timezone)
self.assertEqual(rev_a.committer, rev_b.committer)
self.assertEqual(rev_a.revision_id, rev_b.revision_id)
self.assertEqual(rev_a.properties, rev_b.properties)
def test_zero_timezone(self):
tree1 = self.make_branch_and_tree("br1")
# create a revision
tree1.commit(message="quux", timezone=0, rev_id='r1')
rev_a = tree1.branch.repository.get_revision('r1')
self.assertEqual(0, rev_a.timezone)
|