/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revisiontree.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-18 18:57:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1868.
  • Revision ID: john@arbash-meinel.com-20060718185754-4007745748e28db9
Commit timestamp restricted to 1ms precision.

The old code would restrict to 1s resolution if the timestamp was
supplied, while it preserved full resolution if the timestamp was
auto generated. Now both paths preserve only 1ms resolution.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2006 Canonical Ltd
2
2
# Authors:  Robert Collins <robert.collins@canonical.com>
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
13
13
#
14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
"""Tests for the RevisionTree class."""
19
19
 
20
 
from bzrlib import (
21
 
    errors,
22
 
    revision,
23
 
    )
24
20
import bzrlib
25
 
from bzrlib.inventory import ROOT_ID
26
21
from bzrlib.tests import TestCaseWithTransport
 
22
from bzrlib.tree import RevisionTree
27
23
 
28
24
 
29
25
class TestTreeWithCommits(TestCaseWithTransport):
51
47
            [self.rev_id],
52
48
            self.t.branch.repository.revision_tree(revid_2).get_parent_ids())
53
49
        # TODO commit a merge and check it is reported correctly.
54
 
 
55
 
        # the parents for a revision_tree(NULL_REVISION) are []:
56
 
        self.assertEqual([],
57
 
            self.t.branch.repository.revision_tree(
58
 
                revision.NULL_REVISION).get_parent_ids())
59
 
 
60
 
    def test_empty_no_root(self):
61
 
        null_tree = self.t.branch.repository.revision_tree(
62
 
            revision.NULL_REVISION)
63
 
        self.assertIs(None, null_tree.inventory.root)
64
 
 
65
 
    def test_get_file_mtime_ghost(self):
66
 
        file_id = iter(self.rev_tree).next()
67
 
        self.rev_tree.inventory[file_id].revision = 'ghostrev'
68
 
        self.assertRaises(errors.FileTimestampUnavailable, 
69
 
            self.rev_tree.get_file_mtime, file_id)
 
50