1# Copyright (c) 2022 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14#####################hydra-fuzz################### 15import("//build/config/features.gni") 16import("//build/ohos.gni") 17import("//build/test.gni") 18import("../../../services/samgr/var.gni") 19module_output_path = "samgr/samgr" 20samgr_dir = "//foundation/systemabilitymgr/samgr" 21samgr_services_dir = "${samgr_dir}/services/samgr/native" 22 23config("sam_fuzz_test_config") { 24 include_dirs = [ 25 "//foundation/systemabilitymgr/samgr/services/dfx/include", 26 "//foundation/systemabilitymgr/samgr/services/lsamgr/include", 27 "//foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/include", 28 ] 29} 30 31##############################fuzztest########################################## 32ohos_fuzztest("SystemAbilityManagerFuzzTest") { 33 module_out_path = module_output_path 34 35 fuzz_config_file = "//foundation/systemabilitymgr/samgr/test/fuzztest/systemabilitymanager_fuzzer" 36 37 configs = [ 38 ":sam_fuzz_test_config", 39 "${samgr_dir}/services/samgr/native:sam_config", 40 "//foundation/systemabilitymgr/samgr/test/resource:coverage_flags", 41 ] 42 43 cflags = [ 44 "-g", 45 "-O0", 46 "-Wno-unused-variable", 47 "-fno-omit-frame-pointer", 48 ] 49 sources = [ 50 "${samgr_dir}/utils/native/source/tools.cpp", 51 "${samgr_services_dir}/source/collect/device_param_collect.cpp", 52 "${samgr_services_dir}/source/collect/device_status_collect_manager.cpp", 53 "${samgr_services_dir}/source/collect/device_timed_collect.cpp", 54 "${samgr_services_dir}/source/collect/icollect_plugin.cpp", 55 "${samgr_services_dir}/source/ffrt_handler.cpp", 56 "${samgr_services_dir}/source/memory_guard.cpp", 57 "${samgr_services_dir}/source/schedule/system_ability_event_handler.cpp", 58 "${samgr_services_dir}/source/schedule/system_ability_state_machine.cpp", 59 "${samgr_services_dir}/source/schedule/system_ability_state_scheduler.cpp", 60 "${samgr_services_dir}/source/system_ability_manager.cpp", 61 "${samgr_services_dir}/source/system_ability_manager_dumper.cpp", 62 "${samgr_services_dir}/source/system_ability_manager_stub.cpp", 63 "//foundation/systemabilitymgr/samgr/services/dfx/source/hisysevent_adapter.cpp", 64 "//foundation/systemabilitymgr/samgr/services/samgr/native/source/ability_death_recipient.cpp", 65 "//foundation/systemabilitymgr/samgr/services/samgr/native/source/rpc_callback_imp.cpp", 66 "//foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/mock_permission.cpp", 67 "systemabilitymanager_fuzzer.cpp", 68 ] 69 deps = [] 70 71 external_deps = [ 72 "access_token:libaccesstoken_sdk", 73 "access_token:libnativetoken", 74 "access_token:libtoken_setproc", 75 "c_utils:utils", 76 "eventhandler:libeventhandler", 77 "ffrt:libffrt", 78 "hilog:libhilog", 79 "hisysevent:libhisysevent", 80 "hitrace:hitrace_meter", 81 "init:libbeget_proxy", 82 "init:libbegetutil", 83 "ipc:ipc_core", 84 "ipc:libdbinder", 85 "safwk:system_ability_fwk", 86 "samgr:samgr_common", 87 "samgr:samgr_proxy", 88 ] 89 defines = [] 90 if (hicollie_able) { 91 external_deps += [ "hicollie:libhicollie" ] 92 defines += [ "HICOLLIE_ENABLE" ] 93 } 94 95 if (ressched_able) { 96 external_deps += [ "resource_schedule_service:ressched_client" ] 97 defines += [ "RESSCHED_ENABLE" ] 98 } 99 100 if (support_device_manager) { 101 sources += 102 [ "${samgr_services_dir}/source/collect/device_networking_collect.cpp" ] 103 external_deps += [ "device_manager:devicemanagersdk" ] 104 defines += [ "SUPPORT_DEVICE_MANAGER" ] 105 } 106} 107 108group("fuzztest") { 109 testonly = true 110 deps = [] 111 112 deps += [ 113 # deps file 114 ":SystemAbilityManagerFuzzTest", 115 ] 116} 117