~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testbzr

  • Committer: Robert Collins
  • Date: 2005-10-06 22:15:52 UTC
  • mfrom: (1185.13.2)
  • mto: This revision was merged to the branch mainline in revision 1420.
  • Revision ID: robertc@robertcollins.net-20051006221552-9b15c96fa504e0ad
mergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/python
 
2
# -*- coding: utf-8 -*-
2
3
 
3
4
# Copyright (C) 2005 Canonical Ltd
4
5
 
16
17
# along with this program; if not, write to the Free Software
17
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19
 
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!")
 
20
print 'please use "bzr selftest" instead'
 
21
import sys
 
22
sys.exit(1)
 
23