~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/whitebox.py

  • Committer: Martin Pool
  • Date: 2005-11-04 01:46:31 UTC
  • mto: (1185.33.49 bzr.dev)
  • mto: This revision was merged to the branch mainline in revision 1512.
  • Revision ID: mbp@sourcefrog.net-20051104014631-750e0ad4172c952c
Make biobench directly executable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/python
2
 
 
3
1
import os
4
2
import unittest
5
3
 
11
9
class TestBranch(TestCaseInTempDir):
12
10
 
13
11
    def test_unknowns(self):
14
 
        b = Branch('.', init=True)
 
12
        b = Branch.initialize('.')
15
13
 
16
14
        self.build_tree(['hello.txt',
17
15
                         'hello.txt~'])
22
20
    def test_no_changes(self):
23
21
        from bzrlib.errors import PointlessCommit
24
22
        
25
 
        b = Branch('.', init=True)
 
23
        b = Branch.initialize('.')
26
24
 
27
25
        self.build_tree(['hello.txt'])
28
26
 
47
45
        b.commit('commit pointless revision with one file',
48
46
                 allow_pointless=True)
49
47
 
50
 
        b.add_pending_merge('mbp@892739123-2005-123123')
51
 
        b.commit('commit new merge with no text changes',
52
 
                 allow_pointless=False)
53
 
        
54
 
 
55
 
 
56
 
class TestRevisionId(TestCase):
57
 
    
58
 
    def test_validate_revision_id(self):
59
 
        from bzrlib.revision import validate_revision_id
60
 
        validate_revision_id('mbp@sourcefrog.net-20050311061123-96a255005c7c9dbe')
61
 
        self.assertRaises(ValueError,
62
 
                          validate_revision_id,
63
 
                          ' asdkjas')
64
 
        self.assertRaises(ValueError,
65
 
                          validate_revision_id,
66
 
                          'mbp@sourcefrog.net-20050311061123-96a255005c7c9dbe\n')
67
 
        self.assertRaises(ValueError,
68
 
                          validate_revision_id,
69
 
                          ' mbp@sourcefrog.net-20050311061123-96a255005c7c9dbe')
70
 
        self.assertRaises(ValueError,
71
 
                          validate_revision_id,
72
 
                          'Martin Pool <mbp@sourcefrog.net>-20050311061123-96a255005c7c9dbe')
73
 
 
74
 
 
75
 
class PendingMerges(TestCaseInTempDir):
76
 
 
77
 
    def test_pending_merges(self):
78
 
        """Tracking pending-merged revisions."""
79
 
        b = Branch('.', init=True)
80
 
 
81
 
        self.assertEquals(b.pending_merges(), [])
82
 
        b.add_pending_merge('foo@azkhazan-123123-abcabc')
83
 
        self.assertEquals(b.pending_merges(), ['foo@azkhazan-123123-abcabc'])
84
 
        b.add_pending_merge('foo@azkhazan-123123-abcabc')
85
 
        self.assertEquals(b.pending_merges(), ['foo@azkhazan-123123-abcabc'])
86
 
        b.add_pending_merge('wibble@fofof--20050401--1928390812')
87
 
        self.assertEquals(b.pending_merges(),
88
 
                          ['foo@azkhazan-123123-abcabc',
89
 
                           'wibble@fofof--20050401--1928390812'])
90
 
        b.commit("commit from base with two merges")
91
 
        rev = b.get_revision(b.revision_history()[0])
92
 
        self.assertEquals(len(rev.parents), 2)
93
 
        self.assertEquals(rev.parents[0].revision_id,
94
 
                          'foo@azkhazan-123123-abcabc')
95
 
        self.assertEquals(rev.parents[1].revision_id,
96
 
                           'wibble@fofof--20050401--1928390812')
97
 
        # list should be cleared when we do a commit
98
 
        self.assertEquals(b.pending_merges(), [])
99
 
        
 
48
 
 
49
class MoreTests(TestCaseInTempDir):
 
50
 
100
51
    def test_revert(self):
101
52
        """Test selected-file revert"""
102
 
        b = Branch('.', init=True)
 
53
        b = Branch.initialize('.')
103
54
 
104
55
        self.build_tree(['hello.txt'])
105
56
        file('hello.txt', 'w').write('initial hello')
126
77
 
127
78
    def test_rename_dirs(self):
128
79
        """Test renaming directories and the files within them."""
129
 
        b = Branch('.', init=True)
 
80
        b = Branch.initialize('.')
130
81
        self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
131
82
        b.add(['dir', 'dir/sub', 'dir/sub/file'])
132
83
 
146
97
 
147
98
        b.rename_one('dir', 'newdir')
148
99
 
149
 
        self.check_inventory_shape(b.inventory,
 
100
        self.check_inventory_shape(b.working_tree().read_working_inventory(),
150
101
                                   ['newdir', 'newdir/sub', 'newdir/sub/file'])
151
102
 
152
103
        b.rename_one('newdir/sub', 'newdir/newsub')
153
 
        self.check_inventory_shape(b.inventory,
 
104
        self.check_inventory_shape(b.working_tree().read_working_inventory(),
154
105
                                   ['newdir', 'newdir/newsub',
155
106
                                    'newdir/newsub/file'])
156
107
 
157
108
    def test_relpath(self):
158
109
        """test for branch path lookups
159
110
    
160
 
        Branch.relpath and bzrlib.branch._relpath do a simple but subtle
 
111
        bzrlib.osutils._relpath do a simple but subtle
161
112
        job: given a path (either relative to cwd or absolute), work out
162
113
        if it is inside a branch and return the path relative to the base.
163
114
        """
164
 
        from bzrlib.branch import _relpath
 
115
        from bzrlib.osutils import relpath
165
116
        import tempfile, shutil
166
117
        
167
118
        savedir = os.getcwdu()
170
121
        dtmp = os.path.realpath(dtmp)
171
122
 
172
123
        def rp(p):
173
 
            return _relpath(dtmp, p)
 
124
            return relpath(dtmp, p)
174
125
        
175
126
        try:
176
127
            # check paths inside dtmp while standing outside it
197
148
            # directory, or nearby
198
149
            os.chdir(dtmp)
199
150
 
200
 
            self.assertEqual(rp('foo/bar/quux'), 'foo/bar/quux')
 
151
            FOO_BAR_QUUX = os.path.join('foo', 'bar', 'quux')
 
152
            self.assertEqual(rp('foo/bar/quux'), FOO_BAR_QUUX)
201
153
 
202
154
            self.assertEqual(rp('foo'), 'foo')
203
155