Merge pull request #92 from ctiller/php

Allow running PHP unit tests from run_tests.py
pull/94/head
Michael Lumish 10 years ago
commit ed3e0b1af9
  1. 1
      .gitignore
  2. 3
      src/php/.gitignore
  3. 16
      src/php/bin/run_tests.sh
  4. 17
      src/php/ext/grpc/config.m4
  5. 21
      tools/run_tests/build_php.sh
  6. 93
      tools/run_tests/run_tests.py

1
.gitignore vendored

@ -9,3 +9,4 @@ objs
# cache for run_tests.py # cache for run_tests.py
.run_tests_cache .run_tests_cache

@ -16,3 +16,6 @@ install-sh
libtool libtool
missing missing
mkinstalldirs mkinstalldirs
ext/grpc/ltmain.sh

@ -1,5 +1,17 @@
#!/bin/sh
# Loads the local shared library, and runs all of the test cases in tests/ # Loads the local shared library, and runs all of the test cases in tests/
# against it # against it
set -e
cd $(dirname $0) cd $(dirname $0)
php -d extension_dir=../ext/grpc/modules/ -d extension=grpc.so \ default_extension_dir=`php -i | grep extension_dir | sed 's/.*=> //g'`
/usr/local/bin/phpunit -v --debug --strict ../tests/unit_tests
# sym-link in system supplied extensions
for f in $default_extension_dir/*.so
do
ln -s $f ../ext/grpc/modules/$(basename $f) &> /dev/null || true
done
php \
-d extension_dir=../ext/grpc/modules/ \
-d extension=grpc.so \
`which phpunit` -v --debug --strict ../tests/unit_tests

@ -38,7 +38,9 @@ if test "$PHP_GRPC" != "no"; then
PHP_ADD_LIBRARY(rt,,GRPC_SHARED_LIBADD) PHP_ADD_LIBRARY(rt,,GRPC_SHARED_LIBADD)
PHP_ADD_LIBRARY(rt) PHP_ADD_LIBRARY(rt)
PHP_ADD_LIBPATH($GRPC_DIR/lib) GRPC_LIBDIR=$GRPC_DIR/${GRPC_LIB_SUBDIR-lib}
PHP_ADD_LIBPATH($GRPC_LIBDIR)
PHP_CHECK_LIBRARY(gpr,gpr_now, PHP_CHECK_LIBRARY(gpr,gpr_now,
[ [
@ -48,18 +50,9 @@ if test "$PHP_GRPC" != "no"; then
],[ ],[
AC_MSG_ERROR([wrong gpr lib version or lib not found]) AC_MSG_ERROR([wrong gpr lib version or lib not found])
],[ ],[
-L$GRPC_DIR/lib -L$GRPC_LIBDIR
]) ])
PHP_ADD_LIBRARY(event,,GRPC_SHARED_LIBADD)
PHP_ADD_LIBRARY(event)
PHP_ADD_LIBRARY(event_pthreads,,GRPC_SHARED_LIBADD)
PHP_ADD_LIBRARY(event_pthreads)
PHP_ADD_LIBRARY(event_core,,GRPC_SHARED_LIBADD)
PHP_ADD_LIBRARY(event_core)
PHP_CHECK_LIBRARY(grpc,grpc_channel_destroy, PHP_CHECK_LIBRARY(grpc,grpc_channel_destroy,
[ [
PHP_ADD_LIBRARY(grpc,,GRPC_SHARED_LIBADD) PHP_ADD_LIBRARY(grpc,,GRPC_SHARED_LIBADD)
@ -68,7 +61,7 @@ if test "$PHP_GRPC" != "no"; then
],[ ],[
AC_MSG_ERROR([wrong grpc lib version or lib not found]) AC_MSG_ERROR([wrong grpc lib version or lib not found])
],[ ],[
-L$GRPC_DIR/lib -L$GRPC_LIBDIR
]) ])
PHP_SUBST(GRPC_SHARED_LIBADD) PHP_SUBST(GRPC_SHARED_LIBADD)

@ -0,0 +1,21 @@
#!/bin/bash
set -ex
# change to grpc repo root
cd $(dirname $0)/../..
root=`pwd`
export GRPC_LIB_SUBDIR=libs/opt
# make the libraries
make -j static_c
# build php
cd src/php
cd ext/grpc
phpize
./configure --enable-grpc=$root
make

@ -20,6 +20,7 @@ class SimpleConfig(object):
def __init__(self, config): def __init__(self, config):
self.build_config = config self.build_config = config
self.maxjobs = 32 * multiprocessing.cpu_count() self.maxjobs = 32 * multiprocessing.cpu_count()
self.allow_hashing = (config != 'gcov')
def run_command(self, binary): def run_command(self, binary):
return [binary] return [binary]
@ -32,11 +33,43 @@ class ValgrindConfig(object):
self.build_config = config self.build_config = config
self.tool = tool self.tool = tool
self.maxjobs = 4 * multiprocessing.cpu_count() self.maxjobs = 4 * multiprocessing.cpu_count()
self.allow_hashing = False
def run_command(self, binary): def run_command(self, binary):
return ['valgrind', binary, '--tool=%s' % self.tool] return ['valgrind', binary, '--tool=%s' % self.tool]
class CLanguage(object):
def __init__(self, make_target):
self.allow_hashing = True
self.make_target = make_target
def test_binaries(self, config):
return glob.glob('bins/%s/*_test' % config)
def make_targets(self):
return ['buildtests_%s' % self.make_target]
def build_steps(self):
return []
class PhpLanguage(object):
def __init__(self):
self.allow_hashing = False
def test_binaries(self, config):
return ['src/php/bin/run_tests.sh']
def make_targets(self):
return []
def build_steps(self):
return [['tools/run_tests/build_php.sh']]
# different configurations we can run under # different configurations we can run under
_CONFIGS = { _CONFIGS = {
'dbg': SimpleConfig('dbg'), 'dbg': SimpleConfig('dbg'),
@ -51,9 +84,10 @@ _CONFIGS = {
_DEFAULT = ['dbg', 'opt'] _DEFAULT = ['dbg', 'opt']
_LANGUAGE_TEST_TARGETS = { _LANGUAGES = {
'c++': 'buildtests_cxx', 'c++': CLanguage('cxx'),
'c': 'buildtests_c', 'c': CLanguage('c'),
'php': PhpLanguage()
} }
# parse command line # parse command line
@ -62,7 +96,6 @@ argp.add_argument('-c', '--config',
choices=['all'] + sorted(_CONFIGS.keys()), choices=['all'] + sorted(_CONFIGS.keys()),
nargs='+', nargs='+',
default=_DEFAULT) default=_DEFAULT)
argp.add_argument('-t', '--test-filter', nargs='*', default=['*'])
argp.add_argument('-n', '--runs_per_test', default=1, type=int) argp.add_argument('-n', '--runs_per_test', default=1, type=int)
argp.add_argument('-f', '--forever', argp.add_argument('-f', '--forever',
default=False, default=False,
@ -73,9 +106,9 @@ argp.add_argument('--newline_on_success',
action='store_const', action='store_const',
const=True) const=True)
argp.add_argument('-l', '--language', argp.add_argument('-l', '--language',
choices=sorted(_LANGUAGE_TEST_TARGETS.keys()), choices=sorted(_LANGUAGES.keys()),
nargs='+', nargs='+',
default=sorted(_LANGUAGE_TEST_TARGETS.keys())) default=sorted(_LANGUAGES.keys()))
args = argp.parse_args() args = argp.parse_args()
# grab config # grab config
@ -84,8 +117,18 @@ run_configs = set(_CONFIGS[cfg]
_CONFIGS.iterkeys() if x == 'all' else [x] _CONFIGS.iterkeys() if x == 'all' else [x]
for x in args.config)) for x in args.config))
build_configs = set(cfg.build_config for cfg in run_configs) build_configs = set(cfg.build_config for cfg in run_configs)
make_targets = set(_LANGUAGE_TEST_TARGETS[x] for x in args.language)
filters = args.test_filter make_targets = []
languages = set(_LANGUAGES[l] for l in args.language)
build_steps = [['make',
'-j', '%d' % (multiprocessing.cpu_count() + 1),
'CONFIG=%s' % cfg] + list(set(
itertools.chain.from_iterable(l.make_targets()
for l in languages)))
for cfg in build_configs] + list(
itertools.chain.from_iterable(l.build_steps()
for l in languages))
runs_per_test = args.runs_per_test runs_per_test = args.runs_per_test
forever = args.forever forever = args.forever
@ -127,26 +170,19 @@ class TestCache(object):
def _build_and_run(check_cancelled, newline_on_success, cache): def _build_and_run(check_cancelled, newline_on_success, cache):
"""Do one pass of building & running tests.""" """Do one pass of building & running tests."""
# build latest, sharing cpu between the various makes # build latest, sharing cpu between the various makes
if not jobset.run( if not jobset.run(build_steps):
(['make',
'-j', '%d' % (multiprocessing.cpu_count() + 1),
'CONFIG=%s' % cfg] + list(make_targets)
for cfg in build_configs),
check_cancelled, maxjobs=1):
return 1 return 1
# run all the tests # run all the tests
if not jobset.run( one_run = dict(
itertools.ifilter( (' '.join(config.run_command(x)), config.run_command(x))
lambda x: x is not None, (
config.run_command(x)
for config in run_configs for config in run_configs
for filt in filters for language in args.language
for x in itertools.chain.from_iterable(itertools.repeat( for x in _LANGUAGES[language].test_binaries(config.build_config)
glob.glob('bins/%s/%s_test' % ( ).values()
config.build_config, filt)), all_runs = itertools.chain.from_iterable(
runs_per_test)))), itertools.repeat(one_run, runs_per_test))
check_cancelled, if not jobset.run(all_runs, check_cancelled,
newline_on_success=newline_on_success, newline_on_success=newline_on_success,
maxjobs=min(c.maxjobs for c in run_configs), maxjobs=min(c.maxjobs for c in run_configs),
cache=cache): cache=cache):
@ -155,9 +191,9 @@ def _build_and_run(check_cancelled, newline_on_success, cache):
return 0 return 0
test_cache = (None if runs_per_test != 1 test_cache = (None
or 'gcov' in build_configs if not all(x.allow_hashing
or 'valgrind' in build_configs for x in itertools.chain(languages, run_configs))
else TestCache()) else TestCache())
if test_cache: if test_cache:
test_cache.maybe_load() test_cache.maybe_load()
@ -177,6 +213,7 @@ if forever:
'All tests are now passing properly', 'All tests are now passing properly',
do_newline=True) do_newline=True)
jobset.message('IDLE', 'No change detected') jobset.message('IDLE', 'No change detected')
if test_cache: test_cache.save()
while not have_files_changed(): while not have_files_changed():
time.sleep(1) time.sleep(1)
else: else:
@ -187,5 +224,5 @@ else:
jobset.message('SUCCESS', 'All tests passed', do_newline=True) jobset.message('SUCCESS', 'All tests passed', do_newline=True)
else: else:
jobset.message('FAILED', 'Some tests failed', do_newline=True) jobset.message('FAILED', 'Some tests failed', do_newline=True)
test_cache.save() if test_cache: test_cache.save()
sys.exit(result) sys.exit(result)

Loading…
Cancel
Save