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
|
# (C) 2005 Canonical
"""Tests for revision properties."""
from bzrlib.tests import TestCaseWithTransport
class TestRevProps(TestCaseWithTransport):
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')
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.assertEquals(rev.properties['flavor'], 'choc-mint')
self.assertEquals(sorted(rev.properties.items()),
[('branch-nick', 'Nicholas'),
('condiment', 'orange\n mint\n\tcandy'),
('flavor', 'choc-mint')])
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))
|