~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testbzr

  • Committer: Martin Pool
  • Date: 2005-05-10 07:06:05 UTC
  • Revision ID: mbp@sourcefrog.net-20050510070605-0a2453ae5db6fc3c
- new command 'bzr added'

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/python
2
 
# -*- coding: utf-8 -*-
3
2
 
4
3
# Copyright (C) 2005 Canonical Ltd
5
4
 
17
16
# along with this program; if not, write to the Free Software
18
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
18
 
20
 
print 'please use "bzr selftest" instead'
21
 
import sys
22
 
sys.exit(1)
23
 
 
 
19
 
 
20
"""External black-box test for bzr.
 
21
 
 
22
This always runs bzr as an external process to try to catch bugs
 
23
related to argument processing, startup, etc.
 
24
 
 
25
This replaces the previous test.sh which was not very portable."""
 
26
 
 
27
import sys, os, traceback
 
28
from os import mkdir
 
29
from os.path import exists
 
30
 
 
31
TESTDIR = "testbzr.tmp"
 
32
 
 
33
LOGFILENAME = 'testbzr.log'
 
34
 
 
35
try:
 
36
    import shutil
 
37
    from subprocess import call, Popen, PIPE
 
38
except ImportError, e:
 
39
    sys.stderr.write("testbzr: sorry, this test suite requires modules from python2.4\n"
 
40
                     + '    ' + str(e))
 
41
    sys.exit(1)
 
42
 
 
43
 
 
44
class CommandFailed(Exception):
 
45
    pass
 
46
 
 
47
 
 
48
def formcmd(cmd):
 
49
    if isinstance(cmd, basestring):
 
50
        logfile.write('$ %s\n' % cmd)
 
51
        cmd = cmd.split()
 
52
    else:
 
53
        logfile.write('$ %r\n' % cmd)
 
54
 
 
55
    if cmd[0] == 'bzr':
 
56
        cmd[0] = BZRPATH
 
57
 
 
58
    return cmd
 
59
 
 
60
 
 
61
def runcmd(cmd, retcode=0):
 
62
    """Run one command and check the return code.
 
63
 
 
64
    Returns a tuple of (stdout,stderr) strings.
 
65
 
 
66
    If a single string is based, it is split into words.
 
67
    For commands that are not simple space-separated words, please
 
68
    pass a list instead."""
 
69
    cmd = formcmd(cmd)
 
70
    log_linenumber()
 
71
    
 
72
    actual_retcode = call(cmd, stdout=logfile, stderr=logfile)
 
73
    
 
74
    if retcode != actual_retcode:
 
75
        raise CommandFailed("test failed: %r returned %d, expected %d"
 
76
                            % (cmd, actual_retcode, retcode))
 
77
 
 
78
 
 
79
 
 
80
def backtick(cmd, retcode=0):
 
81
    cmd = formcmd(cmd)
 
82
    log_linenumber()
 
83
    child = Popen(cmd, stdout=PIPE, stderr=logfile)
 
84
    outd, errd = child.communicate()
 
85
    logfile.write(outd)
 
86
    actual_retcode = child.wait()
 
87
 
 
88
    outd = outd.replace('\r', '')
 
89
    
 
90
    if retcode != actual_retcode:
 
91
        raise CommandFailed("test failed: %r returned %d, expected %d"
 
92
                            % (cmd, actual_retcode, retcode))
 
93
 
 
94
    return outd
 
95
 
 
96
 
 
97
 
 
98
def progress(msg):
 
99
    print '* ' + msg
 
100
    logfile.write('* '+ msg + '\n')
 
101
    log_linenumber()
 
102
 
 
103
 
 
104
def cd(dirname):
 
105
    logfile.write('$ cd %s\n' % dirname)
 
106
    os.chdir(dirname)
 
107
 
 
108
 
 
109
 
 
110
def log_linenumber():
 
111
    """Log the stack frame location two things up."""
 
112
    stack = traceback.extract_stack()[-3]
 
113
    logfile.write('   at %s:%d\n' % stack[:2])
 
114
 
 
115
 
 
116
 
 
117
# prepare an empty scratch directory
 
118
if os.path.exists(TESTDIR):
 
119
    shutil.rmtree(TESTDIR)
 
120
 
 
121
 
 
122
logfile = open(LOGFILENAME, 'wt', buffering=1)
 
123
 
 
124
 
 
125
try:
 
126
    mypath = os.path.abspath(sys.argv[0])
 
127
    print '%-30s %s' % ('running tests from', mypath)
 
128
 
 
129
    global BZRPATH
 
130
 
 
131
    if len(sys.argv) > 1:
 
132
        BZRPATH = sys.argv[1]
 
133
    else:
 
134
        BZRPATH = os.path.join(os.path.split(mypath)[0], 'bzr')
 
135
 
 
136
    print '%-30s %s' % ('against bzr', BZRPATH)
 
137
    print '%-30s %s' % ('in directory', os.getcwd())
 
138
    print
 
139
    print backtick([BZRPATH, 'version'])
 
140
    
 
141
    runcmd(['mkdir', TESTDIR])
 
142
    cd(TESTDIR)
 
143
 
 
144
    progress("introductory commands")
 
145
    runcmd("bzr version")
 
146
    runcmd("bzr --version")
 
147
    runcmd("bzr help")
 
148
    runcmd("bzr --help")
 
149
 
 
150
    progress("internal tests")
 
151
    runcmd("bzr selftest")
 
152
 
 
153
    progress("user identity")
 
154
    # this should always identify something, if only "john@localhost"
 
155
    runcmd("bzr whoami")
 
156
    runcmd("bzr whoami --email")
 
157
    assert backtick("bzr whoami --email").count('@') == 1
 
158
 
 
159
    progress("invalid commands")
 
160
    runcmd("bzr pants", retcode=1)
 
161
    runcmd("bzr --pants off", retcode=1)
 
162
    runcmd("bzr diff --message foo", retcode=1)
 
163
 
 
164
    progress("basic branch creation")
 
165
    runcmd(['mkdir', 'branch1'])
 
166
    cd('branch1')
 
167
    runcmd('bzr init')
 
168
 
 
169
    progress("status of new file")
 
170
    
 
171
    f = file('test.txt', 'wt')
 
172
    f.write('hello world!\n')
 
173
    f.close()
 
174
 
 
175
    out = backtick("bzr unknowns")
 
176
    assert out == 'test.txt\n'
 
177
 
 
178
    out = backtick("bzr status")
 
179
    assert out == '''?       test.txt\n'''
 
180
 
 
181
    out = backtick("bzr status --all")
 
182
    assert out == "?       test.txt\n"
 
183
 
 
184
    out = backtick("bzr status test.txt --all")
 
185
    assert out == "?       test.txt\n"
 
186
 
 
187
    f = file('test2.txt', 'wt')
 
188
    f.write('goodbye cruel world...\n')
 
189
    f.close()
 
190
 
 
191
    out = backtick("bzr status test.txt")
 
192
    assert out == "?       test.txt\n"
 
193
 
 
194
    out = backtick("bzr status")
 
195
    assert out == "?       test.txt\n" \
 
196
                + "?       test2.txt\n"
 
197
 
 
198
    os.unlink('test2.txt')
 
199
 
 
200
    progress("command aliases")
 
201
    out = backtick("bzr st --all")
 
202
    assert out == "?       test.txt\n"
 
203
    out = backtick("bzr stat")
 
204
    assert out == "?       test.txt\n"
 
205
 
 
206
    progress("command help")
 
207
    runcmd("bzr help st")
 
208
    runcmd("bzr help")
 
209
    runcmd("bzr help commands")
 
210
    runcmd("bzr help slartibartfast", 1)
 
211
 
 
212
    out = backtick("bzr help ci")
 
213
    out.index('aliases: ')
 
214
 
 
215
    progress("can't rename unversioned file")
 
216
    runcmd("bzr rename test.txt new-test.txt", 1)
 
217
 
 
218
    progress("adding a file")
 
219
 
 
220
    runcmd("bzr add test.txt")
 
221
    assert backtick("bzr unknowns") == ''
 
222
    assert backtick("bzr status --all") == "A       test.txt\n"
 
223
 
 
224
    progress("rename newly-added file")
 
225
    runcmd("bzr rename test.txt hello.txt")
 
226
    assert os.path.exists("hello.txt")
 
227
    assert not os.path.exists("test.txt")
 
228
 
 
229
    assert backtick("bzr revno") == '0\n'
 
230
 
 
231
    progress("add first revision")
 
232
    runcmd(["bzr", "commit", "-m", 'add first revision'])
 
233
 
 
234
    progress("more complex renames")
 
235
    os.mkdir("sub1")
 
236
    runcmd("bzr rename hello.txt sub1", 1)
 
237
    runcmd("bzr rename hello.txt sub1/hello.txt", 1)
 
238
    runcmd("bzr move hello.txt sub1", 1)
 
239
 
 
240
    runcmd("bzr add sub1")
 
241
    runcmd("bzr rename sub1 sub2")
 
242
    runcmd("bzr move hello.txt sub2")
 
243
    assert backtick("bzr relpath sub2/hello.txt") == "sub2/hello.txt\n"
 
244
 
 
245
    assert exists("sub2")
 
246
    assert exists("sub2/hello.txt")
 
247
    assert not exists("sub1")
 
248
    assert not exists("hello.txt")
 
249
 
 
250
    runcmd(['bzr', 'commit', '-m', 'commit with some things moved to subdirs'])
 
251
 
 
252
    mkdir("sub1")
 
253
    runcmd('bzr add sub1')
 
254
    runcmd('bzr move sub2/hello.txt sub1')
 
255
    assert not exists('sub2/hello.txt')
 
256
    assert exists('sub1/hello.txt')
 
257
    runcmd('bzr move sub2 sub1')
 
258
    assert not exists('sub2')
 
259
    assert exists('sub1/sub2')
 
260
 
 
261
    runcmd(['bzr', 'commit', '-m', 'rename nested subdirectories'])
 
262
 
 
263
    cd('sub1/sub2')
 
264
    runcmd('bzr move ../hello.txt .')
 
265
    assert exists('./hello.txt')
 
266
    assert backtick('bzr relpath hello.txt') == 'sub1/sub2/hello.txt\n'
 
267
    assert backtick('bzr relpath ../../sub1/sub2/hello.txt') == 'sub1/sub2/hello.txt\n'
 
268
    runcmd(['bzr', 'commit', '-m', 'move to parent directory'])
 
269
    cd('..')
 
270
    assert backtick('bzr relpath sub2/hello.txt') == 'sub1/sub2/hello.txt\n'
 
271
 
 
272
    runcmd('bzr move sub2/hello.txt .')
 
273
    assert exists('hello.txt')
 
274
 
 
275
    f = file('hello.txt', 'wt')
 
276
    f.write('some nice new content\n')
 
277
    f.close()
 
278
 
 
279
    f = file('msg.tmp', 'wt')
 
280
    f.write('this is my new commit\n')
 
281
    f.close()
 
282
 
 
283
    runcmd('bzr commit -F msg.tmp')
 
284
 
 
285
    assert backtick('bzr revno') == '5\n'
 
286
    runcmd('bzr export -r 5 export-5.tmp')
 
287
    runcmd('bzr export export.tmp')
 
288
    
 
289
    cd('..')
 
290
    cd('..')
 
291
 
 
292
    progress('ignore patterns')
 
293
    mkdir('ignorebranch')
 
294
    cd('ignorebranch')
 
295
    runcmd('bzr init')
 
296
    assert backtick('bzr unknowns') == ''
 
297
 
 
298
    file('foo.tmp', 'wt').write('tmp files are ignored')
 
299
    assert backtick('bzr unknowns') == ''
 
300
 
 
301
    file('foo.c', 'wt').write('int main() {}')
 
302
    assert backtick('bzr unknowns') == 'foo.c\n'
 
303
    runcmd('bzr add foo.c')
 
304
    assert backtick('bzr unknowns') == ''
 
305
 
 
306
    file('foo.blah', 'wt').write('blah')
 
307
    assert backtick('bzr unknowns') == 'foo.blah\n'
 
308
    runcmd('bzr ignore *.blah')
 
309
    assert backtick('bzr unknowns') == ''
 
310
    assert file('.bzrignore', 'rt').read() == '*.blah\n'
 
311
 
 
312
 
 
313
    progress("all tests passed!")
 
314
except Exception, e:
 
315
    sys.stderr.write('*' * 50 + '\n'
 
316
                     + 'testbzr: tests failed\n'
 
317
                     + 'see ' + LOGFILENAME + ' for more information\n'
 
318
                     + '*' * 50 + '\n')
 
319
    logfile.write('tests failed!\n')
 
320
    traceback.print_exc(None, logfile)
 
321
    sys.exit(1)