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

!2146 增加hichecker js用例

Merge pull request !2146 from uoengopen/local
......@@ -16,6 +16,7 @@ group("hiviewdfxtestacts") {
if (is_standard_system) {
deps = [
"hiappeventtest/hiappeventjstest:ActsHiAppeventTest",
"hicheckertest/hicheckerjstest:hicheckerjstest",
"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("hicheckerjstest") {
hap_profile = "./src/main/config.json"
deps = [
":hichecker_js_assets",
":hichecker_resources",
]
# shared_libraries = [
# "//third_party/giflib:libgif",
# "//third_party/libpng:libpng",
# ]
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "ActsHicheckerTest"
# part_name = "prebuilt_hap"
# subsystem_name = "xts"
}
ohos_js_assets("hichecker_js_assets") {
source_dir = "./src/main/js/default"
}
ohos_resources("hichecker_resources") {
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "JSUnitTest",
"test-timeout": "120000",
"package": "ohos.hichecker.test",
"shell-timeout": "60000"
},
"kits": [
{
"test-file-name": [
"ActsHicheckerTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}
]
}
{
"app": {
"bundleName": "ohos.hichecker.test",
"vendor": "example",
"version": {
"code": 1,
"name": "1.0"
},
"apiVersion": {
"compatible": 4,
"target": 5
}
},
"deviceConfig": {},
"module": {
"package": "ohos.hichecker.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.hichecker.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'
const injectRef = Object.getPrototypeOf(global) || global
injectRef.regeneratorRuntime = require('@babel/runtime/regenerator')
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.
*/
import hichecker from '@ohos.hichecker'
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
describe('HiCheckerTest', function () {
beforeAll(function() {
console.info('HiCheckerTest beforeAll called')
})
afterAll(function() {
console.info('HiCheckerTest afterAll called')
})
beforeEach(function() {
console.info('HiCheckerTest beforeEach called');
hichecker.removeRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS);
hichecker.removeRule(hichecker.RULE_CHECK_SLOW_EVENT);
hichecker.removeRule(hichecker.RULE_CHECK_ABILITY_CONNECTION_LEAK);
hichecker.removeRule(hichecker.RULE_CAUTION_PRINT_LOG);
hichecker.removeRule(hichecker.RULE_CAUTION_TRIGGER_CRASH);
})
afterEach(function() {
console.info('HiCheckerTest afterEach called')
})
async function msleep(time) {
let promise = new Promise((resolve, reject) => {
setTimeout(() => resolve("done!"), time)
});
let result = await promise;
}
/**
* @tc.number
* @tc.name HiCheckerTest001
* @tc.desc
*/
it('HiCheckerTest001', 0, async function (done) {
console.info('HiCheckerTest001 start');
hichecker.addRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS);
let tmp = hichecker.contains(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS);
console.log('add rule success!');
expect(tmp).assertTrue();
done();
})
/**
* @tc.number
* @tc.name HiCheckerTest002
* @tc.desc
*/
it('HiCheckerTest002', 0, async function (done) {
console.info('HiCheckerTest002 start');
hichecker.addRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS | hichecker.RULE_CHECK_SLOW_EVENT);
hichecker.addRule(hichecker.RULE_CHECK_ABILITY_CONNECTION_LEAK | hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH);
console.log('add rule success!');
expect(hichecker.contains(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS)).assertTrue();
expect(hichecker.contains(hichecker.RULE_CHECK_SLOW_EVENT)).assertTrue();
expect(hichecker.contains(hichecker.RULE_CHECK_ABILITY_CONNECTION_LEAK)).assertTrue();
expect(hichecker.contains(hichecker.RULE_CAUTION_PRINT_LOG)).assertTrue();
expect(hichecker.contains(hichecker.RULE_CAUTION_TRIGGER_CRASH)).assertTrue();
let tmp = (hichecker.RULE_THREAD_CHECK_SLOW_PROCESS | hichecker.RULE_CHECK_SLOW_EVENT | hichecker.RULE_CHECK_ABILITY_CONNECTION_LEAK | hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH);
expect(hichecker.getRule() == tmp).assertTrue();
done();
})
/**
* @tc.number
* @tc.name HiCheckerTest003
* @tc.desc
*/
it('HiCheckerTest003', 0, async function (done) {
console.info('HiCheckerTest003 start');
hichecker.addRule(-1);
console.log('add wrong rule!');
expect(hichecker.contains(-1)).assertEqual(false);
hichecker.addRule(0);
console.log('add wrong rule!');
expect(hichecker.contains(0)).assertEqual(false);
hichecker.addRule(999999);
console.log('add wrong rule!');
expect(hichecker.contains(-1)).assertEqual(false);
done();
})
/**
* @tc.number
* @tc.name HiCheckerTest004
* @tc.desc
*/
it('HiCheckerTest004', 0, async function (done) {
console.info('HiCheckerTest004 start');
hichecker.addRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS);
expect(hichecker.contains(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS)).assertTrue();
console.log('add rule success!');
hichecker.removeRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS);
expect(hichecker.contains(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS)).assertEqual(false);
done();
})
/**
* @tc.number
* @tc.name HiCheckerTest005
* @tc.desc
*/
it('HiCheckerTest005', 0, async function (done) {
console.info('HiCheckerTest005 start');
hichecker.addRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS | hichecker.RULE_CHECK_SLOW_EVENT);
hichecker.addRule(hichecker.RULE_CHECK_ABILITY_CONNECTION_LEAK | hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH);
console.log('add rule success!');
let tmp = (hichecker.RULE_CHECK_ABILITY_CONNECTION_LEAK | hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH);
hichecker.removeRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS | hichecker.RULE_CHECK_SLOW_EVENT);
expect(hichecker.getRule() == tmp).assertTrue();
hichecker.removeRule(hichecker.RULE_CHECK_ABILITY_CONNECTION_LEAK | hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH);
expect(hichecker.getRule() == 0).assertTrue();
done();
})
/**
* @tc.number
* @tc.name HiCheckerTest006
* @tc.desc
*/
it('HiCheckerTest006', 0, async function (done) {
console.info('HiCheckerTest006 start');
hichecker.addRule(hichecker.RULE_THREAD_CHECK_SLOW_PROCESS | hichecker.RULE_CHECK_SLOW_EVENT);
hichecker.addRule(hichecker.RULE_CHECK_ABILITY_CONNECTION_LEAK | hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH);
console.log('add rule success!');
let tmp = (hichecker.RULE_THREAD_CHECK_SLOW_PROCESS | hichecker.RULE_CHECK_SLOW_EVENT | hichecker.RULE_CHECK_ABILITY_CONNECTION_LEAK | hichecker.RULE_CAUTION_PRINT_LOG | hichecker.RULE_CAUTION_TRIGGER_CRASH);
hichecker.removeRule(-1);
expect(hichecker.getRule() == tmp).assertTrue();
hichecker.removeRule(0);
expect(hichecker.getRule() == tmp).assertTrue();
hichecker.removeRule(999999);
expect(hichecker.getRule() == tmp).assertTrue();
done();
})
})
/*
* 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('./HiChecker.test.js')
{
"string": [
{
"name": "app_name",
"value": "hichecker"
},
{
"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.
先完成此消息的编辑!
想要评论请 注册