~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testbzr

  • Committer: Martin Pool
  • Date: 2005-04-28 07:24:55 UTC
  • Revision ID: mbp@sourcefrog.net-20050428072453-7b99afa993a1e549
todo

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
 
28
 
 
29
try:
 
30
    import shutil
 
31
    from subprocess import call, Popen
 
32
except ImportError, e:
 
33
    sys.stderr.write("testbzr: sorry, this test suite requires modules from python2.4\n"
 
34
                     + '    ' + str(e))
 
35
    sys.exit(1)
 
36
 
 
37
 
 
38
def runcmd(cmd):
 
39
    """run one command and check the output.
 
40
 
 
41
    If a single string is based, it is split into words.
 
42
    For commands that are not simple space-separated words, please
 
43
    pass a list instead."""
 
44
    
 
45
    if isinstance(cmd, basestring):
 
46
        cmd = cmd.split()
 
47
    logfile.write('$ %r\n' % cmd)
 
48
    retcode = call(cmd, stdout=logfile, stderr=logfile)
 
49
    if retcode != 0:
 
50
        raise Exception("test failed: %r returned %r" % (cmd, retcode))
 
51
 
 
52
 
 
53
def progress(msg):
 
54
    print '* ' + msg
 
55
    logfile.write('* '+ msg + '\n')
 
56
 
 
57
 
 
58
TESTDIR = "bzr-test.tmp"
 
59
 
 
60
# prepare an empty scratch directory
 
61
if os.path.exists(TESTDIR):
 
62
    shutil.rmtree(TESTDIR)
 
63
 
 
64
 
 
65
logfile = open('bzr-test.log', 'wt')
 
66
 
 
67
 
 
68
os.mkdir(TESTDIR)
 
69
os.chdir(TESTDIR)
 
70
 
 
71
 
 
72
progress("testing introductory commands")
 
73
runcmd("bzr version")
 
74
runcmd("bzr help")
 
75
runcmd("bzr --help")
 
76
 
 
77
progress("all tests passed!")