blob: 144cf660e876c1d6ae4a5631633c01273ddd0420 [file] [log] [blame]
Nick Coghlan260bd3e2009-11-16 06:49:25 +00001# Common utility functions used by various script execution tests
2# e.g. test_cmd_line, test_cmd_line_script and test_runpy
3
4import sys
5import os
6import os.path
7import tempfile
8import subprocess
9import py_compile
10import contextlib
11import shutil
12import zipfile
13
14# Executing the interpreter in a subprocess
15def python_exit_code(*args):
16 cmd_line = [sys.executable, '-E']
17 cmd_line.extend(args)
18 with open(os.devnull, 'w') as devnull:
19 return subprocess.call(cmd_line, stdout=devnull,
20 stderr=subprocess.STDOUT)
21
22def spawn_python(*args):
23 cmd_line = [sys.executable, '-E']
24 cmd_line.extend(args)
25 return subprocess.Popen(cmd_line, stdin=subprocess.PIPE,
26 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
27
28def kill_python(p):
29 p.stdin.close()
30 data = p.stdout.read()
31 p.stdout.close()
32 # try to cleanup the child so we don't appear to leak when running
Antoine Pitrou4e7dc5f2009-12-08 19:27:24 +000033 # with regrtest -R.
34 p.wait()
Nick Coghlan260bd3e2009-11-16 06:49:25 +000035 subprocess._cleanup()
36 return data
37
38def run_python(*args):
39 if __debug__:
40 p = spawn_python(*args)
41 else:
42 p = spawn_python('-O', *args)
43 stdout_data = kill_python(p)
44 return p.wait(), stdout_data
45
46# Script creation utilities
47@contextlib.contextmanager
48def temp_dir():
49 dirname = tempfile.mkdtemp()
50 dirname = os.path.realpath(dirname)
51 try:
52 yield dirname
53 finally:
54 shutil.rmtree(dirname)
55
56def make_script(script_dir, script_basename, source):
57 script_filename = script_basename+os.extsep+'py'
58 script_name = os.path.join(script_dir, script_filename)
Florent Xicluna8de42e22010-02-27 16:12:22 +000059 # The script should be encoded to UTF-8, the default string encoding
60 script_file = open(script_name, 'w', encoding='utf-8')
Nick Coghlan260bd3e2009-11-16 06:49:25 +000061 script_file.write(source)
62 script_file.close()
63 return script_name
64
65def compile_script(script_name):
66 py_compile.compile(script_name, doraise=True)
67 if __debug__:
68 compiled_name = script_name + 'c'
69 else:
70 compiled_name = script_name + 'o'
71 return compiled_name
72
73def make_zip_script(zip_dir, zip_basename, script_name, name_in_zip=None):
74 zip_filename = zip_basename+os.extsep+'zip'
75 zip_name = os.path.join(zip_dir, zip_filename)
76 zip_file = zipfile.ZipFile(zip_name, 'w')
77 if name_in_zip is None:
78 name_in_zip = os.path.basename(script_name)
79 zip_file.write(script_name, name_in_zip)
80 zip_file.close()
81 #if test.test_support.verbose:
82 # zip_file = zipfile.ZipFile(zip_name, 'r')
83 # print 'Contents of %r:' % zip_name
84 # zip_file.printdir()
85 # zip_file.close()
86 return zip_name, os.path.join(zip_name, name_in_zip)
87
88def make_pkg(pkg_dir):
89 os.mkdir(pkg_dir)
90 make_script(pkg_dir, '__init__', '')
91
92def make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,
93 source, depth=1, compiled=False):
94 unlink = []
95 init_name = make_script(zip_dir, '__init__', '')
96 unlink.append(init_name)
97 init_basename = os.path.basename(init_name)
98 script_name = make_script(zip_dir, script_basename, source)
99 unlink.append(script_name)
100 if compiled:
101 init_name = compile_script(init_name)
102 script_name = compile_script(script_name)
103 unlink.extend((init_name, script_name))
104 pkg_names = [os.sep.join([pkg_name]*i) for i in range(1, depth+1)]
105 script_name_in_zip = os.path.join(pkg_names[-1], os.path.basename(script_name))
106 zip_filename = zip_basename+os.extsep+'zip'
107 zip_name = os.path.join(zip_dir, zip_filename)
108 zip_file = zipfile.ZipFile(zip_name, 'w')
109 for name in pkg_names:
110 init_name_in_zip = os.path.join(name, init_basename)
111 zip_file.write(init_name, init_name_in_zip)
112 zip_file.write(script_name, script_name_in_zip)
113 zip_file.close()
114 for name in unlink:
115 os.unlink(name)
116 #if test.test_support.verbose:
117 # zip_file = zipfile.ZipFile(zip_name, 'r')
118 # print 'Contents of %r:' % zip_name
119 # zip_file.printdir()
120 # zip_file.close()
121 return zip_name, os.path.join(zip_name, script_name_in_zip)