#!/usr/bin/env python3 # coding=utf-8 # # Copyright (c) 2020 Huawei Device Co., Ltd. # 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 copy from core.utils import get_file_list_by_postfix from core.config.config_manager import FilterConfigManager from xdevice import platform_logger LOG = platform_logger("TestcaseManager") TESTFILE_TYPE_DATA_DIC = { "DEX": [], "HAP": [], "PYT": [], "CXX": [], "BIN": [], "JST": [], } FILTER_SUFFIX_NAME_LIST = [".TOC", ".info", ".pyc"] class TestCaseManager(object): def get_test_files(self, test_case_path, options): LOG.info("test case path: " + test_case_path) LOG.info("test type list: " + str(options.testtype)) suit_file_dic = copy.deepcopy(TESTFILE_TYPE_DATA_DIC) if os.path.exists(test_case_path): if len(options.testtype) != 0: test_type_list = options.testtype suit_file_dic = self.get_test_file_data( test_case_path, test_type_list, options) else: LOG.error("%s is not exist." % test_case_path) return suit_file_dic def get_test_file_data(self, test_case_path, test_type_list, options): suit_file_dic = copy.deepcopy(TESTFILE_TYPE_DATA_DIC) for test_type in test_type_list: temp_dic = self.get_test_file_data_by_test_type( test_case_path, test_type, options) for key, value in suit_file_dic.items(): suit_file_dic[key] = value + temp_dic[key] return suit_file_dic def get_test_file_data_by_test_type(self, test_case_path, test_type, options): suit_file_dictionary = copy.deepcopy(TESTFILE_TYPE_DATA_DIC) test_case_out_path = os.path.join(test_case_path, test_type) if os.path.exists(test_case_out_path): LOG.info("The test case directory: %s" % test_case_out_path) return self.get_all_test_file(test_case_out_path, options) else: LOG.error("Test case dir does not exist. %s" % test_case_out_path) return suit_file_dictionary def get_all_test_file(self, test_case_out_path, options): suite_file_dictionary = copy.deepcopy(TESTFILE_TYPE_DATA_DIC) filter_part_list = FilterConfigManager().get_filtering_list( "subsystem_name", options.productform) filter_list_test_file = FilterConfigManager().get_filtering_list( "testfile_name", options.productform) for part_name in os.listdir(test_case_out_path): part_case_dir = os.path.join(test_case_out_path, part_name) if not os.path.isdir(part_case_dir): continue if part_name in filter_part_list: continue suite_file_list = get_file_list_by_postfix(part_case_dir) for suite_file in suite_file_list: if -1 != suite_file.replace(test_case_out_path, "").find( os.sep + "resource" + os.sep): continue file_name = os.path.basename(suite_file) if file_name in filter_list_test_file: continue _, suffix_name = os.path.splitext(file_name) if suffix_name in FILTER_SUFFIX_NAME_LIST: continue if not self.get_valid_suite_file(test_case_out_path, suite_file, options): continue if suffix_name == ".dex": suite_file_dictionary["DEX"].append(suite_file) elif suffix_name == ".hap": suite_file_dictionary["JST"].append(suite_file) elif suffix_name == ".py": if not self.check_python_test_file(suite_file): continue suite_file_dictionary["PYT"].append(suite_file) elif suffix_name == "": suite_file_dictionary["CXX"].append(suite_file) elif suffix_name == ".bin": suite_file_dictionary["BIN"].append(suite_file) return suite_file_dictionary @classmethod def get_valid_suite_file(cls, test_case_out_path, suite_file, options): partlist = options.partname_list testmodule = options.testmodule testsuit = options.testsuit if not suite_file.startswith(test_case_out_path): return False if testsuit != "": short_name, _ = os.path.splitext(os.path.basename(suite_file)) return short_name.startswith(testsuit) or \ testsuit.startswith(short_name) is_valid_status = False suitfile_subpath = suite_file.replace(test_case_out_path, "") suitfile_subpath = suitfile_subpath.strip(os.sep) if len(partlist) == 0: if testmodule != "": temp_list = suitfile_subpath.split(os.sep) if len(temp_list) > 2 and testmodule == temp_list[1]: is_valid_status = True else: is_valid_status = True else: for partname in partlist: if testmodule != "": if suitfile_subpath.startswith( partname + os.sep + testmodule + os.sep): is_valid_status = True break else: if suitfile_subpath.startswith(partname + os.sep): is_valid_status = True break return is_valid_status @classmethod def check_python_test_file(cls, suite_file): if suite_file.endswith(".py"): filename = os.path.basename(suite_file) if filename.startswith("test_"): return True return False