• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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("//base/telephony/core_service/telephony.gni")
16import("//build/config/features.gni")
17import("//build/ohos.gni")
18import("//build/test.gni")
19
20##############################fuzztest##########################################
21ohos_fuzztest("UpdateVoiceMailFuzzTest") {
22  module_output_path = "core_service/UpdateVoiceMailFuzzTest"
23  module_out_path = module_output_path
24  fuzz_config_file =
25      "//base/telephony/core_service/test/fuzztest/updatevoicemail_fuzzer"
26
27  include_dirs = [
28    "//base/telephony/core_service/frameworks/js/napi/include",
29    "//base/telephony/core_service/frameworks/js/napi",
30    "//base/telephony/core_service/services/core/include",
31    "//base/telephony/core_service/services/network_search/include",
32    "//base/telephony/core_service/services/sim/include",
33    "//base/telephony/core_service/test/fuzztest/common_fuzzer",
34    "//base/telephony/core_service/services/tel_ril/include",
35  ]
36
37  configs = [ "//base/telephony/core_service/utils:telephony_log_config" ]
38
39  deps = [
40    "//base/telephony/core_service:tel_core_service",
41    "//base/telephony/core_service/interfaces/innerkits:tel_core_service_api",
42    "//foundation/arkui/napi:ace_napi",
43  ]
44
45  external_deps = [
46    "ability_base:want",
47    "ability_base:zuri",
48    "ability_runtime:ability_manager",
49    "ability_runtime:data_ability_helper",
50    "ability_runtime:wantagent_innerkits",
51    "access_token:libaccesstoken_sdk",
52    "access_token:libnativetoken",
53    "access_token:libtoken_setproc",
54    "battery_manager:batterysrv_client",
55    "c_utils:utils",
56    "common_event_service:cesfwk_innerkits",
57    "config_policy:configpolicy_util",
58    "drivers_interface_ril:hril_innerkits",
59    "drivers_interface_ril:libril_proxy_1.0",
60    "eventhandler:libeventhandler",
61    "hdf_core:libhdi",
62    "hisysevent_native:libhisysevent",
63    "i18n:zone_util",
64    "init:libbegetutil",
65    "ipc:ipc_core",
66    "netmanager_base:net_conn_manager_if",
67    "netmanager_ext:net_tether_manager_if",
68    "power_manager:powermgr_client",
69    "relational_store:native_dataability",
70    "relational_store:native_rdb",
71    "safwk:system_ability_fwk",
72    "samgr:samgr_proxy",
73  ]
74  defines += [
75    "TELEPHONY_LOG_TAG = \"CoreServiceFuzzTest\"",
76    "LOG_DOMAIN = 0xD000F00",
77  ]
78  if (is_standard_system) {
79    external_deps += [ "hiviewdfx_hilog_native:libhilog" ]
80  } else {
81    external_deps += [ "hilog:libhilog" ]
82  }
83
84  cflags = [
85    "-g",
86    "-O0",
87    "-Wno-unused-variable",
88    "-fno-omit-frame-pointer",
89  ]
90  sources = [
91    "//base/telephony/core_service/frameworks/js/napi/napi_util.cpp",
92    "//base/telephony/core_service/test/fuzztest/common_fuzzer/addcoreservicetoken_fuzzer.cpp",
93    "updatevoicemail_fuzzer.cpp",
94  ]
95}
96
97###############################################################################
98group("fuzztest") {
99  testonly = true
100  deps = []
101  deps += [
102    # deps file
103    ":UpdateVoiceMailFuzzTest",
104  ]
105}
106###############################################################################
107