1# Copyright (c) 2024 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
14import("//build/test.gni")
15import("../../../../appexecfwk.gni")
16import("../../../../services/bundlemgr/appexecfwk_bundlemgr.gni")
17
18module_output_path = "bundle_framework/bundle_framework"
19
20ohos_fuzztest("BundleManagerCallbackFuzzTest") {
21  fuzz_config_file =
22      "../../../fuzztest/fuzztest_others/bundlemanagercallback_fuzzer"
23  use_exceptions = true
24  module_out_path = module_output_path
25  include_dirs = [ "//third_party/jsoncpp/include" ]
26  sources = bundle_mgr_source
27  sources += [
28    "${services_path}/bundlemgr/src/aot/aot_executor.cpp",
29    "${services_path}/bundlemgr/src/installd/installd_host_impl.cpp",
30    "${services_path}/bundlemgr/src/installd/installd_operator.cpp",
31    "${services_path}/bundlemgr/src/installd/installd_permission_mgr.cpp",
32    "bundlemanagercallback_fuzzer.cpp",
33  ]
34
35  sources += bundle_install_sources
36
37  configs = [
38    "${services_path}/bundlemgr/test:bundlemgr_test_config",
39    "${inner_api_path}/appexecfwk_base:appexecfwk_base_sdk_config",
40  ]
41  cflags = [
42    "-g",
43    "-O0",
44    "-Wno-unused-variable",
45    "-fno-omit-frame-pointer",
46  ]
47  deps = [ "${core_path}:appexecfwk_core" ]
48
49  deps += bundle_install_deps
50
51  external_deps = [
52    "ability_base:want",
53    "ability_runtime:ability_manager",
54    "ability_runtime:app_manager",
55    "access_token:el5_filekey_manager_sdk",
56    "access_token:libprivacy_sdk",
57    "access_token:libtokenid_sdk",
58    "appspawn:hnpapi",
59    "appverify:libhapverify",
60    "bounds_checking_function:libsec_shared",
61    "common_event_service:cesfwk_innerkits",
62    "eventhandler:libeventhandler",
63    "hilog:libhilog",
64    "hitrace:hitrace_meter",
65    "init:libbegetutil",
66    "safwk:system_ability_fwk",
67    "samgr:samgr_proxy",
68  ]
69  external_deps += bundle_install_external_deps
70  if (bundle_framework_graphics) {
71    external_deps += [ "image_framework:image_native" ]
72  }
73  defines = []
74  if (code_signature_enable) {
75    sources += [
76      "${services_path}/bundlemgr/src/aot/aot_sign_data_cache_mgr.cpp",
77      "${services_path}/bundlemgr/src/code_sign_helper.cpp",
78    ]
79    include_dirs += [ "${services_path}/bundlemgr/include" ]
80    external_deps += [
81      "bounds_checking_function:libsec_shared",
82      "code_signature:libcode_sign_utils",
83      "ets_runtime:libcompiler_service",
84    ]
85    defines += [ "CODE_SIGNATURE_ENABLE" ]
86  }
87  if (current_cpu == "arm64") {
88    defines += [ "USE_ARM64" ]
89  }
90  if (account_enable) {
91    external_deps += [ "os_account:os_account_innerkits" ]
92    defines += [ "ACCOUNT_ENABLE" ]
93  }
94  if (ability_runtime_enable) {
95    external_deps += [ "ability_runtime:ability_manager" ]
96  }
97  if (bundle_framework_free_install) {
98    sources += aging
99    sources += free_install
100    sources += distributed_manager
101    external_deps += [
102      "ability_runtime:app_manager",
103      "battery_manager:batterysrv_client",
104      "device_usage_statistics:usagestatsinner",
105      "display_manager:displaymgr",
106      "power_manager:powermgr_client",
107      "syscap_codec:syscap_interface_shared",
108    ]
109    defines += [ "BUNDLE_FRAMEWORK_FREE_INSTALL" ]
110  }
111  if (global_resmgr_enable) {
112    defines += [ "GLOBAL_RESMGR_ENABLE" ]
113    external_deps += [ "resource_management:global_resmgr" ]
114  }
115  if (hicollie_enable) {
116    external_deps += [ "hicollie:libhicollie" ]
117    defines += [ "HICOLLIE_ENABLE" ]
118  }
119
120  if (hisysevent_enable) {
121    sources += [ "${services_path}/bundlemgr/src/inner_event_report.cpp" ]
122    external_deps += [ "hisysevent:libhisysevent" ]
123    defines += [ "HISYSEVENT_ENABLE" ]
124  }
125
126  if (storage_service_enable) {
127    external_deps += [ "storage_service:storage_manager_sa_proxy" ]
128    defines += [ "STORAGE_SERVICE_ENABLE" ]
129  }
130
131  configs += [ "${services_path}/bundlemgr:rdb_config" ]
132  external_deps += [ "relational_store:native_rdb" ]
133  sources += [
134    "${services_path}/bundlemgr/src/bundle_data_storage_rdb.cpp",
135    "${services_path}/bundlemgr/src/preinstall_data_storage_rdb.cpp",
136    "${services_path}/bundlemgr/src/rdb/bms_rdb_open_callback.cpp",
137    "${services_path}/bundlemgr/src/rdb/rdb_data_manager.cpp",
138  ]
139  if (bundle_framework_app_control) {
140    defines += [ "BUNDLE_FRAMEWORK_APP_CONTROL" ]
141    sources += [
142      "${services_path}/bundlemgr/src/app_control/app_control_manager.cpp",
143      "${services_path}/bundlemgr/src/app_control/app_control_manager_host_impl.cpp",
144      "${services_path}/bundlemgr/src/app_control/app_control_manager_rdb.cpp",
145      "${services_path}/bundlemgr/src/app_control/app_jump_interceptor_event_subscriber.cpp",
146      "${services_path}/bundlemgr/src/app_control/app_jump_interceptor_manager_rdb.cpp",
147    ]
148    include_dirs += [ "${services_path}/bundlemgr/include/app_control" ]
149    external_deps += [ "c_utils:utils" ]
150  }
151  if (udmf_enabled) {
152    defines += [ "BUNDLE_FRAMEWORK_UDMF_ENABLED" ]
153    external_deps += [ "udmf:utd_client" ]
154  }
155
156  if (bms_device_info_manager_part_enabled) {
157    external_deps += [
158      "device_info_manager:distributed_device_profile_common",
159      "device_info_manager:distributed_device_profile_sdk",
160    ]
161    defines += [ "BMS_DEVICE_INFO_MANAGER_ENABLE" ]
162  }
163}
164