~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to tests/blackbox.py

  • Committer: Aaron Bentley
  • Date: 2007-03-09 18:25:10 UTC
  • mto: This revision was merged to the branch mainline in revision 520.
  • Revision ID: abentley@panoramicfeedback.com-20070309182510-fkj1j6t119d1cj5q
Handle broken python tar implementations

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
    def test_clean_tree(self):
10
10
        self.runbzr('init')
 
11
        self.runbzr('ignore *~')
 
12
        self.runbzr('ignore *.pyc')
11
13
        self.touch('name')
12
14
        self.touch('name~')
13
15
        assert os.path.lexists('name~')
15
17
        self.runbzr('clean-tree')
16
18
        assert os.path.lexists('name~')
17
19
        assert not os.path.lexists('name')
 
20
        self.touch('name')
18
21
        self.runbzr('clean-tree --detritus')
 
22
        assert os.path.lexists('name')
19
23
        assert not os.path.lexists('name~')
20
24
        assert os.path.lexists('name.pyc')
21
25
        self.runbzr('clean-tree --ignored')
 
26
        assert os.path.lexists('name')
 
27
        assert not os.path.lexists('name.pyc')
 
28
        self.runbzr('clean-tree --unknown')
 
29
        assert not os.path.lexists('name')
 
30
        self.touch('name')
 
31
        self.touch('name~')
 
32
        self.touch('name.pyc')
 
33
        self.runbzr('clean-tree --unknown --ignored')
 
34
        assert not os.path.lexists('name')
 
35
        assert not os.path.lexists('name~')
22
36
        assert not os.path.lexists('name.pyc')
23
37
 
24
38
    def test_shelve(self):
43
57
        file('mypatch', 'wb').write(self.runbzr('diff', retcode=1, backtick=1))
44
58
        self.runbzr('revert')
45
59
        assert file('myfile', 'rb').read() == 'hello'
46
 
        self.runbzr('patch mypatch')
 
60
        self.runbzr('patch --silent mypatch')
47
61
        assert file('myfile', 'rb').read() == 'goodbye'
48
62
 
49
63
    def test_branch_history(self):
74
88
        self.runbzr('init source')
75
89
        self.runbzr('checkout --lightweight source checkout')
76
90
        self.runbzr('zap checkout')
77
 
 
 
91
        self.assertIs(False, os.path.exists('checkout'))
 
92
        self.assertIs(True, os.path.exists('source'))
 
93
 
 
94
    def test_zap_branch(self):
 
95
        self.runbzr('init source')
 
96
        self.runbzr('checkout --lightweight source checkout')
 
97
        self.runbzr('zap --branch checkout', retcode=3)
 
98
        self.assertIs(True, os.path.exists('checkout'))
 
99
        self.assertIs(True, os.path.exists('source'))
 
100
        self.runbzr('branch source source2')
 
101
        self.runbzr('checkout --lightweight source2 checkout2')
 
102
        self.runbzr('zap --branch checkout2')
 
103
        self.assertIs(False, os.path.exists('checkout2'))
 
104
        self.assertIs(False, os.path.exists('source2'))
 
105
 
 
106
    def test_branches(self):
 
107
        self.runbzr('init source')
 
108
        self.runbzr('init source/subsource')
 
109
        self.runbzr('checkout --lightweight source checkout')
 
110
        self.runbzr('init checkout/subcheckout')
 
111
        self.runbzr('init checkout/.bzr/subcheckout')
 
112
        out = self.capture('branches')
 
113
        lines = out.split('\n')
 
114
        self.assertIs(True, 'source' in lines)
 
115
        self.assertIs(True, 'source/subsource' in lines)
 
116
        self.assertIs(True, 'checkout/subcheckout' in lines)
 
117
        self.assertIs(True, 'checkout' not in lines)
 
118
        self.assertIs(True, 'checkout/.bzr/subcheckout' not in lines)
 
119
 
 
120
    def test_import_upstream(self):
 
121
        self.runbzr('init source')
 
122
        os.mkdir('source/src')
 
123
        f = file('source/src/myfile', 'wb')
 
124
        f.write('hello?')
 
125
        f.close()
 
126
        os.chdir('source')
 
127
        self.runbzr('add')
 
128
        self.runbzr('commit -m hello')
 
129
        self.runbzr('export ../source-0.1.tar.gz')
 
130
        self.runbzr('export ../source-0.1.tar.bz2')
 
131
        self.runbzr('export ../source-0.1')
 
132
        self.runbzr('init ../import')
 
133
        os.chdir('../import')
 
134
        self.runbzr('import ../source-0.1.tar.gz')
 
135
        self.failUnlessExists('src/myfile')
 
136
        result = self.runbzr('import ../source-0.1.tar.gz', retcode=3)[1]
 
137
        self.assertContainsRe(result, 'Working tree has uncommitted changes')
 
138
        self.runbzr('commit -m commit')
 
139
        self.runbzr('import ../source-0.1.tar.gz')
 
140
        os.chdir('..')
 
141
        self.runbzr('init import2')
 
142
        self.runbzr('import source-0.1.tar.gz import2')
 
143
        self.failUnlessExists('import2/src/myfile')
 
144
        self.runbzr('import source-0.1.tar.gz import3')
 
145
        self.failUnlessExists('import3/src/myfile')
 
146
        self.runbzr('import source-0.1.tar.bz2 import4')
 
147
        self.failUnlessExists('import4/src/myfile')
 
148
        self.runbzr('import source-0.1 import5')
 
149
        self.failUnlessExists('import5/src/myfile')
78
150
 
79
151
def test_suite():
80
152
    return makeSuite(TestBzrTools)