Add tests for py(2|3)-cmd

Test: m par_test{,3} py{2,3}-cmd; ./runtest.sh
Change-Id: I4aadd9fc85be4381bd9a0843064ceaa87150b5ee
This commit is contained in:
Dan Willemsen 2020-02-19 19:40:38 -08:00
parent eb9b9f23ec
commit 7fa7646ad7
4 changed files with 127 additions and 2 deletions

View file

@ -0,0 +1,78 @@
# Copyright 2020 Google Inc. All rights reserved.
#
# 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.
import os
import site
import sys
# This file checks the visible python state against expected values when run
# using a prebuilt python.
failed = False
def assert_equal(what, a, b):
global failed
if a != b:
print("Expected %s('%s') == '%s'" % (what, a, b))
failed = True
assert_equal("__name__", __name__, "__main__")
assert_equal("os.path.basename(__file__)", os.path.basename(__file__), "py-cmd_test.py")
if os.getenv('ARGTEST', False):
assert_equal("len(sys.argv)", len(sys.argv), 3)
assert_equal("sys.argv[1]", sys.argv[1], "arg1")
assert_equal("sys.argv[2]", sys.argv[2], "arg2")
elif os.getenv('ARGTEST2', False):
assert_equal("len(sys.argv)", len(sys.argv), 3)
assert_equal("sys.argv[1]", sys.argv[1], "--arg1")
assert_equal("sys.argv[2]", sys.argv[2], "arg2")
else:
assert_equal("len(sys.argv)", len(sys.argv), 1)
if os.getenv('ARGTEST_ONLY', False):
if failed:
sys.exit(1)
sys.exit(0)
assert_equal("__package__", __package__, None)
assert_equal("sys.argv[0]", sys.argv[0], 'py-cmd_test.py')
if sys.version_info[0] == 2:
assert_equal("basename(sys.executable)", os.path.basename(sys.executable), 'py2-cmd')
else:
assert_equal("basename(sys.executable)", os.path.basename(sys.executable), 'py3-cmd')
assert_equal("sys.exec_prefix", sys.exec_prefix, sys.executable)
assert_equal("sys.prefix", sys.prefix, sys.executable)
assert_equal("site.ENABLE_USER_SITE", site.ENABLE_USER_SITE, None)
if sys.version_info[0] == 2:
assert_equal("len(sys.path)", len(sys.path), 4)
assert_equal("sys.path[0]", sys.path[0], os.path.dirname(__file__))
assert_equal("sys.path[1]", sys.path[1], "/extra")
assert_equal("sys.path[2]", sys.path[2], os.path.join(sys.executable, "internal"))
assert_equal("sys.path[3]", sys.path[3], os.path.join(sys.executable, "internal", "stdlib"))
else:
assert_equal("len(sys.path)", len(sys.path), 8)
assert_equal("sys.path[0]", sys.path[0], os.path.abspath(os.path.dirname(__file__)))
assert_equal("sys.path[1]", sys.path[1], "/extra")
assert_equal("sys.path[2]", sys.path[2], os.path.join(sys.executable, 'lib', 'python' + str(sys.version_info[0]) + str(sys.version_info[1]) + '.zip'))
assert_equal("sys.path[3]", sys.path[3], os.path.join(sys.executable, 'lib', 'python' + str(sys.version_info[0]) + '.' + str(sys.version_info[1]), '..'))
assert_equal("sys.path[4]", sys.path[4], os.path.join(sys.executable, 'lib', 'python' + str(sys.version_info[0]) + '.' + str(sys.version_info[1])))
assert_equal("sys.path[5]", sys.path[5], os.path.join(sys.executable, 'lib', 'python' + str(sys.version_info[0]) + '.' + str(sys.version_info[1]), 'lib-dynload'))
assert_equal("sys.path[6]", sys.path[6], os.path.join(sys.executable, "internal"))
assert_equal("sys.path[7]", sys.path[7], os.path.join(sys.executable, "internal", "stdlib"))
if failed:
sys.exit(1)
import testpkg.pycmd_test

View file

@ -23,8 +23,11 @@ if [ -z $ANDROID_HOST_OUT ]; then
exit 1 exit 1
fi fi
if [[ ( ! -f $ANDROID_HOST_OUT/nativetest64/par_test/par_test ) || ( ! -f $ANDROID_HOST_OUT/nativetest64/par_test3/par_test3 ) ]]; then if [[ ( ! -f $ANDROID_HOST_OUT/nativetest64/par_test/par_test ) ||
echo "Run 'm par_test par_test3' first" ( ! -f $ANDROID_HOST_OUT/nativetest64/par_test3/par_test3 ) ||
( ! -f $ANDROID_HOST_OUT/bin/py2-cmd ) ||
( ! -f $ANDROID_HOST_OUT/bin/py3-cmd )]]; then
echo "Run 'm par_test par_test3 py2-cmd py3-cmd' first"
exit 1 exit 1
fi fi
@ -44,4 +47,15 @@ PYTHONPATH=/usr $ANDROID_HOST_OUT/nativetest64/par_test3/par_test3
ARGTEST=true $ANDROID_HOST_OUT/nativetest64/par_test3/par_test3 --arg1 arg2 ARGTEST=true $ANDROID_HOST_OUT/nativetest64/par_test3/par_test3 --arg1 arg2
cd $(dirname ${BASH_SOURCE[0]})
PYTHONPATH=/extra $ANDROID_HOST_OUT/bin/py2-cmd py-cmd_test.py
PYTHONPATH=/extra $ANDROID_HOST_OUT/bin/py3-cmd py-cmd_test.py
ARGTEST=true PYTHONPATH=/extra $ANDROID_HOST_OUT/bin/py2-cmd py-cmd_test.py arg1 arg2
ARGTEST2=true PYTHONPATH=/extra $ANDROID_HOST_OUT/bin/py2-cmd py-cmd_test.py --arg1 arg2
ARGTEST=true PYTHONPATH=/extra $ANDROID_HOST_OUT/bin/py3-cmd py-cmd_test.py arg1 arg2
ARGTEST2=true PYTHONPATH=/extra $ANDROID_HOST_OUT/bin/py3-cmd py-cmd_test.py --arg1 arg2
echo "Passed!" echo "Passed!"

View file

View file

@ -0,0 +1,33 @@
# Copyright 2018 Google Inc. All rights reserved.
#
# 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.
import os
import sys
# This file checks the visible python state against expected values when run
# via the py*-cmd prebuilts
failed = False
def assert_equal(what, a, b):
global failed
if a != b:
print("Expected %s('%s') == '%s'" % (what, a, b))
failed = True
assert_equal("__name__", __name__, "testpkg.pycmd_test")
assert_equal("basename(__file__)", os.path.basename(__file__), "pycmd_test.py")
assert_equal("__package__", __package__, "testpkg")
if failed:
sys.exit(1)