未验证 提交 926d251f 编写于 作者: O openharmony_ci 提交者: Gitee

!6926 修改测试hap签名文件

Merge pull request !6926 from chenxuihui/monthly_20221018
......@@ -29,7 +29,6 @@ group("hiviewdfxtestacts") {
"hilogtest/hilogndktest:ActsHilogndkTest",
"hisyseventtest/hisyseventjstest:ActsHiSysEventJsTest",
"hitracechainjstest:ActsHiTraceChainJsTest",
"hitracechaintest:ActsHiTraceChainTest",
"hitracemetertest:ActsHitraceMeterTest",
"hiview/faultlogger/faultloggerjs:faultloggerjs_test",
]
......
# Copyright (c) 2021 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("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsHiTraceChainTest") {
hap_profile = "./entry/src/main/config.json"
deps = [
":hitracechain_ets_assets",
":hitracechain_ets_resources",
":hitracechain_ets_test_assets",
]
ets2abc = true
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsHiTraceChainTest"
}
ohos_js_assets("hitracechain_ets_assets") {
source_dir = "./entry/src/main/ets/MainAbility"
}
ohos_js_assets("hitracechain_ets_test_assets") {
source_dir = "./entry/src/main/ets/TestAbility"
}
ohos_resources("hitracechain_ets_resources") {
sources = [ "./entry/src/main/resources" ]
hap_profile = "./entry/src/main/config.json"
}
{
"description": "Configuration for ActsHiTraceChainTest Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "1800000",
"bundle-name": "ohos.hitracechain.test",
"package-name": "ohos.hitracechain.test",
"shell-timeout": "1800000"
},
"kits": [
{
"test-file-name": [
"$module.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
{
"app": {
"bundleName": "ohos.hitracechain.test",
"vendor": "open",
"version": {
"code": 1000000,
"name": "1.0.0"
},
"apiVersion": {
"compatible": 7,
"releaseType": "Release",
"target": 7
}
},
"deviceConfig": {},
"module": {
"package": "ohos.hitracechain.test",
"name": ".MyApplication",
"mainAbility": ".MainAbility",
"srcPath": "",
"deviceType": [
"tablet",
"default",
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry",
"installationFree": false
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"orientation": "unspecified",
"visible": true,
"srcPath": "MainAbility",
"name": ".MainAbility",
"srcLanguage": "ets",
"icon": "$media:icon",
"description": "$string:description_mainability",
"formsEnabled": false,
"label": "$string:entry_MainAbility",
"type": "page",
"launchType": "standard"
},
{
"orientation": "unspecified",
"visible": true,
"srcPath": "TestAbility",
"name": ".TestAbility",
"srcLanguage": "ets",
"icon": "$media:icon",
"description": "$string:TestAbility_desc",
"formsEnabled": false,
"label": "$string:TestAbility_label",
"type": "page",
"launchType": "standard"
}
],
"js": [
{
"mode": {
"syntax": "ets",
"type": "pageAbility"
},
"pages": [
"pages/index"
],
"name": ".MainAbility",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
},
{
"mode": {
"syntax": "ets",
"type": "pageAbility"
},
"pages": [
"pages/index"
],
"name": ".TestAbility",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
]
}
}
\ No newline at end of file
/*
* Copyright (c) 2021 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.
*/
export default {
onCreate() {
console.info('Application onCreate')
},
onDestroy() {
console.info('Application onDestroy')
},
}
\ No newline at end of file
// @ts-nocheck
/**
* Copyright (c) 2021 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.
*/
@Entry
@Component
struct MyComponent {
aboutToAppear() {
console.info("start run testcase!!!!")
}
build() {
Flex({
direction: FlexDirection.Column,
alignItems: ItemAlign.Center,
justifyContent: FlexAlign.Center
}) {
Text('ACE ETS TEST')
.fontSize(50)
.fontWeight(FontWeight.Bold)
}
.width('100%')
.height('100%')
}
}
/*
* Copyright (C) 2022 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 from '@ohos.application.abilityDelegatorRegistry'
import { Hypium } from 'hypium/index'
import testsuite from '../test/List.test'
export default {
onCreate() {
console.info('Application onCreate')
var abilityDelegator: any
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments: any
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
},
onDestroy() {
console.info('Application onDestroy')
},
}
\ No newline at end of file
/*
* Copyright (C) 2022 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 router from '@system.router';
@Entry
@Component
struct Index {
aboutToAppear() {
console.info('TestAbility index aboutToAppear')
}
@State message: string = 'Hello World'
build() {
Row() {
Column() {
Text(this.message)
.fontSize(50)
.fontWeight(FontWeight.Bold)
Button() {
Text('next page')
.fontSize(20)
.fontWeight(FontWeight.Bold)
}.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor('#0D9FFB')
.width('35%')
.height('5%')
.onClick(()=>{
})
}
.width('100%')
}
.height('100%')
}
}
\ No newline at end of file
/*
* Copyright (C) 2022 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 TestRunner from '@ohos.application.testRunner'
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
var abilityDelegator = undefined
var abilityDelegatorArguments = undefined
function translateParamsToString(parameters) {
const keySet = new Set([
'-s class', '-s notClass', '-s suite', '-s itName',
'-s level', '-s testType', '-s size', '-s timeout',
'-s package'
])
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams += ' ' + key + ' ' + parameters[key]
}
}
return targetParams.trim()
}
async function onAbilityCreateCallback() {
console.log('onAbilityCreateCallback');
}
async function addAbilityMonitorCallback(err: any) {
console.info('addAbilityMonitorCallback : ' + JSON.stringify(err))
}
export default class OpenHarmonyTestRunner implements TestRunner {
constructor() {
}
onPrepare() {
console.info('OpenHarmonyTestRunner OnPrepare')
}
onRun() {
console.log('OpenHarmonyTestRunner onRun run')
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
let lMonitor = {
abilityName: testAbilityName,
onAbilityCreate: onAbilityCreateCallback,
};
var testAbilityName = abilityDelegatorArguments.parameters['-p'] + '.TestAbility'
abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback)
var cmd = 'aa start -d 0 -a ' + testAbilityName + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' '+translateParamsToString(abilityDelegatorArguments.parameters)
console.info('cmd : '+cmd)
abilityDelegator.executeShellCommand(cmd,
(err: any, d: any) => {
console.info('executeShellCommand : err : ' + JSON.stringify(err));
console.info('executeShellCommand : data : ' + d.stdResult);
console.info('executeShellCommand : data : ' + d.exitCode);
})
console.info('OpenHarmonyTestRunner onRun call abilityDelegator.getAppContext')
var context = abilityDelegator.getAppContext()
console.info('getAppContext : ' + JSON.stringify(context))
console.info('OpenHarmonyTestRunner onRun end')
}
};
\ No newline at end of file
// @ts-nocheck
/**
* Copyright (c) 2021 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 {describe, it, expect} from "hypium/index";
import byTrace from '@ohos.bytrace'
import hiAppEvent from '@ohos.hiAppEvent'
import hiDebug from '@ohos.hidebug'
import hiLog from '@ohos.hilog'
export default function byTraceHiDebugJsunit() {
describe('byTraceHiDebugTest', function () {
console.log("************* byTraceHiDebug Test start*************");
/*
* @tc.number : DFX_HiAppEvent_Event_DISTRIBUTED_SERVICE_START_0100
* @tc.name : DISTRIBUTED_SERVICE_START
* @tc.desc : distributed service event.
*/
it('DFX_HiAppEvent_Event_DISTRIBUTED_SERVICE_START_0100', 0, async function (done) {
console.log("************* DFX_HiAppEvent_Event_DISTRIBUTED_SERVICE_START_0100 Test start*************");
try {
expect('hiappevent.distributed_service_start').assertEqual(hiAppEvent.Event.DISTRIBUTED_SERVICE_START);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiAppEvent_Event_DISTRIBUTED_SERVICE_START_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiLog_HiLog_info_0100
* @tc.name : info
* @tc.desc : Outputs info-level logs.
*/
it('DFX_HiLog_HiLog_info_0100', 0, async function (done) {
console.log("************* DFX_HiLog_HiLog_info_0100 Test start*************");
try {
hiLog.info(0xFFFF1, "HILOGTEST", "%{public}s", 'DFX_HiLog_HiLog_info_0100')
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiLog_HiLog_info_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiLog_HiLog_error_0100
* @tc.name : error
* @tc.desc : Outputs error-level logs.
*/
it('DFX_HiLog_HiLog_error_0100', 0, async function (done) {
console.log("************* DFX_HiLog_HiLog_error_0100 Test start*************");
try {
hiLog.error(0xFFFF2, "HILOGTEST", "%{public}s", 'DFX_HiLog_HiLog_error_0100')
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiLog_HiLog_error_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiLog_HiLog_fatal_0100
* @tc.name : fatal
* @tc.desc : Outputs fatal-level logs.
*/
it('DFX_HiLog_HiLog_fatal_0100', 0, async function (done) {
console.log("************* DFX_HiLog_HiLog_fatal_0100 Test start*************");
try {
hiLog.fatal(0xFFFF3, "HILOGTEST", "%{public}s", 'DFX_HiLog_HiLog_fatal_0100')
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiLog_HiLog_fatal_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiLog_HiLog_isLoggable_0100
* @tc.name : isLoggable
* @tc.desc : Checks whether logs of the specified tag, and level can be printed.
*/
it('DFX_HiLog_HiLog_isLoggable_0100', 0, async function (done) {
console.log("************* DFX_HiLog_HiLog_isLoggable_0100 Test start*************");
try {
const res = hiLog.isLoggable(0xD000700, "HILOGTEST", 3)
expect(res).assertEqual(false);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiLog_HiLog_isLoggable_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiLog_LogLevel_WARN_0100
* @tc.name : WARN
* @tc.desc : enum test
*/
it('DFX_HiLog_LogLevel_WARN_0100', 0, async function (done) {
console.log("************* DFX_HiLog_LogLevel_WARN_0100 Test start*************");
try {
expect(5).assertEqual(hiLog.LogLevel.WARN);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiLog_LogLevel_WARN_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiLog_LogLevel_ERROR_0100
* @tc.name : ERROR
* @tc.desc : enum test
*/
it('DFX_HiLog_LogLevel_ERROR_0100', 0, async function (done) {
console.log("************* DFX_HiLog_LogLevel_ERROR_0100 Test start*************");
try {
expect(6).assertEqual(hiLog.LogLevel.ERROR);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiLog_LogLevel_ERROR_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiLog_LogLevel_FATAL_0100
* @tc.name : FATAL
* @tc.desc : enum test
*/
it('DFX_HiLog_LogLevel_FATAL_0100', 0, async function (done) {
console.log("************* DFX_HiLog_LogLevel_FATAL_0100 Test start*************");
try {
expect(7).assertEqual(hiLog.LogLevel.FATAL);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiLog_LogLevel_FATAL_0100 Test end*************");
done();
});
console.log("************* byTraceHiDebug Test end*************");
})
}
// @ts-nocheck
/**
* Copyright (c) 2021 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 {describe, it, expect} from "hypium/index";
import hiTraceChain from '@ohos.hiTraceChain'
import hiTraceMeter from '@ohos.hiTraceMeter'
export default function hiTraceChainJsunit() {
describe('hiTraceChainTest', function () {
console.log("************* byTraceHiDebug Test start*************");
/*
* @tc.number : DFX_HiTraceChain_HiTraceFlag_INCLUDE_ASYNC_0100
* @tc.name : INCLUDE_ASYNC
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceFlag_INCLUDE_ASYNC_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceFlag_INCLUDE_ASYNC_0100 Test start*************");
try {
expect(1).assertEqual(hiTraceChain.HiTraceFlag.INCLUDE_ASYNC);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceFlag_INCLUDE_ASYNC_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceFlag_DONOT_CREATE_SPAN_0100
* @tc.name : DONOT_CREATE_SPAN
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceFlag_DONOT_CREATE_SPAN_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceFlag_DONOT_CREATE_SPAN_0100 Test start*************");
try {
expect(1 << 1).assertEqual(hiTraceChain.HiTraceFlag.DONOT_CREATE_SPAN);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceFlag_DONOT_CREATE_SPAN_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceFlag_TP_INFO_0100
* @tc.name : TP_INFO
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceFlag_TP_INFO_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceFlag_TP_INFO_0100 Test start*************");
try {
expect(1 << 2).assertEqual(hiTraceChain.HiTraceFlag.TP_INFO);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceFlag_TP_INFO_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceFlag_NO_BE_INFO_0100
* @tc.name : NO_BE_INFO
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceFlag_NO_BE_INFO_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceFlag_NO_BE_INFO_0100 Test start*************");
try {
expect(1 << 3).assertEqual(hiTraceChain.HiTraceFlag.NO_BE_INFO);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceFlag_NO_BE_INFO_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceFlag_DISABLE_LOG_0100
* @tc.name : DISABLE_LOG
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceFlag_DISABLE_LOG_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceFlag_DISABLE_LOG_0100 Test start*************");
try {
expect(1 << 4).assertEqual(hiTraceChain.HiTraceFlag.DISABLE_LOG);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceFlag_DISABLE_LOG_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceFlag_FAILURE_TRIGGER_0100
* @tc.name : FAILURE_TRIGGER
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceFlag_FAILURE_TRIGGER_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceFlag_FAILURE_TRIGGER_0100 Test start*************");
try {
expect(1 << 5).assertEqual(hiTraceChain.HiTraceFlag.FAILURE_TRIGGER);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceFlag_FAILURE_TRIGGER_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceFlag_D2D_TP_INFO_0100
* @tc.name : D2D_TP_INFO
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceFlag_D2D_TP_INFO_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceFlag_D2D_TP_INFO_0100 Test start*************");
try {
expect(1 << 6).assertEqual(hiTraceChain.HiTraceFlag.D2D_TP_INFO);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceFlag_D2D_TP_INFO_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceTracepointType_CS_0100
* @tc.name : CS
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceTracepointType_CS_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceTracepointType_CS_0100 Test start*************");
try {
expect(0).assertEqual(hiTraceChain.HiTraceTracepointType.CS);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceTracepointType_CS_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceTracepointType_CR_0100
* @tc.name : CR
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceTracepointType_CR_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceTracepointType_CR_0100 Test start*************");
try {
expect(1).assertEqual(hiTraceChain.HiTraceTracepointType.CR);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceTracepointType_CR_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceTracepointType_SS_0100
* @tc.name : SS
* @tc.desc : enum test
*/
it('DFX_HiTraceChain_HiTraceTracepointType_SS_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceTracepointType_SS_0100 Test start*************");
try {
expect(2).assertEqual(hiTraceChain.HiTraceTracepointType.SS);
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceTracepointType_SS_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_chainId_0100
* @tc.name : chainId
* @tc.desc : chainId test
*/
it('DFX_HiTraceChain_HiTraceChain_chainId_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_chainId_0100 Test start*************");
try {
let hiTraceId = {
chainId: 1,
spanId: 2,
parentSpanId: 3
}
hiTraceChain.setId(hiTraceId);
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_chainId_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_spanId_0100
* @tc.name : spanId
* @tc.desc : spanId test
*/
it('DFX_HiTraceChain_HiTraceChain_spanId_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_spanId_0100 Test start*************");
try {
let hiTraceId = {
chainId: 2,
spanId: 3,
parentSpanId: 4
}
hiTraceChain.setId(hiTraceId);
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_spanId_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_createSpan_0100
* @tc.name : createSpan
* @tc.desc : createSpan method test
*/
it('DFX_HiTraceChain_HiTraceChain_createSpan_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_createSpan_0100 Test start*************");
try {
let hiTraceId = hiTraceChain.createSpan();
console.log("DFX_HiTraceChain_HiTraceChain_createSpan_0100 chainId " + hiTraceId.chainId);
console.log("DFX_HiTraceChain_HiTraceChain_createSpan_0100 spanId " + hiTraceId.spanId);
console.log("DFX_HiTraceChain_HiTraceChain_createSpan_0100 parentSpanId " + hiTraceId.parentSpanId);
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_createSpan_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_setId_0100
* @tc.name : setId
* @tc.desc : setId method test
*/
it('DFX_HiTraceChain_HiTraceChain_setId_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_setId_0100 Test start*************");
try {
let hiTraceId = {
chainId: 3,
spanId: 4,
parentSpanId: 5
}
hiTraceChain.setId(hiTraceId);
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_setId_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_end_0100
* @tc.name : end
* @tc.desc : end test
*/
it('DFX_HiTraceChain_HiTraceChain_end_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_end_0100 Test start*************");
try {
let hiTraceId = {
chainId: 5,
spanId: 6,
parentSpanId: 7
}
hiTraceChain.end(hiTraceId);
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_end_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_clearId_0100
* @tc.name : clearId
* @tc.desc : clearId test
*/
it('DFX_HiTraceChain_HiTraceChain_clearId_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_clearId_0100 Test start*************");
try {
hiTraceChain.clearId();
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_clearId_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_tracepoint_0100
* @tc.name : tracepoint
* @tc.desc : tracepoint test
*/
it('DFX_HiTraceChain_HiTraceChain_tracepoint_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_tracepoint_0100 Test start*************");
try {
let hiTraceId = {
chainId: 5,
spanId: 6,
parentSpanId: 7
}
hiTraceChain.tracepoint(hiTraceChain.HiTraceCommunicationMode.DEFAULT, hiTraceChain.HiTraceTracepointType.CS, hiTraceId);
expect(true).assertTrue();
} catch (error) {
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_tracepoint_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_isValid_0100
* @tc.name : isValid
* @tc.desc : isValid method test
*/
it('DFX_HiTraceChain_HiTraceChain_isValid_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_isValid_0100 Test start*************");
try {
let hiTraceId = hiTraceChain.createSpan();
let isValid = hiTraceChain.isValid(hiTraceId);
console.log("DFX_HiTraceChain_HiTraceChain_isValid_0100 isValid " + isValid);
expect(true).assertTrue();
} catch (error) {
console.log("DFX_HiTraceChain_HiTraceChain_isValid_0100 error " + error);
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_isValid_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_enableFlag_0100
* @tc.name : enableFlag
* @tc.desc : enableFlag method test
*/
it('DFX_HiTraceChain_HiTraceChain_enableFlag_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_enableFlag_0100 Test start*************");
try {
let hiTraceId = hiTraceChain.createSpan();
hiTraceChain.enableFlag(hiTraceId, hiTraceChain.HiTraceFlag.DEFAULT);
expect(true).assertTrue();
} catch (error) {
console.log("DFX_HiTraceChain_HiTraceChain_enableFlag_0100 error " + error);
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_enableFlag_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100
* @tc.name : isFlagEnabled
* @tc.desc : isFlagEnabled method test
*/
it('DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100', 0, async function (done) {
console.log("************* DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100 Test start*************");
try {
let hiTraceId = hiTraceChain.createSpan();
let isFlagEnabled = hiTraceChain.isFlagEnabled(hiTraceId, hiTraceChain.HiTraceFlag.DEFAULT);
console.log("DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100 isFlagEnabled " + isFlagEnabled);
expect(true).assertTrue();
} catch (error) {
console.log("DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100 error " + error);
expect().assertFail();
}
console.log("************* DFX_HiTraceChain_HiTraceChain_isFlagEnabled_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceMeter_HiTraceMeter_startTrace_0100
* @tc.name : startTrace
* @tc.desc : Records a trace marking it as the start of a task, can with the expected completion time between
startTrace and finishTrace.
*/
it('DFX_HiTraceMeter_HiTraceMeter_startTrace_0100', 0, async function (done) {
console.log("************* DFX_HiTraceMeter_HiTraceMeter_startTrace_0100 Test start*************");
try {
hiTraceMeter.startTrace('testName', 1);
} catch (error) {
console.log("DFX_HiTraceMeter_HiTraceMeter_startTrace_0100 error " + error);
expect().assertFail();
}
console.log("************* DFX_HiTraceMeter_HiTraceMeter_startTrace_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100
* @tc.name : finishTrace
* @tc.desc : Records a trace and marks it as the end of a task.
*/
it('DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100', 0, async function (done) {
console.log("************* DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100 Test start*************");
try {
hiTraceMeter.finishTrace('testName', 1);
} catch (error) {
console.log("DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100 error " + error);
expect().assertFail();
}
console.log("************* DFX_HiTraceMeter_HiTraceMeter_finishTrace_0100 Test end*************");
done();
});
/*
* @tc.number : DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100
* @tc.name : traceByValue
* @tc.desc : Records a trace and marks it as the end of a task.
*/
it('DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100', 0, async function (done) {
console.log("************* DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100 Test start*************");
try {
hiTraceMeter.traceByValue('testName', 2);
} catch (error) {
console.log("DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100 error " + error);
expect().assertFail();
}
console.log("************* DFX_HiTraceMeter_HiTraceMeter_traceByValue_0100 Test end*************");
done();
});
console.log("************* byTraceHiDebug Test end*************");
})
}
// @ts-nocheck
/**
* Copyright (c) 2021 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 byTraceHiDebugJsunit from './ByTraceHiDebugJsunit.test.ets';
import hiTraceChainJsunit from './HiTraceChainJsunit.test.ets';
export default function testsuite() {
byTraceHiDebugJsunit();
hiTraceChainJsunit();
}
\ No newline at end of file
{
"string": [
{
"name": "entry_MainAbility",
"value": "entry_MainAbility"
},
{
"name": "description_mainability",
"value": "ETS_Empty Ability"
},
{
"name": "TestAbility_desc",
"value": "description"
},
{
"name": "TestAbility_label",
"value": "label"
}
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册