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

!1870 合入faultloggerjs xts用例

Merge pull request !1870 from uoengopen/local
......@@ -11,10 +11,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import("//build/ohos_var.gni")
group("hiviewdfxtestacts") {
testonly = true
if (is_standard_system) {
deps = [ "hiappeventtest/hiappeventjstest:ActsHiAppeventTest" ]
deps = [
"hiappeventtest/hiappeventjstest:ActsHiAppeventTest",
"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("faultloggerjs_test") {
hap_profile = "./src/main/config.json"
deps = [
":faultloggerjs_assets",
":faultloggerjs_resources",
]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsFaultloggerJsTest"
}
ohos_js_assets("faultloggerjs_assets") {
source_dir = "./src/main/js/default"
}
ohos_resources("faultloggerjs_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "JSUnitTest",
"test-timeout": "300000",
"package": "ohos.faultloggerjs.test",
"shell-timeout": "60000"
},
"kits": [
{
"test-file-name": [
"ActsFaultloggerJsTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
{
"app": {
"bundleName": "ohos.faultloggerjs.test",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5
}
},
"deviceConfig": {},
"module": {
"package": "ohos.faultloggerjs.test",
"name": ".MyApplication",
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"abilities": [
{
"visible": true,
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"name": "ohos.faultloggerjs.test.MainAbility",
"icon": "$media:icon",
"description": "$string:mainability_description",
"label": "MyApplication",
"type": "page",
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
}
]
}
}
/*
* 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('AceApplication onCreate');
},
onDestroy() {
console.info('AceApplication onDestroy');
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
}
}
\ No newline at end of file
.container {
flex-direction: column;
justify-content: center;
align-items: center;
}
.title {
font-size: 100px;
}
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* 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 {Core, ExpectExtend, Constant} from 'deccjsunit/index'
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
},
onShow() {
console.info('onShow finish')
const core = Core.getInstance()
const expectExtend = new ExpectExtend({
'id': 'extend'
})
core.addService('expect', expectExtend)
core.init()
const configService = core.getDefaultService('config')
configService.setConfig(this)
require('../../test/List.test')
core.execute()
},
onReady() {
},
}
\ 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.
*/
require('./faultlogger.test.js')
/*
* 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 faultlogger from '@ohos.faultLogger'
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
describe("FaultlogJsTest", function () {
beforeAll(function() {
console.info('FaultlogJsTest beforeAll called')
})
afterAll(function() {
console.info('FaultlogJsTest afterAll called')
})
beforeEach(function() {
console.info('FaultlogJsTest beforeEach called')
})
afterEach(function() {
console.info('FaultlogJsTest afterEach called')
})
async function msleep(time) {
let promise = new Promise((resolve, reject) => {
setTimeout(() => resolve("done!"), time)
});
let result = await promise;
}
/**
* test
*
* @tc.name: FaultlogJsException_001
* @tc.desc: 检验函数参数输入错误时程序是否会崩溃
* @tc.require: AR000GICT2
* @tc.author:
*/
it('FaultlogJsException_001', 0, async function (done) {
console.info("---------------------------FaultlogJsException_001----------------------------------");
try {
let ret1 = faultlogger.querySelfFaultLog("faultloggertestsummary01");
console.info("FaultlogJsException_001 ret1 == " + ret1);
expect(ret1).assertEqual(undefined);
let ret2 = faultlogger.querySelfFaultLog(faultlogger.FaultType.JS_CRASH, "faultloggertestsummary01");
console.info("FaultlogJsException_001 ret2 == " + ret2);
expect(ret2).assertEqual(undefined);
let ret3 = faultlogger.querySelfFaultLog();
console.info("FaultlogJsException_001 ret3 == " + ret3);
expect(ret3).assertEqual(undefined);
done();
return;
} catch(err) {
console.info(err);
}
expect(false).assertTrue();
done();
})
/**
* test
*
* @tc.name: FaultlogJsTest_002
* @tc.desc: 检验promise同步方式获取faultlog CPP_CRASH日志
* @tc.require: AR000GICT2
* @tc.author:
*/
it('FaultlogJsTest_002', 0, async function (done) {
console.info("---------------------------FaultlogJsTest_002----------------------------------");
try {
let now = Date.now();
console.info("FaultlogJsTest_002 2 + " + now);
let module = "ohos.faultloggerjs.test";
const loopTimes = 10;
for (let i = 0; i < loopTimes; i++) {
console.info("--------FaultlogJsTest_002 3 + " + i + "----------");
faultlogger.addFaultLog(i, faultlogger.FaultType.CPP_CRASH, module, "faultloggertestsummary02 " + i);
await msleep(300);
}
await msleep(1000);
console.info("--------FaultlogJsTest_002 4" + "----------");
let ret = await faultlogger.querySelfFaultLog(faultlogger.FaultType.CPP_CRASH);
console.info("FaultlogJsTest_002 ret == " + ret.length);
expect(ret.length).assertEqual(loopTimes);
for (let i = 0; i < loopTimes; i++) {
console.info("faultloggertestsummary02 " + i + " fullLog.length " + ret[i].fullLog.length);
if (ret[i].fullLog.indexOf("faultloggertestsummary02 " + (loopTimes - 1 - i)) != -1) {
console.info("FaultlogJsTest_002 " + ret[i].fullLog.length);
expect(true).assertTrue();
} else {
expect(false).assertTrue();
}
}
console.info("--------FaultlogJsTest_002 5" + "----------");
ret = await faultlogger.querySelfFaultLog(faultlogger.FaultType.NO_SPECIFIC);
console.info("FaultlogJsTest_002 ret == " + ret.length);
expect(ret.length).assertEqual(loopTimes);
done();
return;
} catch (err) {
console.info("catch (err) == " + err);
}
console.info("FaultlogJsTest_002 error");
expect(false).assertTrue();
done();
})
/**
* test
*
* @tc.name: FaultlogJsTest_003
* @tc.desc: 检验promise同步方式获取faultlog JS_CRASH日志
* @tc.require: AR000GICT2
* @tc.author:
*/
it('FaultlogJsTest_003', 0, async function (done) {
console.info("---------------------------FaultlogJsTest_003----------------------------------");
try {
let now = Date.now();
console.info("FaultlogJsTest_003 2 + " + now);
let module = "ohos.faultloggerjs.test";
const loopTimes = 10;
for (let i = 0; i < loopTimes; i++) {
console.info("--------FaultlogJsTest_003 3 + " + i + "----------");
faultlogger.addFaultLog(i, faultlogger.FaultType.JS_CRASH, module, "faultloggertestsummary03 " + i);
await msleep(300);
}
await msleep(1000);
console.info("--------FaultlogJsTest_003 4" + "----------");
let ret = await faultlogger.querySelfFaultLog(faultlogger.FaultType.JS_CRASH);
console.info("FaultlogJsTest_003 ret == " + ret.length);
expect(ret.length).assertEqual(loopTimes);
for (let i = 0; i < loopTimes; i++) {
console.info("faultloggertestsummary03 " + i + " fullLog.length " + ret[i].fullLog.length);
if (ret[i].fullLog.indexOf("faultloggertestsummary03 " + (loopTimes - 1 - i)) != -1) {
console.info("FaultlogJsTest_003 " + ret[i].fullLog.length);
expect(true).assertTrue();
} else {
expect(false).assertTrue();
}
}
done();
return;
} catch (err) {
console.info("catch (err) == " + err);
}
console.info("FaultlogJsTest_003 error");
expect(false).assertTrue();
done();
})
/**
* test
*
* @tc.name: FaultlogJsTest_004
* @tc.desc: 检验promise同步方式获取faultlog APP_FREEZE日志
* @tc.require: AR000GICT2
* @tc.author:
*/
it('FaultlogJsTest_004', 0, async function (done) {
console.info("---------------------------FaultlogJsTest_004----------------------------------");
try {
let now = Date.now();
console.info("FaultlogJsTest_004 2 + " + now);
let module = "ohos.faultloggerjs.test";
const loopTimes = 10;
for (let i = 0; i < loopTimes; i++) {
console.info("--------FaultlogJsTest_004 3 + " + i + "----------");
faultlogger.addFaultLog(i, faultlogger.FaultType.APP_FREEZE, module, "faultloggertestsummary04 " + i);
await msleep(300);
}
await msleep(1000);
console.info("--------FaultlogJsTest_004 4" + "----------");
let ret = await faultlogger.querySelfFaultLog(faultlogger.FaultType.APP_FREEZE);
console.info("FaultlogJsTest_004 ret == " + ret.length);
expect(ret.length).assertEqual(loopTimes);
for (let i = 0; i < loopTimes; i++) {
console.info("faultloggertestsummary04 " + i + " fullLog.length " + ret[i].fullLog.length);
if (ret[i].fullLog.indexOf("faultloggertestsummary04 " + (loopTimes - 1 - i)) != -1) {
console.info("FaultlogJsTest_004 " + ret[i].fullLog.length);
expect(true).assertTrue();
} else {
expect(false).assertTrue();
}
}
done();
return;
} catch (err) {
console.info("catch (err) == " + err);
}
console.info("FaultlogJsTest_004 error");
expect(false).assertTrue();
done();
})
/**
* test
*
* @tc.name: FaultlogJsTest_005
* @tc.desc: 检验通过回调方式获取faultlog日志
* @tc.require: AR000GICT2
* @tc.author:
*/
it('FaultlogJsTest_005', 0, async function (done) {
console.info("---------------------------FaultlogJsTest_005----------------------------------");
try {
let now = Date.now();
console.info("FaultlogJsTest_005 start + " + now);
let module = "ohos.faultloggerjs.test";
const loopTimes = 10;
for (let i = 0; i < loopTimes; i++) {
console.info("--------FaultlogJsTest_005 + " + i + "----------");
faultlogger.addFaultLog(i + 20,
faultlogger.FaultType.CPP_CRASH, module, "faultloggertestsummary05 " + i);
await msleep(300);
}
await msleep(1000);
console.info("--------FaultlogJsTest_005 4----------");
function queryFaultLogCallback(error, ret) {
if (error) {
console.info('FaultlogJsTest_005 once error is ' + error);
} else {
console.info("FaultlogJsTest_005 ret == " + ret.length);
expect(ret.length).assertEqual(loopTimes);
for (let i = 0; i < loopTimes; i++) {
console.info("faultloggertestsummary05 " + i + " fullLog.length " + ret[i].fullLog.length);
if (ret[i].fullLog.indexOf("faultloggertestsummary05 " + (loopTimes - 1 - i)) != -1) {
console.info("FaultlogJsTest_005 " + ret[i].fullLog.length);
expect(true).assertTrue();
} else {
expect(false).assertTrue();
}
}
}
done();
}
faultlogger.querySelfFaultLog(faultlogger.FaultType.CPP_CRASH, queryFaultLogCallback);
return;
} catch (err) {
console.info(err);
}
console.info("FaultlogJsTest_005 error");
expect(false).assertTrue();
done();
})
})
\ No newline at end of file
{
"string": [
{
"name": "app_name",
"value": "FaultloggerJs"
},
{
"name": "mainability_description",
"value": "hap sample empty page"
}
]
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册