1
# Copyright (C) 2005, 2006 Canonical Ltd
1
# Copyright (C) 2005, 2006, 2008-2011 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
47
45
# are not necessarily invoked from there
48
46
self.source_dir = os.path.dirname(os.path.dirname(bzrlib.__file__))
49
47
if not os.path.isfile(os.path.join(self.source_dir, 'setup.py')):
50
raise TestSkipped('There is no setup.py file adjacent to the bzrlib directory')
49
'There is no setup.py file adjacent to the bzrlib directory')
52
51
import distutils.sysconfig
53
52
makefile_path = distutils.sysconfig.get_makefile_filename()
54
53
if not os.path.exists(makefile_path):
55
raise TestSkipped('You must have the python Makefile installed to run this test.'
56
' Usually this can be found by installing "python-dev"')
55
'You must have the python Makefile installed to run this'
56
' test. Usually this can be found by installing'
57
58
except ImportError:
58
raise TestSkipped('You must have distutils installed to run this test.'
59
' Usually this can be found by installing "python-dev"')
60
'You must have distutils installed to run this test.'
61
' Usually this can be found by installing "python-dev"')
60
62
self.log('test_build running in %s' % os.getcwd())
61
install_dir = osutils.mkdtemp()
63
root_dir = osutils.mkdtemp()
63
65
self.run_setup(['clean'])
64
66
# build is implied by install
65
67
## self.run_setup(['build'])
66
self.run_setup(['install', '--prefix', install_dir])
68
self.run_setup(['install', '--root', root_dir])
67
69
self.run_setup(['clean'])
69
osutils.rmtree(install_dir)
71
osutils.rmtree(root_dir)
71
73
def run_setup(self, args):
72
74
args = [sys.executable, './setup.py', ] + args
74
76
self.log('args: %r', args)
75
77
p = subprocess.Popen(args,
76
78
cwd=self.source_dir,
77
stdout=self._log_file,
78
stderr=self._log_file,
79
stdout=subprocess.PIPE,
80
stderr=subprocess.PIPE,
82
stdout, stderr = p.communicate()
83
self.log('stdout: %r', stdout)
84
self.log('stderr: %r', stderr)
81
85
self.assertEqual(0, p.returncode,
82
86
'invocation of %r failed' % args)