~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testrevision.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-08-18 02:24:28 UTC
  • mto: (1092.1.41) (1185.3.4) (974.1.47)
  • mto: This revision was merged to the branch mainline in revision 1110.
  • Revision ID: aaron.bentley@utoronto.ca-20050818022428-4c0bf84005f4dba8
mergedĀ mbp@sourcefrog.net-20050817233101-0939da1cf91f2472

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# (C) 2005 Canonical Ltd
 
2
 
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
 
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
 
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
from bzrlib.selftest import InTempDir
 
18
 
 
19
 
 
20
def make_branches():
 
21
    from bzrlib.branch import Branch
 
22
    from bzrlib.commit import commit
 
23
    import os
 
24
    os.mkdir("branch1")
 
25
    br1 = Branch("branch1", init=True)
 
26
    commit(br1, "Commit one")
 
27
    commit(br1, "Commit two")
 
28
    commit(br1, "Commit three")
 
29
 
 
30
    os.mkdir("branch2")
 
31
    br2 = Branch("branch2", init=True)
 
32
    br2.update_revisions(br1)
 
33
    commit(br2, "Commit four")
 
34
    commit(br2, "Commit five")
 
35
    revisions_2 = br2.revision_history()
 
36
    br1.add_pending_merge(revisions_2[4])
 
37
    commit(br1, "Commit six")
 
38
    return br1, br2
 
39
 
 
40
 
 
41
class TestIsAncestor(InTempDir):
 
42
    """Test checking whether a revision is an ancestor of another revision"""
 
43
    def runTest(self):
 
44
        from bzrlib.revision import is_ancestor, MultipleRevisionSources
 
45
        from bzrlib.errors import NoSuchRevision
 
46
        br1, br2 = make_branches()
 
47
        revisions = br1.revision_history()
 
48
        revisions_2 = br2.revision_history()
 
49
        sources = MultipleRevisionSources(br1, br2)
 
50
 
 
51
        assert is_ancestor(revisions[0], revisions[0], sources)
 
52
        assert is_ancestor(revisions[1], revisions[0], sources)
 
53
        assert not is_ancestor(revisions[0], revisions[1], sources)
 
54
        assert is_ancestor(revisions_2[3], revisions[0], sources)
 
55
        self.assertRaises(NoSuchRevision, is_ancestor, revisions_2[3],
 
56
                          revisions[0], br1)        
 
57
        assert is_ancestor(revisions[3], revisions_2[4], sources)
 
58
        assert is_ancestor(revisions[3], revisions_2[4], br1)
 
59
        assert is_ancestor(revisions[3], revisions_2[3], sources)
 
60
        assert not is_ancestor(revisions[3], revisions_2[3], br1)
 
61
 
 
62
 
 
63
TEST_CLASSES = [
 
64
    TestIsAncestor,
 
65
    ]