/* * Copyright (c) 2023-2024 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { abilityDelegatorRegistry, TestRunner } from '@kit.TestKit'; import { BusinessError } from '@kit.BasicServicesKit'; import { hilog } from '@kit.PerformanceAnalysisKit'; import { resourceManager } from '@kit.LocalizationKit'; import { util } from '@kit.ArkTS'; import { Hypium } from '@ohos/hypium'; import testsuite from '../test/List.test'; let abilityDelegator: abilityDelegatorRegistry.AbilityDelegator; let abilityDelegatorArguments: abilityDelegatorRegistry.AbilityDelegatorArgs; let jsonPath: string = 'mock/mock-config.json'; let domain: number = 0x0000; //日志标识,0x0000作为测试框架的业务标识 let tag: string = 'testTag'; //日志标识字符串,作为tag标识当前runner类下的测试行为 export default class OpenHarmonyTestRunner implements TestRunner { constructor() { } onPrepare() { hilog.info(domain, tag, '%{public}s', 'OpenHarmonyTestRunner OnPrepare'); } async onRun() { hilog.info(domain, tag, '%{public}s', 'OpenHarmonyTestRunner onRun run'); abilityDelegatorArguments = abilityDelegatorRegistry.getArguments(); abilityDelegator = abilityDelegatorRegistry.getAbilityDelegator(); let moduleName = abilityDelegatorArguments.parameters['-m']; let context = abilityDelegator.getAppContext().getApplicationContext().createModuleContext(moduleName); let mResourceManager = context.resourceManager; await checkMock(abilityDelegator, mResourceManager); hilog.info(domain, tag, '%{public}s', 'start run testcase!!!'); Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite); hilog.info(domain, tag, '%{public}s', 'OpenHarmonyTestRunner onRun end'); } } async function checkMock(abilityDelegator: abilityDelegatorRegistry.AbilityDelegator, resourceManager: resourceManager.ResourceManager) { let rawFile: Uint8Array; try { rawFile = resourceManager.getRawFileContentSync(jsonPath); hilog.info(domain, tag, 'MockList file exists'); let mockStr: string = util.TextDecoder.create("utf-8", { ignoreBOM: true }).decodeWithStream(rawFile); let mockMap: Record = getMockList(mockStr); try { abilityDelegator.setMockList(mockMap); } catch (error) { let code = (error as BusinessError).code; let message = (error as BusinessError).message; hilog.error(domain, tag, `abilityDelegator.setMockList failed, error code: ${code}, message: ${message}.`); } } catch (error) { let code = (error as BusinessError).code; let message = (error as BusinessError).message; hilog.error(domain, tag, `ResourceManager:callback getRawFileContent failed, error code: ${code}, message: ${message}.`); } } function getMockList(jsonStr: string) { let jsonObj: Record = JSON.parse(jsonStr); let map: Map = new Map(Object.entries(jsonObj)); let mockList: Record = {}; map.forEach((value: object, key: string) => { let realValue: string = value['source'].toString(); mockList[key] = realValue; }); hilog.info(domain, tag, '%{public}s', 'mock-json value:' + JSON.stringify(mockList) ?? ''); return mockList; }