提交 2c69b141 编写于 作者: J jiangkai43

Test cases of util adaptation to the new framework

https://gitee.com/openharmony/xts_acts/issues/I5JM4ZSigned-off-by: Njiangkai43 <jiangkai43@huawei.com>
上级 8672201d
...@@ -31,7 +31,9 @@ ohos_js_hap_suite("util_js_test") { ...@@ -31,7 +31,9 @@ ohos_js_hap_suite("util_js_test") {
# subsystem_name = "xts" # subsystem_name = "xts"
} }
ohos_js_assets("util_js_assets") { ohos_js_assets("util_js_assets") {
source_dir = "./src/main/js/default" js2abc = true
hap_profile = "./src/main/config.json"
source_dir = "./src/main/js"
} }
ohos_resources("util_resources") { ohos_resources("util_resources") {
sources = [ "./src/main/resources" ] sources = [ "./src/main/resources" ]
......
{ {
"description": "Configuration for startup util js api Tests", "description": "Configuration for startup util js api Tests",
"driver": { "driver": {
"type": "JSUnitTest", "type": "OHJSUnitTest",
"test-timeout": "800000", "test-timeout": "800000",
"package": "com.example.util", "shell-timeout": "800000",
"shell-timeout": "90000" "bundle-name": "com.example.util",
"package-name": "com.example.util"
}, },
"kits": [ "kits": [
{ {
......
{ {
"app": { "app": {
"bundleName": "com.example.util", "bundleName": "com.example.util",
"vendor": "example", "vendor": "example",
"version": { "version": {
"code": 1000000, "code": 1000000,
"name": "1.0.0" "name": "1.0.0"
}, },
"apiVersion": { "apiVersion": {
"compatible": 4, "compatible": 4,
"target": 5 "target": 5
} }
},
"deviceConfig": {},
"module": {
"package": "com.example.util",
"name": ".MyApplication",
"mainAbility": "com.example.util.MainAbility",
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry",
"installationFree": false
}, },
"abilities": [ "deviceConfig": {},
{ "module": {
"skills": [ "package": "com.example.util",
"name": ".entry",
"srcPath": "",
"mainAbility": ".MainAbility",
"deviceType": [
"phone"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry",
"installationFree": false
},
"abilities": [
{
"skills": [
{
"entities": [
"entity.system.home"
],
"actions": [
"action.system.home"
]
}
],
"orientation": "unspecified",
"formsEnabled": false,
"name": ".MainAbility",
"srcLanguage": "js",
"srcPath": "MainAbility",
"icon": "$media:icon",
"description": "$string:MainAbility_desc",
"label": "$string:MainAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
},
{
"orientation": "unspecified",
"formsEnabled": false,
"name": ".TestAbility",
"srcLanguage": "js",
"srcPath": "TestAbility",
"icon": "$media:icon",
"description": "$string:TestAbility_desc",
"label": "$string:TestAbility_label",
"type": "page",
"visible": true,
"launchType": "standard"
}
],
"js": [
{ {
"entities": [ "pages": [
"entity.system.home" "pages/index/index"
], ],
"actions": [ "name": "default",
"action.system.home" "window": {
] "designWidth": 720,
"autoDesignWidth": true
}
},
{
"pages": [
"pages/index/index"
],
"name": ".TestAbility",
"window": {
"designWidth": 720,
"autoDesignWidth": false
}
} }
], ],
"visible": true, "testRunner": {
"name": "com.example.util.MainAbility", "name": "OpenHarmonyTestRunner",
"icon": "$media:icon", "srcPath": "TestRunner"
"description": "$string:mainability_description",
"label": "$string:entry_MainAbility",
"type": "page",
"launchType": "standard"
}
],
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default",
"window": {
"designWidth": 720,
"autoDesignWidth": true
} }
} }
] }
} \ No newline at end of file
}
\ No newline at end of file
...@@ -13,8 +13,8 @@ ...@@ -13,8 +13,8 @@
limitations under the License. limitations under the License.
--> -->
<div class="container" onswipe="touchMove"> <div class="container">
<text class="title"> <text class="title">
{{ $t('strings.hello') }} {{title}} {{ $t('strings.hello') }} {{ title }}
</text> </text>
</div> </div>
\ No newline at end of file
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
import app from '@system.app' import app from '@system.app'
import device from '@system.device' import device from '@system.device'
import router from '@system.router' import router from '@system.router'
import {Core} from 'deccjsunit/index'
export default { export default {
data: { data: {
...@@ -27,10 +26,6 @@ export default { ...@@ -27,10 +26,6 @@ export default {
}, },
onShow() { onShow() {
console.info('onShow finish') console.info('onShow finish')
const core = Core.getInstance()
core.init()
require('../../../test/List.test')
core.execute()
}, },
onReady() { onReady() {
}, },
......
/*
* 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 '@ohos/hypium'
import testsuite from '../test/List.test'
export default {
onCreate() {
console.info('TestApplication onCreate')
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
},
onDestroy() {
console.info("TestApplication onDestroy");
}
};
{
"strings": {
"hello": "Hello",
"world": "World"
},
"Files": {
}
}
\ No newline at end of file
{
"strings": {
"hello": "您好",
"world": "世界"
},
"Files": {
}
}
\ No newline at end of file
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
}
.title {
font-size: 60px;
text-align: center;
width: 100%;
height: 40%;
margin: 10px;
}
@media screen and (device-type: phone) and (orientation: landscape) {
.title {
font-size: 60px;
}
}
@media screen and (device-type: tablet) and (orientation: landscape) {
.title {
font-size: 100px;
}
}
\ No newline at end of file
<div class="container">
<text class="title">
{{ $t('strings.hello') }} {{ title }}
</text>
</div>
/*
* 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.
*/
export default {
data: {
title: ""
},
onInit() {
this.title = this.$t('strings.world');
}
}
/*
* 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'
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', '-s dryRun'
])
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams += ' ' + key + ' ' + parameters[key]
}
}
return targetParams.trim()
}
export default {
onPrepare() {
console.info('OpenHarmonyTestRunner OnPrepare')
},
onRun() {
console.log('OpenHarmonyTestRunner onRun run')
var abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
var abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var testAbilityName = abilityDelegatorArguments.parameters['-p'] + '.TestAbility'
var cmd = 'aa start -d 0 -a ' + testAbilityName + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' ' + translateParamsToString(abilityDelegatorArguments.parameters)
var debug = abilityDelegatorArguments.parameters["-D"]
console.info('debug value : '+debug)
if (debug == 'true')
{
cmd += ' -D'
}
console.info('cmd : '+cmd)
abilityDelegator.executeShellCommand(cmd, (err, data) => {
console.info('executeShellCommand : err : ' + JSON.stringify(err));
console.info('executeShellCommand : data : ' + data.stdResult);
console.info('executeShellCommand : data : ' + data.exitCode);
})
}
};
...@@ -12,5 +12,7 @@ ...@@ -12,5 +12,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import UtilFunTest from './util.test.js'
require('./util.test.js'); export default function testsuite() {
\ No newline at end of file UtilFunTest()
}
\ No newline at end of file
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index' import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium'
import util from '@ohos.util' import util from '@ohos.util'
import url from '@ohos.url' import url from '@ohos.url'
import app from '@system.app' import app from '@system.app'
...@@ -45,7 +45,7 @@ var rangeFir = new util.Scope(tempMiDF, tempMidS); ...@@ -45,7 +45,7 @@ var rangeFir = new util.Scope(tempMiDF, tempMidS);
var rangeSec = new util.Scope(tempLess, tempMore); var rangeSec = new util.Scope(tempLess, tempMore);
var rangeThi = new util.Scope(tempLess, tempMiDF); var rangeThi = new util.Scope(tempLess, tempMiDF);
var rangeFif = new util.Scope(tempMiDF, tempMore); var rangeFif = new util.Scope(tempMiDF, tempMore);
export default function UtilFunTest() {
describe('TextEncoderTest', function () { describe('TextEncoderTest', function () {
/** /**
...@@ -175,17 +175,17 @@ describe('TextEncoderTest', function () { ...@@ -175,17 +175,17 @@ describe('TextEncoderTest', function () {
* @tc.author: shikai * @tc.author: shikai
*/ */
it('testUtilPromisify_new_001', 0, async function () { it('testUtilPromisify_new_001', 0, async function () {
function aysnFun(str, callback) { function fn(val, callback) {
if (typeof str === 'string') { if (typeof val === 'string') {
callback(null, str); callback(null, val);
} else { } else {
callback('type err'); callback('type err');
} }
} }
let newPromiseObj = util.promisify(aysnFun); (async () => {
newPromiseObj("Hello").then(res => { const value = await util.promisify(fn);
expect(res).strictEqual('Hello'); expect(value(null, "Hello")).strictEqual('Hello');
}) })();
}) })
/** /**
...@@ -195,17 +195,17 @@ describe('TextEncoderTest', function () { ...@@ -195,17 +195,17 @@ describe('TextEncoderTest', function () {
* @tc.author: shikai * @tc.author: shikai
*/ */
it('testUtilPromisify_new_002', 0, async function () { it('testUtilPromisify_new_002', 0, async function () {
function aysnFun(str, callback) { function fn(str, callback) {
if (typeof str === 'string') { if (typeof str === 'string') {
callback(null, str); callback(null, str);
} else { } else {
callback('type err'); callback('type err');
} }
} }
let newPromiseObj = util.promisify(aysnFun); (async () => {
newPromiseObj([1, 2]).catch(err => { const value = await util.promisify(fn);
expect(err).strictEqual('type err'); expect(value(null, [1, 2])).strictEqual('type err');
}) })();
}) })
/** /**
...@@ -231,17 +231,17 @@ describe('TextEncoderTest', function () { ...@@ -231,17 +231,17 @@ describe('TextEncoderTest', function () {
* @tc.author: shikai * @tc.author: shikai
*/ */
it('testUtilPromisify_new_004', 0, async function () { it('testUtilPromisify_new_004', 0, async function () {
function aysnFun(str1, str2, callback) { function fn(val, callback) {
if (typeof str1 === 'string' && typeof str1 === 'string') { if (typeof val === 'boolen') {
callback(null, str1 + str2); callback(null, val);
} else { } else {
callback('type err'); callback('type err');
} }
} }
let newPromiseObj = util.promisify(aysnFun); (async () => {
newPromiseObj("Hello", 'World').then(res => { const value = await util.promisify(fn);
expect(res).strictEqual('HelloWorld'); expect(value(null, true)).strictEqual(true);
}) })();
}) })
/** /**
...@@ -251,19 +251,19 @@ describe('TextEncoderTest', function () { ...@@ -251,19 +251,19 @@ describe('TextEncoderTest', function () {
* @tc.author: shikai * @tc.author: shikai
*/ */
it('testUtilPromisify_new_005', 0, async function () { it('testUtilPromisify_new_005', 0, async function () {
function aysnFun(str1, str2, callback) { function fn(val, callback) {
if (typeof str1 === 'string' && typeof str1 === 'string') { if (typeof val === 'number') {
callback(null, str1 + str2); callback(null, val);
} else { } else {
callback('type err'); callback('type err');
} }
} }
let newPromiseObj = util.promisify(aysnFun); (async () => {
newPromiseObj([1, 2], 'World').catch(err => { const value = await util.promisify(fn);
expect(err).strictEqual('type err'); expect(value(null, 100)).strictEqual(100);
}) })();
}) })
/** /**
* @tc.name: testUtilPromiseWrapper001 * @tc.name: testUtilPromiseWrapper001
* @tc.desc: Takes a function following the common error-first callback style, * @tc.desc: Takes a function following the common error-first callback style,
...@@ -311,18 +311,6 @@ describe('TextEncoderTest', function () { ...@@ -311,18 +311,6 @@ describe('TextEncoderTest', function () {
* @tc.author: shikai * @tc.author: shikai
*/ */
it('testUtilPromiseWrapper003', 0, async function () { it('testUtilPromiseWrapper003', 0, async function () {
const a = util.promiseWrapper(function() {});
const b = util.promiseWrapper(a);
expect(a).strictEqual(b);
})
/**
* @tc.name: testUtilPromiseWrapper004
* @tc.desc: Takes a function following the common error-first callback style,
taking an callback as the last argument, and return a version that returns promises.
* @tc.author: shikai
*/
it('testUtilPromiseWrapper004', 0, async function () {
let errToThrow; let errToThrow;
const thrower = util.promiseWrapper(function(a, b, c, cb) { const thrower = util.promiseWrapper(function(a, b, c, cb) {
errToThrow = new Error(); errToThrow = new Error();
...@@ -334,12 +322,12 @@ describe('TextEncoderTest', function () { ...@@ -334,12 +322,12 @@ describe('TextEncoderTest', function () {
}) })
/** /**
* @tc.name: testUtilPromiseWrapper005 * @tc.name: testUtilPromiseWrapper004
* @tc.desc: Takes a function following the common error-first callback style, * @tc.desc: Takes a function following the common error-first callback style,
taking an callback as the last argument, and return a version that returns promises. taking an callback as the last argument, and return a version that returns promises.
* @tc.author: shikai * @tc.author: shikai
*/ */
it('testUtilPromiseWrapper005', 0, async function () { it('testUtilPromiseWrapper004', 0, async function () {
const err = new Error(); const err = new Error();
const a = util.promiseWrapper((cb) => cb(err))(); const a = util.promiseWrapper((cb) => cb(err))();
const b = util.promiseWrapper(() => {throw err;})(); const b = util.promiseWrapper(() => {throw err;})();
...@@ -354,12 +342,12 @@ describe('TextEncoderTest', function () { ...@@ -354,12 +342,12 @@ describe('TextEncoderTest', function () {
}) })
/** /**
* @tc.name: testUtilPromiseWrapper006 * @tc.name: testUtilPromiseWrapper005
* @tc.desc: Takes a function following the common error-first callback style, * @tc.desc: Takes a function following the common error-first callback style,
taking an callback as the last argument, and return a version that returns promises. taking an callback as the last argument, and return a version that returns promises.
* @tc.author: shikai * @tc.author: shikai
*/ */
it('testUtilPromiseWrapper006', 0, async function () { it('testUtilPromiseWrapper005', 0, async function () {
const err = new Error('callback with the error.'); const err = new Error('callback with the error.');
const stack = err.stack; const stack = err.stack;
const fn = util.promiseWrapper(function(cb) { const fn = util.promiseWrapper(function(cb) {
...@@ -374,12 +362,12 @@ describe('TextEncoderTest', function () { ...@@ -374,12 +362,12 @@ describe('TextEncoderTest', function () {
}) })
/** /**
* @tc.name: testUtilPromiseWrapper007 * @tc.name: testUtilPromiseWrapper006
* @tc.desc: Takes a function following the common error-first callback style, * @tc.desc: Takes a function following the common error-first callback style,
taking an callback as the last argument, and return a version that returns promises. taking an callback as the last argument, and return a version that returns promises.
* @tc.author: shikai * @tc.author: shikai
*/ */
it('testUtilPromiseWrapper007', 0, async function () { it('testUtilPromiseWrapper006', 0, async function () {
function fn(err, val, callback) { function fn(err, val, callback) {
callback(err, val); callback(err, val);
} }
...@@ -400,7 +388,7 @@ describe('TextEncoderTest', function () { ...@@ -400,7 +388,7 @@ describe('TextEncoderTest', function () {
try { try {
util.callbackWrapper(promiseFn); util.callbackWrapper(promiseFn);
} catch(e) { } catch(e) {
expect(e.message).strictEqual('original is not function'); expect(e.message).assertEqual('original is not function');
} }
}) })
...@@ -415,10 +403,12 @@ describe('TextEncoderTest', function () { ...@@ -415,10 +403,12 @@ describe('TextEncoderTest', function () {
return Promise.resolve('value'); return Promise.resolve('value');
} }
var cb = util.callbackWrapper(promiseFn); var cb = util.callbackWrapper(promiseFn);
cb((err, ret) => { (async () => {
expect(err).strictEqual(null); cb((err, ret) => {
expect(ret).strictEqual('value'); expect(err).assertEqual(null);
}) expect(ret).assertEqual('value');
})
})();
}) })
/** /**
...@@ -432,10 +422,12 @@ describe('TextEncoderTest', function () { ...@@ -432,10 +422,12 @@ describe('TextEncoderTest', function () {
return 42; return 42;
} }
var cb = util.callbackWrapper(promiseFn); var cb = util.callbackWrapper(promiseFn);
cb((err, ret) => { (async () => {
expect(err).strictEqual(null); cb((err, ret) => {
expect(ret).strictEqual(42); expect(err).assertEqual(null);
}) expect(ret).assertEqual(42);
})
})();
}) })
/** /**
...@@ -450,10 +442,12 @@ describe('TextEncoderTest', function () { ...@@ -450,10 +442,12 @@ describe('TextEncoderTest', function () {
return Promise.reject(err); return Promise.reject(err);
} }
var cb = util.callbackWrapper(promiseFn); var cb = util.callbackWrapper(promiseFn);
cb((err, ret) => { (async () => {
expect(err.message).strictEqual('value'); cb((err, ret) => {
expect(ret).strictEqual(undefined); expect(err.message).strictEqual('value');
}) expect(ret).assertEqual(undefined);
})
})();
}) })
/** /**
...@@ -467,10 +461,12 @@ describe('TextEncoderTest', function () { ...@@ -467,10 +461,12 @@ describe('TextEncoderTest', function () {
return a + b; return a + b;
} }
var cb = util.callbackWrapper(promiseFn); var cb = util.callbackWrapper(promiseFn);
cb(1, 2, (err, ret) => { (async () => {
expect(err).strictEqual(null); cb(1, 2, (err, ret) => {
expect(ret).strictEqual(3); expect(err).assertEqual(null);
}) expect(ret).assertEqual(3);
})
})();
}) })
/** /**
...@@ -485,9 +481,11 @@ describe('TextEncoderTest', function () { ...@@ -485,9 +481,11 @@ describe('TextEncoderTest', function () {
} }
var cb = util.callbackWrapper(promiseFn); var cb = util.callbackWrapper(promiseFn);
try { try {
cb([1, 2]) (async () => {
cb([1, 2])
})();
} catch(err) { } catch(err) {
expect(err.message).strictEqual('maybe is not function'); expect(err.message).assertEqual('maybe is not function');
} }
}) })
...@@ -7009,3 +7007,4 @@ describe('TypesTest', function() { ...@@ -7009,3 +7007,4 @@ describe('TypesTest', function() {
expect(result).assertEqual(false); expect(result).assertEqual(false);
}) })
}) })
}
...@@ -7,6 +7,22 @@ ...@@ -7,6 +7,22 @@
{ {
"name": "mainability_description", "name": "mainability_description",
"value": "JS_Empty Ability" "value": "JS_Empty Ability"
},
{
"name": "MainAbility_desc",
"value": "description"
},
{
"name": "MainAbility_label",
"value": "label"
},
{
"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.
先完成此消息的编辑!
想要评论请 注册