1#!/usr/bin/env python 2# 3# Copyright 2017 - The Android Open Source Project 4# 5# Licensed under the Apache License, Version 2.0 (the "License"); 6# you may not use this file except in compliance with the License. 7# You may obtain a copy of the License at 8# 9# http://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, software 12# distributed under the License is distributed on an "AS IS" BASIS, 13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14# See the License for the specific language governing permissions and 15# limitations under the License. 16# 17 18import argparse 19import os 20import re 21import sys 22 23from build.vts_spec_parser import VtsSpecParser 24from configure.test_case_creator import TestCaseCreator 25 26HAL_PACKAGE_PREFIX = 'android.hardware.' 27HAL_PACKAGE_NAME_PATTERN = '(([a-zA-Z_0-9]*)(?:[.][a-zA-Z_0-9]*)*)@([0-9]+)[.]([0-9]+)' 28TEST_TIME_OUT_PATTERN = '(([0-9]+)(m|s|h))+' 29"""Generate Android.mk and AndroidTest.xml files for given hal 30 31Usage: 32 python launch_hal_test.py [--test_type=host/target] [--time_out=estimated_test_time] [--enable_profiling] hal_package name 33 34Example: 35 python launch_hal_test.py android.hardware.nfc@1.0 36 python launch_hal_test.py --enable_profiling android.hardware.nfc@1.0 37 python launch_hal_test.py --test_type=host --time_out=5m android.hardware.nfc@1.0 38""" 39 40 41def main(): 42 parser = argparse.ArgumentParser(description='Initiate a test case.') 43 parser.add_argument( 44 '--test_type', 45 dest='test_type', 46 required=False, 47 help='Test type, such as HidlHalTest, HostDrivenTest, etc.') 48 parser.add_argument( 49 '--time_out', 50 dest='time_out', 51 required=False, 52 help='Timeout for the test, default is 1m.') 53 parser.add_argument( 54 '--enable_profiling', 55 dest='enable_profiling', 56 action='store_true', 57 required=False, 58 help='Whether to create profiling test.') 59 parser.add_argument( 60 '--replay', 61 dest='is_replay', 62 action='store_true', 63 required=False, 64 help='Whether this is a replay test.') 65 parser.add_argument( 66 '--disable_stop_runtime', 67 dest='disable_stop_runtime', 68 action='store_true', 69 required=False, 70 help='Whether to stop framework before the test.') 71 parser.add_argument( 72 'hal_package_name', 73 help='hal package name (e.g. android.hardware.nfc@1.0).') 74 args = parser.parse_args() 75 76 regex = re.compile(HAL_PACKAGE_NAME_PATTERN) 77 result = re.match(regex, args.hal_package_name) 78 if not result: 79 print 'Invalid hal package name. Exiting..' 80 sys.exit(1) 81 if not args.hal_package_name.startswith(HAL_PACKAGE_PREFIX): 82 print 'hal package name does not start with android.hardware. Exiting...' 83 sys.exit(1) 84 85 if not args.test_type: 86 args.test_type = 'target' 87 elif args.test_type != 'target' and args.test_type != 'host': 88 print 'Unsupported test type. Exiting...' 89 sys.exit(1) 90 elif args.test_type == 'host' and args.is_replay: 91 print 'Host side replay test is not supported yet. Exiting...' 92 sys.exit(1) 93 94 if not args.time_out: 95 args.time_out = '1m' 96 else: 97 regex = re.compile(TEST_TIME_OUT_PATTERN) 98 result = re.match(regex, args.time_out) 99 if not result: 100 print 'Invalid test time out format. Exiting...' 101 sys.exit(1) 102 103 stop_runtime = False 104 if args.test_type == 'target' and not args.disable_stop_runtime: 105 stop_runtime = True 106 107 vts_spec_parser = VtsSpecParser() 108 test_case_creater = TestCaseCreator(vts_spec_parser, args.hal_package_name) 109 if not test_case_creater.LaunchTestCase( 110 args.test_type, 111 args.time_out, 112 is_replay=args.is_replay, 113 stop_runtime=stop_runtime): 114 print('Error: Failed to launch test for %s. Exiting...' % 115 args.hal_package_name) 116 sys.exit(1) 117 118 # Create additional profiling test case if enable_profiling is specified. 119 if (args.enable_profiling): 120 if not test_case_creater.LaunchTestCase( 121 args.test_type, 122 args.time_out, 123 is_replay=args.is_replay, 124 is_profiling=True, 125 stop_runtime=stop_runtime): 126 print('Error: Failed to launch profiling test for %s. Exiting...' % 127 args.hal_package_name) 128 sys.exit(1) 129 130 131if __name__ == '__main__': 132 main() 133