1c2b37d2cSopenharmony_ci# Copyright (c) 2022 Huawei Device Co., Ltd. 2c2b37d2cSopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License"); 3c2b37d2cSopenharmony_ci# you may not use this file except in compliance with the License. 4c2b37d2cSopenharmony_ci# You may obtain a copy of the License at 5c2b37d2cSopenharmony_ci# 6c2b37d2cSopenharmony_ci# http://www.apache.org/licenses/LICENSE-2.0 7c2b37d2cSopenharmony_ci# 8c2b37d2cSopenharmony_ci# Unless required by applicable law or agreed to in writing, software 9c2b37d2cSopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS, 10c2b37d2cSopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11c2b37d2cSopenharmony_ci# See the License for the specific language governing permissions and 12c2b37d2cSopenharmony_ci# limitations under the License. 13c2b37d2cSopenharmony_ci 14c2b37d2cSopenharmony_cigroup("fuzztest") { 15c2b37d2cSopenharmony_ci testonly = true 16c2b37d2cSopenharmony_ci deps = [] 17c2b37d2cSopenharmony_ci 18c2b37d2cSopenharmony_ci deps += [ 19c2b37d2cSopenharmony_ci # deps file 20c2b37d2cSopenharmony_ci "addaccount_fuzzer:AddAccountFuzzTest", 21c2b37d2cSopenharmony_ci "addaccountimplicitly_fuzzer:AddAccountImplicitlyFuzzTest", 22c2b37d2cSopenharmony_ci "authenticate_fuzzer:AuthenticateFuzzTest", 23c2b37d2cSopenharmony_ci "checkaccountlabels_fuzzer:CheckAccountLabelsFuzzTest", 24c2b37d2cSopenharmony_ci "checkappaccess_fuzzer:CheckAppAccessFuzzTest", 25c2b37d2cSopenharmony_ci "checkappaccountsyncenable_fuzzer:CheckAppAccountSyncEnableFuzzTest", 26c2b37d2cSopenharmony_ci "checkauthtokenvisibility_fuzzer:CheckAuthTokenVisibilityFuzzTest", 27c2b37d2cSopenharmony_ci "checkoauthtokenvisibility_fuzzer:CheckOAuthTokenVisibilityFuzzTest", 28c2b37d2cSopenharmony_ci "createaccount_fuzzer:CreateAccountFuzzTest", 29c2b37d2cSopenharmony_ci "createaccountimplicitly_fuzzer:CreateAccountImplicitlyFuzzTest", 30c2b37d2cSopenharmony_ci "deleteaccount_fuzzer:DeleteAccountFuzzTest", 31c2b37d2cSopenharmony_ci "deleteaccountcredential_fuzzer:DeleteAccountCredentialFuzzTest", 32c2b37d2cSopenharmony_ci "deleteauthtoken_fuzzer:DeleteAuthTokenFuzzTest", 33c2b37d2cSopenharmony_ci "deleteoauthtoken_fuzzer:DeleteOAuthTokenFuzzTest", 34c2b37d2cSopenharmony_ci "disableappaccess_fuzzer:DisableAppAccessFuzzTest", 35c2b37d2cSopenharmony_ci "enableappaccess_fuzzer:EnableAppAccessFuzzTest", 36c2b37d2cSopenharmony_ci "getaccountcredential_fuzzer:GetAccountCredentialFuzzTest", 37c2b37d2cSopenharmony_ci "getaccountextrainfo_fuzzer:GetAccountExtraInfoFuzzTest", 38c2b37d2cSopenharmony_ci "getallaccessibleaccounts_fuzzer:GetAllAccessibleAccountsFuzzTest", 39c2b37d2cSopenharmony_ci "getallaccounts_fuzzer:GetAllAccountsFuzzTest", 40c2b37d2cSopenharmony_ci "getalloauthtokens_fuzzer:GetAllOAuthTokensFuzzTest", 41c2b37d2cSopenharmony_ci "getassociateddata_fuzzer:GetAssociatedDataFuzzTest", 42c2b37d2cSopenharmony_ci "getauthenticatorcallback_fuzzer:GetAuthenticatorCallbackFuzzTest", 43c2b37d2cSopenharmony_ci "getauthenticatorinfo_fuzzer:GetAuthenticatorInfoFuzzTest", 44c2b37d2cSopenharmony_ci "getauthlist_fuzzer:GetAuthListFuzzTest", 45c2b37d2cSopenharmony_ci "getauthtoken_fuzzer:GetAuthTokenFuzzTest", 46c2b37d2cSopenharmony_ci "getoauthlist_fuzzer:GetOAuthListFuzzTest", 47c2b37d2cSopenharmony_ci "getoauthtoken_fuzzer:GetOAuthTokenFuzzTest", 48c2b37d2cSopenharmony_ci "selectaccountsbyoptions_fuzzer:SelectAccountsByOptionsFuzzTest", 49c2b37d2cSopenharmony_ci "setaccountcredential_fuzzer:SetAccountCredentialFuzzTest", 50c2b37d2cSopenharmony_ci "setaccountextrainfo_fuzzer:SetAccountExtraInfoFuzzTest", 51c2b37d2cSopenharmony_ci "setappaccess_fuzzer:SetAppAccessFuzzTest", 52c2b37d2cSopenharmony_ci "setappaccountsyncenable_fuzzer:SetAppAccountSyncEnableFuzzTest", 53c2b37d2cSopenharmony_ci "setassociateddata_fuzzer:SetAssociatedDataFuzzTest", 54c2b37d2cSopenharmony_ci "setauthenticatorproperties_fuzzer:SetAuthenticatorPropertiesFuzzTest", 55c2b37d2cSopenharmony_ci "setauthtokenvisibility_fuzzer:SetAuthTokenVisibilityFuzzTest", 56c2b37d2cSopenharmony_ci "setoauthtoken_fuzzer:SetOAuthTokenFuzzTest", 57c2b37d2cSopenharmony_ci "setoauthtokenvisibility_fuzzer:SetOAuthTokenVisibilityFuzzTest", 58c2b37d2cSopenharmony_ci "subscribeappaccount_fuzzer:SubscribeAppAccountFuzzTest", 59c2b37d2cSopenharmony_ci "unsubscribeappaccount_fuzzer:UnsubscribeAppAccountFuzzTest", 60c2b37d2cSopenharmony_ci "verifycredential_fuzzer:VerifyCredentialFuzzTest", 61c2b37d2cSopenharmony_ci ] 62c2b37d2cSopenharmony_ci} 63