• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16import regeneratorRuntime from 'babel-runtime/regenerator'
17
18import {
19  mockAbilityFeatureAbility,
20  mockAbilityParticleAbility,
21  mockAbilityFormManager,
22  mockAbilityContinuationRegisterManager,
23  mockAbilityDataUriUtils,
24  mockAbilityAbilityAgent,
25  mockAbilityFormBindingData
26} from './ability'
27import { mockAppAbilityManager } from './ohos/app'
28
29import { mockBattery } from './battery'
30import { mockOhosBluetooth } from './ohos/bluetooth'
31import { mockDistributedSchedule } from './distributedSchedule'
32import { mockFetch } from './fetch'
33import { mockFeatureAbility } from './featureAbility'
34import { mockGeolocation } from './geolocation'
35import { mockNotification } from './notification'
36import { mockCommonEvent } from './ohos/commonEvent'
37import { mockOhosRequest } from './ohos/request'
38import { mockSensor } from './sensor'
39import { mockStorage } from './storage'
40import { mockStorageInfoManager } from './ohos/storageInfoManager'
41import { mockSystemPackage } from './systemPackage'
42
43import { mockUserauth } from './userIAM'
44import { mockVibrator } from './vibrator'
45import { mockRequireNapiFun } from './napi'
46import { mockAccessibility } from './accessibility'
47import { mockAI } from './ai'
48import { mockUserIAMUserAuth } from './ohos/userIAMuserAuth.js'
49import { mockBundleManager } from './ohos/bundleManager'
50import { mockPackageManager } from './ohos/packageManager'
51import { mockCalendar } from "./calendar"
52
53export function mockSystemPlugin() {
54  global.regeneratorRuntime = regeneratorRuntime
55
56  global.systemplugin = {}
57  global.ohosplugin = {}
58
59  mockNotification()
60  mockCommonEvent()
61  mockFetch()
62  mockStorage()
63  mockVibrator()
64  mockSensor()
65  mockGeolocation()
66  mockBattery()
67  mockSystemPackage()
68  mockFeatureAbility()
69  mockOhosBluetooth()
70  mockUserauth()
71  mockDistributedSchedule()
72  mockOhosRequest()
73  mockAbilityFeatureAbility()
74  mockAbilityContinuationRegisterManager()
75  mockRequireNapiFun()
76  mockAbilityDataUriUtils()
77  mockAccessibility()
78  mockAbilityParticleAbility()
79  mockAbilityFormManager()
80  mockAbilityAbilityAgent()
81  mockAbilityFormBindingData()
82  mockAI()
83  mockStorageInfoManager()
84  mockAppAbilityManager()
85  mockUserIAMUserAuth()
86  mockBundleManager()
87  mockPackageManager()
88  mockCalendar()
89}
90