1
# Copyright (C) 2005, 2006, 2008-2011 Canonical Ltd
1
# Copyright (C) 2005, 2006 Canonical Ltd
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
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.
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')):
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')
51
49
import distutils.sysconfig
52
50
makefile_path = distutils.sysconfig.get_makefile_filename()
53
51
if not os.path.exists(makefile_path):
55
'You must have the python Makefile installed to run this'
56
' test. Usually this can be found by installing'
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:
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__))
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'])
71
osutils.rmtree(root_dir)
69
osutils.rmtree(install_dir)
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,
82
stdout, stderr = p.communicate()
83
self.log('stdout: %r', stdout)
84
self.log('stderr: %r', stderr)
85
81
self.assertEqual(0, p.returncode,
86
82
'invocation of %r failed' % args)