~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_setup.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-05-28 00:25:32 UTC
  • mfrom: (5264.1.2 command-help-bug-177500)
  • Revision ID: pqm@pqm.ubuntu.com-20100528002532-9bzj1fajyxckd1rg
(lifeless) Stop raising at runtime when a command has no help,
 instead have a test in the test suite that checks all known command objects.
 (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2008-2011 Canonical Ltd
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
19
19
import os
20
20
import sys
21
21
import subprocess
 
22
import shutil
 
23
from tempfile import TemporaryFile
22
24
 
23
25
import bzrlib
24
26
from bzrlib.tests import TestCase, TestSkipped
41
43
        This tests that the build process and man generator run correctly.
42
44
        It also can catch new subdirectories that weren't added to setup.py.
43
45
        """
44
 
        # setup.py must be run from the root source directory, but the tests
45
 
        # are not necessarily invoked from there
46
 
        self.source_dir = os.path.dirname(os.path.dirname(bzrlib.__file__))
47
 
        if not os.path.isfile(os.path.join(self.source_dir, 'setup.py')):
48
 
            raise TestSkipped(
49
 
                'There is no setup.py file adjacent to the bzrlib directory')
 
46
        if not os.path.isfile('setup.py'):
 
47
            raise TestSkipped('There is no setup.py file in current directory')
50
48
        try:
51
49
            import distutils.sysconfig
52
50
            makefile_path = distutils.sysconfig.get_makefile_filename()
53
51
            if not os.path.exists(makefile_path):
54
 
                raise TestSkipped(
55
 
                    'You must have the python Makefile installed to run this'
56
 
                    ' test. Usually this can be found by installing'
57
 
                    ' "python-dev"')
 
52
                raise TestSkipped('You must have the python Makefile installed to run this test.'
 
53
                                  ' Usually this can be found by installing "python-dev"')
58
54
        except ImportError:
59
 
            raise TestSkipped(
60
 
                'You must have distutils installed to run this test.'
61
 
                ' Usually this can be found by installing "python-dev"')
 
55
            raise TestSkipped('You must have distutils installed to run this test.'
 
56
                              ' Usually this can be found by installing "python-dev"')
62
57
        self.log('test_build running in %s' % os.getcwd())
63
 
        root_dir = osutils.mkdtemp()
 
58
        install_dir = osutils.mkdtemp()
 
59
        # setup.py must be run from the root source directory, but the tests
 
60
        # are not necessarily invoked from there
 
61
        self.source_dir = os.path.dirname(os.path.dirname(bzrlib.__file__))
64
62
        try:
65
63
            self.run_setup(['clean'])
66
64
            # build is implied by install
67
65
            ## self.run_setup(['build'])
68
 
            self.run_setup(['install', '--root', root_dir])
 
66
            self.run_setup(['install', '--prefix', install_dir])
69
67
            self.run_setup(['clean'])
70
68
        finally:
71
 
            osutils.rmtree(root_dir)
 
69
            osutils.rmtree(install_dir)
72
70
 
73
71
    def run_setup(self, args):
74
72
        args = [sys.executable, './setup.py', ] + args
76
74
        self.log('args: %r', args)
77
75
        p = subprocess.Popen(args,
78
76
                             cwd=self.source_dir,
79
 
                             stdout=subprocess.PIPE,
80
 
                             stderr=subprocess.PIPE,
 
77
                             stdout=self._log_file,
 
78
                             stderr=self._log_file,
81
79
                             )
82
 
        stdout, stderr = p.communicate()
83
 
        self.log('stdout: %r', stdout)
84
 
        self.log('stderr: %r', stderr)
 
80
        s = p.communicate()
85
81
        self.assertEqual(0, p.returncode,
86
82
                         'invocation of %r failed' % args)