/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/selftest/versioning.py

  • Committer: Martin Pool
  • Date: 2005-07-25 21:54:01 UTC
  • Revision ID: mbp@sourcefrog.net-20050725215401-0bed2682b7fee8b5
- fix bugs and add tests for doing commit of selected directories

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Tests of simple versioning operations"""
19
19
 
20
 
 
21
 
from bzrlib.selftest import InTempDir
 
20
# TODO: test adding a file whose directory is not versioned
 
21
# TODO: test trying to commit within a directory that is not yet added
 
22
 
 
23
 
 
24
import os
 
25
from bzrlib.selftest import InTempDir, BzrTestBase
 
26
from bzrlib.branch import Branch
 
27
 
22
28
 
23
29
class Mkdir(InTempDir):
24
30
    def runTest(self): 
25
31
        """Basic 'bzr mkdir' operation"""
26
32
        from bzrlib.commands import run_bzr
27
 
        import os
28
33
 
29
34
        run_bzr(['init'])
30
35
        run_bzr(['mkdir', 'foo'])
52
57
        branch add doesn't do that.
53
58
        """
54
59
        from bzrlib.branch import Branch
55
 
        import os
56
60
        from bzrlib.errors import NotVersionedError
57
61
 
58
62
        b = Branch('.', init=True)
65
69
                          'foo/hello')
66
70
        
67
71
        
68
 
class SubdirCommit(InTempDir):
 
72
class SubdirCommit(BzrTestBase):
69
73
    def runTest(self):
70
 
        pass
 
74
        """Test committing a subdirectory, and committing within a directory."""
 
75
        run_bzr = self.run_bzr
 
76
        eq = self.assertEqual
 
77
 
 
78
        self.build_tree(['a/', 'b/'])
 
79
        
 
80
        run_bzr('init')
 
81
        b = Branch('.')
 
82
        
 
83
        for fn in ('a/one', 'b/two', 'top'):
 
84
            file(fn, 'w').write('old contents')
 
85
            
 
86
        run_bzr('add')
 
87
        run_bzr('commit', '-m', 'first revision')
 
88
        
 
89
        for fn in ('a/one', 'b/two', 'top'):
 
90
            file(fn, 'w').write('new contents')
 
91
            
 
92
        run_bzr('commit', 'a', '-m', 'commit a only')
 
93
        
 
94
        old = b.revision_tree(b.lookup_revision(1))
 
95
        new = b.revision_tree(b.lookup_revision(2))
 
96
        
 
97
        eq(new.get_file_by_path('b/two').read(), 'old contents')
 
98
        eq(new.get_file_by_path('top').read(), 'old contents')
 
99
        eq(new.get_file_by_path('a/one').read(), 'new contents')
 
100
        
 
101
        os.chdir('a')
 
102
        # commit from here should do nothing
 
103
        run_bzr('commit', '.', '-m', 'commit subdir again', '--unchanged')
 
104
        v3 = b.revision_tree(b.lookup_revision(3))
 
105
        eq(v3.get_file_by_path('b/two').read(), 'old contents')
 
106
        eq(v3.get_file_by_path('top').read(), 'old contents')
 
107
        eq(v3.get_file_by_path('a/one').read(), 'new contents')
 
108
                
 
109
        # commit in subdirectory commits whole tree
 
110
        run_bzr('commit', '-m', 'commit in subdir')
 
111
        v4 = b.revision_tree(b.lookup_revision(4))
 
112
        eq(v4.get_file_by_path('b/two').read(), 'new contents')        
 
113
        eq(v4.get_file_by_path('top').read(), 'new contents')
 
114
        
 
115
        # TODO: factor out some kind of assert_tree_state() method
 
116
        
71
117
        
72
118
        
73
119
class SubdirAdd(InTempDir):
76
122
        
77
123
        from bzrlib.branch import Branch
78
124
        from bzrlib.commands import run_bzr
79
 
        import os
80
125
        
81
126
        eq = self.assertEqual
82
127
        ass = self.assert_
102
147
        chdir('..')
103
148
        eq(run_bzr(['add']), 0)
104
149
        eq(list(b.unknowns()), [])
105
 
           
106
 
 
107
 
 
108
 
TEST_CLASSES = [
109
 
    Mkdir,
110
 
    AddInUnversioned,
111
 
    ]
 
150
        
 
 
b'\\ No newline at end of file'