20
from bzrlib.builtins import merge
21
from bzrlib.branch import Branch
22
from bzrlib.tests import TestCaseWithTransport
19
from bzrlib.selftest import TestCaseInTempDir
23
20
from bzrlib.errors import NoCommonAncestor, NoCommits
24
from bzrlib.errors import NoSuchRevision
25
from bzrlib.revisionspec import RevisionSpec
28
class TestRevisionNamespaces(TestCaseWithTransport):
21
from bzrlib.branch import copy_branch
22
from bzrlib.merge import merge
24
class TestRevisionNamespaces(TestCaseInTempDir):
30
26
def test_revision_namespaces(self):
31
27
"""Test revision specifiers.
33
29
These identify revisions by date, etc."""
34
wt = self.make_branch_and_tree('.')
37
wt.commit('Commit one', rev_id='a@r-0-1', timestamp=time.time() - 60*60*24)
38
wt.commit('Commit two', rev_id='a@r-0-2')
39
wt.commit('Commit three', rev_id='a@r-0-3')
30
from bzrlib.errors import NoSuchRevision
31
from bzrlib.branch import Branch
32
from bzrlib.revisionspec import RevisionSpec
34
b = Branch.initialize('.')
36
b.commit('Commit one', rev_id='a@r-0-1', timestamp=time.time() - 60*60*24)
37
b.commit('Commit two', rev_id='a@r-0-2')
38
b.commit('Commit three', rev_id='a@r-0-3')
41
40
self.assertEquals(RevisionSpec(None).in_history(b), (0, None))
42
41
self.assertEquals(RevisionSpec(1).in_history(b), (1, 'a@r-0-1'))
67
66
os.mkdir('newbranch')
68
wt2 = self.make_branch_and_tree('newbranch')
67
b2 = Branch.initialize('newbranch')
70
68
self.assertRaises(NoCommits, RevisionSpec('ancestor:.').in_history, b2)
72
d3 = b.bzrdir.sprout('copy')
74
wt3 = d3.open_workingtree()
75
wt3.commit('Commit four', rev_id='b@r-0-4')
71
b3 = copy_branch(b, 'copy')
72
b3.commit('Commit four', rev_id='b@r-0-4')
76
73
self.assertEquals(RevisionSpec('ancestor:.').in_history(b3).rev_id,
78
75
merge(['copy', -1], [None, None])
79
wt.commit('Commit five', rev_id='a@r-0-4')
76
b.commit('Commit five', rev_id='a@r-0-4')
80
77
self.assertEquals(RevisionSpec('ancestor:copy').in_history(b).rev_id,
82
79
self.assertEquals(RevisionSpec('ancestor:.').in_history(b3).rev_id,
85
# This should be in the revision store, but not in revision-history
86
self.assertEquals((None, 'b@r-0-4'),
87
RevisionSpec('revid:b@r-0-4').in_history(b))
89
def test_branch_namespace(self):
90
"""Ensure that the branch namespace pulls in the requisite content."""
91
self.build_tree(['branch1/', 'branch1/file', 'branch2/'])
92
wt = self.make_branch_and_tree('branch1')
96
d2 = branch.bzrdir.sprout('branch2')
97
print >> open('branch2/file', 'w'), 'new content'
98
branch2 = d2.open_branch()
99
d2.open_workingtree().commit('update file', rev_id='A')
100
spec = RevisionSpec('branch:./branch2/.bzr/../')
101
rev_info = spec.in_history(branch)
102
self.assertEqual(rev_info, (None, 'A'))