2013-03-25 01:38:44 +08:00
|
|
|
#!/usr/bin/env python3
|
2012-12-26 23:05:04 +08:00
|
|
|
|
2013-08-24 05:30:13 +08:00
|
|
|
# Copyright 2012-2013 Jussi Pakkanen
|
2012-12-26 23:05:04 +08:00
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from glob import glob
|
2013-09-16 03:20:41 +08:00
|
|
|
import os, subprocess, shutil, sys, platform
|
2013-03-04 02:05:04 +08:00
|
|
|
import environment
|
2014-06-23 01:36:19 +08:00
|
|
|
from environment import is_windows
|
2012-12-26 23:05:04 +08:00
|
|
|
|
2014-03-08 06:31:45 +08:00
|
|
|
passing_tests = 0
|
|
|
|
failing_tests = 0
|
|
|
|
|
2012-12-30 04:20:44 +08:00
|
|
|
test_build_dir = 'work area'
|
2013-01-12 08:25:06 +08:00
|
|
|
install_dir = os.path.join(os.path.split(os.path.abspath(__file__))[0], 'install dir')
|
2013-02-23 19:18:56 +08:00
|
|
|
meson_command = './meson.py'
|
2014-03-20 02:53:35 +08:00
|
|
|
|
2014-04-20 18:58:20 +08:00
|
|
|
#unity_flags = ['--unity']
|
|
|
|
unity_flags = []
|
2014-04-17 02:38:49 +08:00
|
|
|
msbuild_exe = shutil.which('msbuild')
|
2014-03-20 02:53:35 +08:00
|
|
|
|
|
|
|
if msbuild_exe is not None:
|
|
|
|
backend_flags = ['--backend=vs2010']
|
|
|
|
compile_commands = ['msbuild']
|
|
|
|
test_commands = ['msbuild', 'RUN_TESTS.vcxproj']
|
|
|
|
install_commands = []
|
2014-03-31 07:17:57 +08:00
|
|
|
elif environment.is_osx():
|
|
|
|
backend_flags = ['--backend=xcode']
|
|
|
|
compile_commands = ['xcodebuild']
|
|
|
|
test_commands = ['xcodebuild', '-target', 'RUN_TESTS']
|
|
|
|
install_commands = []
|
2014-03-20 02:53:35 +08:00
|
|
|
else:
|
2013-02-24 06:20:39 +08:00
|
|
|
backend_flags = []
|
2013-07-04 23:02:44 +08:00
|
|
|
ninja_command = environment.detect_ninja()
|
|
|
|
if ninja_command is None:
|
|
|
|
raise RuntimeError('Could not find Ninja executable.')
|
|
|
|
compile_commands = [ninja_command]
|
|
|
|
test_commands = [ninja_command, 'test']
|
|
|
|
install_commands = [ninja_command, 'install']
|
2012-12-26 23:05:04 +08:00
|
|
|
|
2013-09-16 03:20:41 +08:00
|
|
|
def platform_fix_filename(fname):
|
|
|
|
if platform.system() == 'Darwin':
|
|
|
|
if fname.endswith('.so'):
|
|
|
|
return fname[:-2] + 'dylib'
|
|
|
|
return fname.replace('.so.', '.dylib.')
|
2013-09-29 23:48:33 +08:00
|
|
|
elif platform.system() == 'Windows':
|
|
|
|
if fname.endswith('.so'):
|
|
|
|
(p, f) = os.path.split(fname)
|
|
|
|
f = f[3:-2] + 'dll'
|
|
|
|
return os.path.join(p, f)
|
|
|
|
if fname.endswith('.a'):
|
|
|
|
return fname[:-1] + 'lib'
|
2013-09-16 03:20:41 +08:00
|
|
|
return fname
|
|
|
|
|
2013-09-14 01:57:05 +08:00
|
|
|
def validate_install(srcdir, installdir):
|
2013-09-29 23:48:33 +08:00
|
|
|
if platform.system() == 'Windows':
|
2013-09-29 23:50:02 +08:00
|
|
|
# Don't really know how Windows installs should work
|
|
|
|
# so skip.
|
2014-03-16 17:57:07 +08:00
|
|
|
return ''
|
2013-09-14 01:57:05 +08:00
|
|
|
info_file = os.path.join(srcdir, 'installed_files.txt')
|
|
|
|
expected = {}
|
|
|
|
found = {}
|
|
|
|
if os.path.exists(info_file):
|
|
|
|
for line in open(info_file):
|
2013-09-16 03:20:41 +08:00
|
|
|
expected[platform_fix_filename(line.strip())] = True
|
2014-03-16 17:57:07 +08:00
|
|
|
for root, _, files in os.walk(installdir):
|
2013-09-14 01:57:05 +08:00
|
|
|
for fname in files:
|
|
|
|
found_name = os.path.join(root, fname)[len(installdir)+1:]
|
|
|
|
found[found_name] = True
|
|
|
|
expected = set(expected)
|
|
|
|
found = set(found)
|
|
|
|
missing = expected - found
|
|
|
|
for fname in missing:
|
2014-03-08 06:31:45 +08:00
|
|
|
return 'Expected file %s missing.' % fname
|
2013-09-14 01:57:05 +08:00
|
|
|
extra = found - expected
|
|
|
|
for fname in extra:
|
2014-03-08 06:31:45 +08:00
|
|
|
return 'Found extra file %s.' % fname
|
|
|
|
return ''
|
|
|
|
|
|
|
|
def run_and_log(logfile, testdir, should_succeed=True):
|
|
|
|
global passing_tests, failing_tests
|
|
|
|
(msg, stdo, stde) = run_test(testdir, should_succeed)
|
|
|
|
if msg != '':
|
|
|
|
print('Fail:', msg)
|
|
|
|
failing_tests += 1
|
|
|
|
else:
|
|
|
|
print('Success')
|
|
|
|
passing_tests += 1
|
|
|
|
logfile.write('%s\nstdout\n\n---\n' % testdir)
|
|
|
|
logfile.write(stdo)
|
|
|
|
logfile.write('\n\n---\n\nstderr\n\n---\n')
|
|
|
|
logfile.write(stde)
|
|
|
|
logfile.write('\n\n---\n\n')
|
2013-09-14 01:57:05 +08:00
|
|
|
|
2014-03-08 06:31:45 +08:00
|
|
|
def run_test(testdir, should_succeed):
|
2014-03-20 02:53:35 +08:00
|
|
|
global compile_commands
|
2012-12-26 23:05:04 +08:00
|
|
|
shutil.rmtree(test_build_dir)
|
2013-01-12 08:25:06 +08:00
|
|
|
shutil.rmtree(install_dir)
|
2012-12-26 23:05:04 +08:00
|
|
|
os.mkdir(test_build_dir)
|
2013-01-12 08:25:06 +08:00
|
|
|
os.mkdir(install_dir)
|
2012-12-26 23:05:04 +08:00
|
|
|
print('Running test: ' + testdir)
|
2014-04-17 03:38:29 +08:00
|
|
|
gen_command = [sys.executable, meson_command, '--prefix', install_dir, testdir, test_build_dir]\
|
|
|
|
+ unity_flags + backend_flags
|
2014-03-08 06:31:45 +08:00
|
|
|
p = subprocess.Popen(gen_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
(stdo, stde) = p.communicate()
|
|
|
|
stdo = stdo.decode('utf-8')
|
|
|
|
stde = stde.decode('utf-8')
|
2013-08-11 04:02:51 +08:00
|
|
|
if not should_succeed:
|
|
|
|
if p.returncode != 0:
|
2014-03-08 06:31:45 +08:00
|
|
|
return ('', stdo, stde)
|
|
|
|
return ('Test that should have failed succeeded', stdo, stde)
|
2012-12-26 23:05:04 +08:00
|
|
|
if p.returncode != 0:
|
2014-03-08 06:31:45 +08:00
|
|
|
return ('Generating the build system failed.', stdo, stde)
|
2014-03-20 02:53:35 +08:00
|
|
|
if 'msbuild' in compile_commands[0]:
|
|
|
|
sln_name = glob(os.path.join(test_build_dir, '*.sln'))[0]
|
|
|
|
comp = compile_commands + [os.path.split(sln_name)[-1]]
|
|
|
|
else:
|
|
|
|
comp = compile_commands
|
|
|
|
pc = subprocess.Popen(comp, cwd=test_build_dir,
|
2014-03-08 06:31:45 +08:00
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
(o, e) = pc.communicate()
|
|
|
|
stdo += o.decode('utf-8')
|
|
|
|
stde += e.decode('utf-8')
|
2013-01-02 06:04:20 +08:00
|
|
|
if pc.returncode != 0:
|
2014-03-08 06:31:45 +08:00
|
|
|
return ('Compiling source code failed.', stdo, stde)
|
|
|
|
pt = subprocess.Popen(test_commands, cwd=test_build_dir,
|
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
(o, e) = pt.communicate()
|
|
|
|
stdo += o.decode('utf-8')
|
|
|
|
stde += e.decode('utf-8')
|
2013-01-07 01:17:38 +08:00
|
|
|
if pt.returncode != 0:
|
2014-03-08 06:31:45 +08:00
|
|
|
return ('Running unit tests failed.', stdo, stde)
|
2014-03-20 02:53:35 +08:00
|
|
|
if len(install_commands) == 0:
|
|
|
|
print("Skipping install test")
|
|
|
|
return ('', '', '')
|
|
|
|
else:
|
|
|
|
pi = subprocess.Popen(install_commands, cwd=test_build_dir,
|
2014-03-08 06:31:45 +08:00
|
|
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
2014-03-20 02:53:35 +08:00
|
|
|
(o, e) = pi.communicate()
|
|
|
|
stdo += o.decode('utf-8')
|
|
|
|
stde += e.decode('utf-8')
|
|
|
|
if pi.returncode != 0:
|
|
|
|
return ('Running install failed.', stdo, stde)
|
|
|
|
return (validate_install(testdir, install_dir), stdo, stde)
|
2012-12-26 23:05:04 +08:00
|
|
|
|
2013-03-04 02:05:04 +08:00
|
|
|
def gather_tests(testdir):
|
2013-03-09 00:53:41 +08:00
|
|
|
tests = [t.replace('\\', '/').split('/', 2)[2] for t in glob(os.path.join(testdir, '*'))]
|
2013-02-09 07:07:12 +08:00
|
|
|
testlist = [(int(t.split()[0]), t) for t in tests]
|
|
|
|
testlist.sort()
|
2013-03-04 02:05:04 +08:00
|
|
|
tests = [os.path.join(testdir, t[1]) for t in testlist]
|
|
|
|
return tests
|
|
|
|
|
|
|
|
def run_tests():
|
2014-03-08 06:31:45 +08:00
|
|
|
logfile = open('meson-test-run.txt', 'w')
|
2013-03-04 02:05:04 +08:00
|
|
|
commontests = gather_tests('test cases/common')
|
2013-08-11 04:02:51 +08:00
|
|
|
failtests = gather_tests('test cases/failing')
|
2013-11-05 06:29:39 +08:00
|
|
|
objtests = gather_tests('test cases/prebuilt object')
|
|
|
|
if environment.is_linux():
|
|
|
|
cpuid = platform.machine()
|
2014-03-09 05:19:32 +08:00
|
|
|
if cpuid != 'x86_64' and cpuid != 'i386' and cpuid != 'i686':
|
2013-11-05 06:29:39 +08:00
|
|
|
# Don't have a prebuilt object file for those so skip.
|
|
|
|
objtests = []
|
2013-03-04 02:05:04 +08:00
|
|
|
if environment.is_osx():
|
|
|
|
platformtests = gather_tests('test cases/osx')
|
|
|
|
elif environment.is_windows():
|
|
|
|
platformtests = gather_tests('test cases/windows')
|
|
|
|
else:
|
|
|
|
platformtests = gather_tests('test cases/linuxlike')
|
2013-03-24 21:04:51 +08:00
|
|
|
if not environment.is_osx() and not environment.is_windows():
|
|
|
|
frameworktests = gather_tests('test cases/frameworks')
|
|
|
|
else:
|
|
|
|
frameworktests = []
|
2014-04-03 02:23:31 +08:00
|
|
|
if not environment.is_osx() and shutil.which('javac'):
|
2014-03-12 04:41:27 +08:00
|
|
|
javatests = gather_tests('test cases/java')
|
|
|
|
else:
|
|
|
|
javatests = []
|
2014-05-10 07:33:44 +08:00
|
|
|
if shutil.which('valac'):
|
|
|
|
valatests = gather_tests('test cases/vala')
|
|
|
|
else:
|
|
|
|
valatests = []
|
2014-06-19 04:50:33 +08:00
|
|
|
if shutil.which('rustc'):
|
|
|
|
rusttests = gather_tests('test cases/rust')
|
|
|
|
else:
|
|
|
|
rusttests = []
|
2013-04-07 03:06:58 +08:00
|
|
|
if not environment.is_windows():
|
|
|
|
objctests = gather_tests('test cases/objc')
|
|
|
|
else:
|
|
|
|
objctests = []
|
2012-12-26 23:05:04 +08:00
|
|
|
try:
|
|
|
|
os.mkdir(test_build_dir)
|
|
|
|
except OSError:
|
|
|
|
pass
|
2013-03-03 01:13:22 +08:00
|
|
|
try:
|
|
|
|
os.mkdir(install_dir)
|
|
|
|
except OSError:
|
|
|
|
pass
|
2013-03-04 02:30:46 +08:00
|
|
|
print('\nRunning common tests.\n')
|
2014-03-08 06:31:45 +08:00
|
|
|
[run_and_log(logfile, t) for t in commontests]
|
2013-08-11 04:02:51 +08:00
|
|
|
print('\nRunning failing tests.\n')
|
2014-03-08 06:31:45 +08:00
|
|
|
[run_and_log(logfile, t, False) for t in failtests]
|
2013-11-05 06:29:39 +08:00
|
|
|
if len(objtests) > 0:
|
|
|
|
print('\nRunning object inclusion tests.\n')
|
2014-03-08 06:31:45 +08:00
|
|
|
[run_and_log(logfile, t) for t in objtests]
|
2013-11-05 06:29:39 +08:00
|
|
|
else:
|
|
|
|
print('\nNo object inclusion tests.\n')
|
2013-08-11 04:02:51 +08:00
|
|
|
if len(platformtests) > 0:
|
|
|
|
print('\nRunning platform dependent tests.\n')
|
2014-03-08 06:31:45 +08:00
|
|
|
[run_and_log(logfile, t) for t in platformtests]
|
2013-08-11 04:02:51 +08:00
|
|
|
else:
|
|
|
|
print('\nNo platform specific tests.\n')
|
|
|
|
if len(frameworktests) > 0:
|
|
|
|
print('\nRunning framework tests.\n')
|
2014-03-08 06:31:45 +08:00
|
|
|
[run_and_log(logfile, t) for t in frameworktests]
|
2013-08-11 04:02:51 +08:00
|
|
|
else:
|
|
|
|
print('\nNo framework tests on this platform.\n')
|
2014-03-12 04:41:27 +08:00
|
|
|
if len(javatests) > 0:
|
|
|
|
print('\nRunning java tests.\n')
|
|
|
|
[run_and_log(logfile, t) for t in javatests]
|
2014-05-11 00:49:00 +08:00
|
|
|
else:
|
|
|
|
print('\nNot running Java tests.\n')
|
2014-05-10 07:33:44 +08:00
|
|
|
if len(valatests) > 0:
|
|
|
|
print('\nRunning Vala tests.\n')
|
|
|
|
[run_and_log(logfile, t) for t in valatests]
|
2014-05-11 00:49:00 +08:00
|
|
|
else:
|
|
|
|
print('\nNot running Vala tests.\n')
|
2014-06-19 04:50:33 +08:00
|
|
|
if len(rusttests) > 0:
|
|
|
|
print('\nRunning Rust tests.\n')
|
|
|
|
[run_and_log(logfile, t) for t in rusttests]
|
|
|
|
else:
|
|
|
|
print('\nNot running Rust tests.\n')
|
2013-08-11 04:02:51 +08:00
|
|
|
if len(objctests) > 0:
|
|
|
|
print('\nRunning extra language tests.\n')
|
2014-03-08 06:31:45 +08:00
|
|
|
[run_and_log(logfile, t) for t in objctests]
|
2013-08-11 04:02:51 +08:00
|
|
|
else:
|
|
|
|
print('\nNo extra language tests on this platform.\n')
|
2012-12-26 23:05:04 +08:00
|
|
|
|
2013-03-25 01:35:17 +08:00
|
|
|
def check_file(fname):
|
2013-04-20 00:01:48 +08:00
|
|
|
if fname.endswith('parsetab.py'): # Autogenerated
|
|
|
|
return True
|
2013-04-20 00:03:29 +08:00
|
|
|
linenum = 1
|
2013-03-25 06:59:46 +08:00
|
|
|
for line in open(fname, 'rb').readlines():
|
|
|
|
if b'\t' in line:
|
2013-03-25 01:35:17 +08:00
|
|
|
print("File %s contains a literal tab on line %d. Only spaces are permitted." % (fname, linenum))
|
|
|
|
sys.exit(1)
|
2013-04-20 00:01:48 +08:00
|
|
|
if b'\r' in line:
|
2013-03-25 06:59:46 +08:00
|
|
|
print("File %s contains DOS line ending on line %d. Only unix-style line endings are permitted." % (fname, linenum))
|
|
|
|
sys.exit(1)
|
|
|
|
linenum += 1
|
2013-03-25 01:35:17 +08:00
|
|
|
|
2013-03-25 06:59:46 +08:00
|
|
|
def check_format():
|
2014-06-23 01:36:19 +08:00
|
|
|
for (root, _, files) in os.walk('.'):
|
2013-03-25 01:35:17 +08:00
|
|
|
for file in files:
|
|
|
|
if file.endswith('.py') or file.endswith('.build'):
|
|
|
|
fullname = os.path.join(root, file)
|
|
|
|
check_file(fullname)
|
|
|
|
|
2014-06-23 01:36:19 +08:00
|
|
|
def generate_prebuilt_object():
|
|
|
|
source = 'test cases/prebuilt object/1 basic/source.c'
|
|
|
|
objectbase = 'test cases/prebuilt object/1 basic/prebuilt.'
|
|
|
|
if shutil.which('cl'):
|
|
|
|
objectfile = objectbase + 'obj'
|
2014-06-25 00:20:44 +08:00
|
|
|
cmd = ['cl', '/nologo', '/Fo'+objectfile, '/c', source]
|
2014-06-23 01:36:19 +08:00
|
|
|
else:
|
2014-06-25 00:03:15 +08:00
|
|
|
if is_windows():
|
|
|
|
objectfile = objectbase + 'obj'
|
|
|
|
else:
|
|
|
|
objectfile = objectbase + 'o'
|
2014-06-25 00:20:44 +08:00
|
|
|
cmd = ['cc', '-c', source, '-o', objectfile]
|
|
|
|
subprocess.check_call(cmd)
|
|
|
|
return objectfile
|
2014-06-23 01:36:19 +08:00
|
|
|
|
2012-12-26 23:05:04 +08:00
|
|
|
if __name__ == '__main__':
|
2013-03-09 00:53:41 +08:00
|
|
|
script_dir = os.path.split(__file__)[0]
|
|
|
|
if script_dir != '':
|
|
|
|
os.chdir(script_dir)
|
2013-03-25 06:59:46 +08:00
|
|
|
check_format()
|
2014-06-23 01:36:19 +08:00
|
|
|
pbfile = generate_prebuilt_object()
|
2012-12-26 23:05:04 +08:00
|
|
|
run_tests()
|
2014-06-23 01:36:19 +08:00
|
|
|
os.unlink(pbfile)
|
2014-03-08 06:31:45 +08:00
|
|
|
print('\nTotal passed tests:', passing_tests)
|
|
|
|
print('Total failed tests:', failing_tests)
|
|
|
|
sys.exit(failing_tests)
|
|
|
|
|