~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revprops.py

  • Committer: Martin Pool
  • Date: 2005-09-06 02:26:28 UTC
  • Revision ID: mbp@sourcefrog.net-20050906022628-66d65f0feb4a9e80
- implement version 5 xml storage, and tests

  This stores files identified by the version that introduced the 
  text, and the version that introduced the name.  Entry kinds are
  given by the xml tag not an explicit kind field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# (C) 2005 Canonical
2
 
 
3
 
"""Tests for revision properties."""
4
 
 
5
 
from bzrlib.tests import TestCaseWithTransport
6
 
 
7
 
class TestRevProps(TestCaseWithTransport):
8
 
 
9
 
    def test_simple_revprops(self):
10
 
        """Simple revision properties"""
11
 
        wt = self.make_branch_and_tree('.')
12
 
        b = wt.branch
13
 
        b.nick = 'Nicholas'
14
 
        props = dict(flavor='choc-mint', 
15
 
                     condiment='orange\n  mint\n\tcandy')
16
 
        wt.commit(message='initial null commit', 
17
 
                 revprops=props,
18
 
                 allow_pointless=True,
19
 
                 rev_id='test@user-1')
20
 
        rev = b.repository.get_revision('test@user-1')
21
 
        self.assertTrue('flavor' in rev.properties)
22
 
        self.assertEquals(rev.properties['flavor'], 'choc-mint')
23
 
        self.assertEquals(sorted(rev.properties.items()),
24
 
                          [('branch-nick', 'Nicholas'), 
25
 
                           ('condiment', 'orange\n  mint\n\tcandy'),
26
 
                           ('flavor', 'choc-mint')])
27
 
 
28
 
    def test_invalid_revprops(self):
29
 
        """Invalid revision properties"""
30
 
        wt = self.make_branch_and_tree('.')
31
 
        b = wt.branch
32
 
        self.assertRaises(ValueError,
33
 
                          wt.commit, 
34
 
                          message='invalid',
35
 
                          revprops={'what a silly property': 'fine'})
36
 
        self.assertRaises(ValueError,
37
 
                          wt.commit, 
38
 
                          message='invalid',
39
 
                          revprops=dict(number=13))