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

!6492 适配迁移后接口与错误码需求,新增xts用例

Merge pull request !6492 from 张馨月/master
......@@ -27,6 +27,7 @@ group("arkui") {
"ace_ets_test:ActsAceEtsTest",
"ace_ets_third_test:ActsAceEtsThirdTest",
"ace_ets_web_dev:ActsAceWebDevTest",
"ace_ets_web_dev_three:ActsAceWebDevThreeTest",
"ace_ets_web_dev_two:ActsAceWebDevTwoTest",
"ace_ets_xcomponent:ActsAceXComponentEtsTest",
"ace_js_attribute_api:ActsAceJsApiTest",
......
{
"app": {
"bundleName": "com.open.harmony.acewebthreetest",
"vendor": "huawei",
"versionCode": 1000000,
"versionName": "1.0.0",
"debug": false,
"icon": "$media:icon",
"label": "$string:app_name",
"description": "$string:description_application",
"distributedNotificationEnabled": true,
"keepAlive": true,
"singleUser": true,
"minAPIVersion": 9,
"targetAPIVersion": 9,
"car": {
"apiCompatibleVersion": 9,
"singleUser": false
}
}
}
\ No newline at end of file
{
"string":[
{
"name":"app_name",
"value":"ohosProject"
}
]
}
\ 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("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("ActsAceWebDevThreeTest") {
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":ace_ets_web_dev_js_assets",
":ace_ets_web_dev_resources",
]
ets2abc = true
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsAceWebDevThreeTest"
}
ohos_app_scope("ace_ets_web_dev_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("ace_ets_web_dev_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("ace_ets_web_dev_resources") {
sources = [ "entry/src/main/resources" ]
deps = [ ":ace_ets_web_dev_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
{
"description": "Configuration for hjunit demo Tests",
"driver": {
"type": "OHJSUnitTest",
"test-timeout": "600000",
"bundle-name": "com.open.harmony.acewebthreetest",
"module-name": "phone",
"shell-timeout": "600000",
"testcase-timeout": 70000
},
"kits": [{
"test-file-name": [
"ActsAceWebDevThreeTest.hap"
],
"type": "AppInstallKit",
"cleanup-apps": true
}]
}
\ No newline at end of file
import AbilityStage from "@ohos.application.AbilityStage"
export default class MyAbilityStage extends AbilityStage {
onCreate() {
console.log("[Demo] MyAbilityStage onCreate")
globalThis.stageOnCreateRun = 1;
globalThis.stageContext = this.context;
}
}
import Ability from '@ohos.application.Ability'
export default class MainAbility extends Ability {
onCreate(want,launchParam){
// Ability is creating, initialize resources for this ability
console.log("[Demo] MainAbility onCreate")
globalThis.abilityWant = want;
}
onDestroy() {
// Ability is destroying, release resources for this ability
console.log("[Demo] MainAbility onDestroy")
}
onWindowStageCreate(windowStage) {
// Main window is created, set main page for this ability
console.log("[Demo] MainAbility onWindowStageCreate windowStage="+ windowStage)
globalThis.windowStage = windowStage
globalThis.abilityContext = this.context
windowStage.setUIContent(this.context, "MainAbility/pages/web", null)
}
onWindowStageDestroy() {
//Main window is destroyed, release UI related resources
console.log("[Demo] MainAbility onWindowStageDestroy")
}
onForeground() {
// Ability has brought to foreground
console.log("[Demo] MainAbility onForeground")
}
onBackground() {
// Ability has back to background
console.log("[Demo] MainAbility onBackground")
}
};
/*
* 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 events_emitter from '@ohos.events.emitter';
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry';
import { Hypium } from '@ohos/hypium';
import testsuite from '../../test/List.test';
import Utils from '../../test/Utils';
import web_webview from '@ohos.web.webview';
let loadedUrl;
@Entry
@Component
struct Index {
controller: web_webview.WebviewController = new web_webview.WebviewController();
controllerTwo: web_webview.WebviewController = new web_webview.WebviewController();
responseweb: WebResourceResponse = new WebResourceResponse()
@State str:string="emitLoadUrl"
@State text:boolean=false
@State num:number=0
testObj = {
testOne: (data) => {
Utils.emitEvent(data,13)
return data
},
toString: () => {
console.log('Web Component toString');
}
}
onPageShow(){
let valueChangeEvent={
eventId:100,
priority:events_emitter.EventPriority.LOW
}
events_emitter.on(valueChangeEvent,this.valueChangeCallBack)
}
private valueChangeCallBack=(eventData)=>{
console.info("web page valueChangeCallBack");
if(eventData != null){
console.info("valueChangeCallBack:"+ JSON.stringify(eventData));
if(eventData.data.ACTION != null){
this.str = eventData.data.ACTION;
}
}
}
aboutToAppear(){
let abilityDelegator: any
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
let abilityDelegatorArguments: any
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
}
build(){
Column(){
Row(){
Button("web click").key('webcomponent').onClick(async ()=>{
console.info("key==>"+this.str)
switch(this.str){
case "emitLoadUrl":{
try {
setTimeout(()=>{
this.controller.loadUrl('www.baidu.com');
setTimeout(()=>{
let title = this.controller.getTitle();
Utils.emitEvent(title,1)
},5000)
},3000)
} catch (error) {
console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitLoadData":{
try {
this.controller.loadData(
"<html><head><title>baidu</title></head><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
"text/html",
"UTF-8"
);
setTimeout(()=>{
let title1 = this.controller.getTitle();
Utils.emitEvent(title1,2)
},3000)
} catch (error) {
console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitBackward":{
try {
this.controller.backward();
setTimeout(()=>{
let title2 = this.controller.getTitle();
Utils.emitEvent(title2,3)
},3000)
} catch (error) {
console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitForward":{
try {
this.controller.forward();
setTimeout(()=>{
let title3 = this.controller.getTitle();
Utils.emitEvent(title3,4)
},3000)
} catch (error) {
console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitAccessBackward":{
try {
let result0 = this.controller.accessBackward();
setTimeout(()=>{
Utils.emitEvent(result0,5)
},3000)
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitAccessForward":{
try {
let result1 = this.controller.accessForward();
setTimeout(()=>{
Utils.emitEvent(result1,6)
},3000)
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitonInactive":{
try {
this.controller.onInactive();
setTimeout(()=>{
setTimeout(()=>{
this.controller.loadUrl("file:///data/storage/el1/bundle/phone/resources/rawfile/index.html")
},3000)
var title4 = this.controller.getTitle();
Utils.emitEvent(title4,7)
},3000)
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitonActive":{
try {
this.controller.onInactive();
setTimeout(()=>{
var title5 = this.controller.getTitle();
Utils.emitEvent(title5,8)
},3000)
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitRefresh":{
try {
this.controller.refresh();
setTimeout(()=>{
var title6 = this.controller.getTitle();
Utils.emitEvent(title6,9)
},3000)
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitAccessStep":{
try {
let result2 = this.controller.accessStep(-2);
setTimeout(()=>{
Utils.emitEvent(result2,10)
},3000)
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitClearHistory":{
try {
this.controller.clearHistory()
setTimeout(()=>{
let result3 = this.controller.accessStep(-2);
setTimeout(()=>{
Utils.emitEvent(result3,11)
},3000)
},3000)
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitGetHitTestValue":{
try {
let hitValue = this.controller.getHitTestValue();
console.log("hitType: " + hitValue.type);
console.log("extra: " + hitValue.extra);
Utils.emitEvent("hitValue",12)
} catch (error) {
console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitRegisterJavaScriptProxy":{
try {
this.controller.registerJavaScriptProxy(this.testObj, "objName", ["testOne", "toString"]);
setTimeout(()=>{
this.controller.refresh()
setTimeout(()=>{
this.controller.runJavaScript('htmlTest()',(error,result4)=>{
if (error) {
console.info(`run JavaScript error: ` + JSON.stringify(error))
return;
}
if (result4) {
console.info('result:' + result4)
}
})
},3000)
},3000)
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitDeleteJavaScriptRegister":{
try {
this.controller.deleteJavaScriptRegister("objName");
this.controller.deleteJavaScriptRegister("objName");
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,14)
}
break;
}
case "emitZoom":{
try {
this.controller.zoom(1);
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,15)
}
break;
}
case "emitSearchAllAsync":{
try {
this.controller.loadUrl("file:///data/storage/el1/bundle/phone/resources/rawfile/index.html")
setTimeout(()=>{
this.controller.searchAllAsync("首页");
},3000)
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitClearMatches":{
try {
this.controllerTwo.clearMatches();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,17)
}
break;
}
case "emitSearchNext":{
try {
this.controllerTwo.searchNext(true);
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,18)
}
break;
}
case "emitClearSslCache":{
try {
this.controllerTwo.clearSslCache();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,19)
}
break;
}
case "emitClearClientAuthenticationCache":{
try {
this.controllerTwo.clearClientAuthenticationCache();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,20)
}
break;
}
case "emitStop":{
try {
this.controllerTwo.stop();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,21)
}
break;
}
case "emitRequestFocus":{
try {
this.controllerTwo.requestFocus();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,22)
}
break;
}
case "emitZoomIn":{
try {
this.controllerTwo.zoomIn();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,23)
}
break;
}
case "emitZoomOut":{
try {
this.controllerTwo.zoomOut();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,24)
}
break;
}
case "emitGetWebId":{
try {
this.controllerTwo.requestFocus();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,25)
}
break;
}
case "emitGetUserAgent":{
try {
this.controllerTwo.requestFocus();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,26)
}
break;
}
case "emitGetPageHeigth":{
try {
this.controllerTwo.getPageHeight();
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,27)
}
break;
}
case "emitBackOrForward":{
try {
this.controllerTwo.backOrForward(-2);
} catch (error) {
console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,28)
}
break;
}
case "emitStoreWebArchive":{
try {
this.controller.storeWebArchive("/data/storage/el2/base/", true, (error, filename) => {
if (error) {
console.info(`save web archive error: ` + JSON.stringify(error))
return;
}
if (filename != null) {
Utils.emitEvent(filename,29)
}
});
} catch (error) {
console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
}
break;
}
case "emitGetUrl":{
try {
let url = this.controllerTwo.getUrl();
console.log("url: " + url);
} catch (error) {
console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
Utils.emitEvent(`${error.code}`,30)
}
break;
}
default:
console.info("can not match case")
}
})
}
Web({src:"www.example.com",controller:this.controller})
.webDebuggingAccess(true)
.mediaPlayGestureAccess(true)
.javaScriptAccess(true)
.zoomAccess(this.text)
.onSearchResultReceive(ret=>{
var searchResult = ret.activeMatchOrdinal.toString() +
ret.numberOfMatches.toString()
console.log("searchResult" + searchResult)
setTimeout(()=>{
Utils.emitEvent(searchResult,16)
},3000)
})
}
}
}
\ 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 it',
'-s level', '-s testType', '-s size', '-s timeout',
'-s dryRun'
])
let targetParams = '';
for (const key in parameters) {
if (keySet.has(key)) {
targetParams = `${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 ")
}
async onRun() {
console.log('OpenHarmonyTestRunner onRun run')
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var testAbilityName = abilityDelegatorArguments.bundleName + '.MainAbility'
let lMonitor = {
abilityName: testAbilityName,
onAbilityCreate: onAbilityCreateCallback,
};
abilityDelegator.addAbilityMonitor(lMonitor, addAbilityMonitorCallback)
var cmd = 'aa start -d 0 -a com.example.myapplication.MainAbility' + ' -b ' + abilityDelegatorArguments.bundleName
cmd += ' '+translateParamsToString(abilityDelegatorArguments.parameters)
var debug = abilityDelegatorArguments.parameters["-D"]
if (debug == 'true')
{
cmd += ' -D'
}
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 end')
}
};
\ 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 webJsunit from './WebJsunit.test'
export default function testsuite() {
webJsunit()
}
\ 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 events_emitter from '@ohos.events.emitter';
import { expect } from "@ohos/hypium";
export default class Utils {
static sleep(time){
return new Promise((resolve,reject)=>{
setTimeout(()=>{
resolve("ok")
},time)
}).then(()=>{
console.info(`sleep ${time} over...`)
})
}
static registerEvent(testCaseName,expectedValue,eventId,done){
console.info(`[${testCaseName}] START`);
try{
let callBack=(backData)=>{
console.info(`${testCaseName} get result is:`+JSON.stringify(backData));
expect(backData.data.ACTION).assertEqual(expectedValue);
console.info(`[${testCaseName}] END`);
done()
}
let innerEvent = {
eventId:eventId,
priority:events_emitter.EventPriority.LOW
}
events_emitter.on(innerEvent,callBack)
}catch(err){
console.info(`[${testCaseName}] err:`+JSON.stringify(err));
}
}
static emitEvent(actualValue,eventId){
try {
let backData = {
data: {
"ACTION": actualValue
}
}
let backEvent = {
eventId:eventId,
priority:events_emitter.EventPriority.LOW
}
console.info("webFlag start to emit action state");
events_emitter.emit(backEvent, backData);
} catch (err) {
console.info("webFlag emit action state err: " + JSON.stringify(err));
}
}
static registerEventTwo(testCaseName,eventId,done){
console.info(`[${testCaseName}] START`);
try{
let callBack=(backData)=>{
console.info(`${testCaseName} get result is:`+JSON.stringify(backData));
expect(backData.data.actualValue).assertLarger(backData.data.expectedValue-100);
expect(backData.data.actualValue).assertLess(backData.data.expectedValue-(-100));
console.info(`[${testCaseName}] END`);
done()
}
let innerEvent = {
eventId:eventId,
priority:events_emitter.EventPriority.LOW
}
events_emitter.on(innerEvent,callBack)
}catch(err){
console.info(`[${testCaseName}] err:`+JSON.stringify(err));
}
}
static emitEventTwo(expectedValue,actualValue,eventId){
try {
let backData = {
data: {
"expectedValue":expectedValue,
"actualValue":actualValue
}
}
let backEvent = {
eventId:eventId,
priority:events_emitter.EventPriority.LOW
}
console.info("webFlag start to emit action state");
events_emitter.emit(backEvent, backData);
} catch (err) {
console.info("webFlag emit action state err: " + JSON.stringify(err));
}
}
static registerContainEvent(testCaseName,expectedValue,eventId,done){
console.info(`[${testCaseName}] START`);
try{
let callBack=(backData)=>{
console.info(`${testCaseName} get result is:`+JSON.stringify(backData));
expect(backData.data.ACTION).assertContain(expectedValue);
console.info(`[${testCaseName}] END`);
done()
}
let innerEvent = {
eventId:eventId,
priority:events_emitter.EventPriority.LOW
}
events_emitter.on(innerEvent,callBack)
}catch(err){
console.info(`[${testCaseName}] err:`+JSON.stringify(err));
}
}
static commitKey(emitKey){
try {
let backData = {
data: {
"ACTION": emitKey
}
}
let backEvent = {
eventId:10,
priority:events_emitter.EventPriority.LOW
}
console.info("start send emitKey");
events_emitter.emit(backEvent, backData);
} catch (err) {
console.info("emit emitKey err: " + JSON.stringify(err));
}
}
}
/*
* 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.
*/
// @ts-nocheck
import { describe, beforeEach, afterEach, it, expect } from "@ohos/hypium";
import events_emitter from '@ohos.events.emitter';
import Utils from './Utils.ets';
let emitKey = "emitLoadUrl";
export default function webJsunit() {
describe('ActsAceWebDevTest', function () {
beforeEach(async function (done) {
await Utils.sleep(2000);
console.info("web beforeEach start");
done();
})
afterEach(async function (done) {
console.info("web afterEach start:"+emitKey);
try {
let backData = {
data: {
"ACTION": emitKey
}
}
let backEvent = {
eventId:100,
priority:events_emitter.EventPriority.LOW
}
console.info("start send emitKey");
events_emitter.emit(backEvent, backData);
} catch (err) {
console.info("emit emitKey err: " + JSON.stringify(err));
}
await Utils.sleep(2000);
done();
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_001
*tc.name LoadUrl
*tc.desic load contents from url
*/
it('LoadUrl',0,async function(done){
emitKey="emitLoadData";
Utils.registerContainEvent("LoadUrl","百度一下,你就知道",1,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_002
*tc.name LoadData
*tc.desic load contents from data
*/
it('LoadData',0,async function(done){
emitKey="emitBackward";
Utils.registerEvent("LoadData","baidu",2,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_003
*tc.name Backward
*tc.desic back to the old page
*/
it('Backward',0,async function(done){
emitKey="emitForward";
Utils.registerEvent("Backward","百度一下,你就知道",3,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_004
*tc.name Forward
*tc.desic go to the new page
*/
it('Forward',0,async function(done){
emitKey="emitAccessBackward";
Utils.registerEvent("Forward","baidu",4,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_005
*tc.name AccessBackward
*tc.desic return whether there is a old page
*/
it('AccessBackward',0,async function(done){
emitKey="emitAccessForward";
Utils.registerEvent("AccessBackward",true,5,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_006
*tc.name AccessForward
*tc.desic return whether there is a new page
*/
it('AccessForward',0,async function(done){
emitKey="emitonInactive";
Utils.registerEvent("AccessForward",false,6,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_007
*tc.name onInactive
*tc.desic make web component inactive
*/
it('onInactive',0,async function(done){
emitKey="emitonActive";
Utils.registerEvent("onInactive","baidu",7,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_008
*tc.name make web component active
*tc.desic return whether the third party cookie is allowed
*/
it('onActive',0,async function(done){
emitKey="emitRefresh";
Utils.registerEvent("onActive","index",8,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_009
*tc.name Refresh
*tc.desic refresh current page
*/
it('Refresh',0,async function(done){
emitKey="emitAccessStep";
Utils.registerEvent("Refresh","index",9,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_010
*tc.name AccessStep
*tc.desic return whether steps can be operated
*/
it('AccessStep',0,async function(done){
emitKey="emitClearHistory";
Utils.registerEvent("AccessStep",true,10,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_011
*tc.name ClearHistory
*tc.desic clear the browsing history
*/
it('ClearHistory',0,async function(done){
emitKey="emitGetHitTestValue";
Utils.registerEvent("ClearHistory",false,11,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_012
*tc.name GetHitTestValue
*tc.desic get the type of th clicked component
*/
it('GetHitTestValue',0,async function(done){
emitKey="emitRegisterJavaScriptProxy";
Utils.registerEvent("GetHitTestValue","hitValue",12,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_013
*tc.name RegisterJavaScriptProxy
*tc.desic register proxy with a specific name
*/
it('RegisterJavaScriptProxy',0,async function(done){
emitKey="emitDeleteJavaScriptRegister";
Utils.registerEvent("RegisterJavaScriptProxy",'Web',13,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_014
*tc.name DeleteJavaScriptRegister
*tc.desic delet specific proxy
*/
it('DeleteJavaScriptRegister',0,async function(done){
emitKey="emitZoom";
Utils.registerEvent("DeleteJavaScriptRegister","17100008",14,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_015
*tc.name Zoom
*tc.desic zoom the current page
*/
it('Zoom',0,async function(done){
emitKey="emitSearchAllAsync";
Utils.registerEvent("Zoom","17100004",15,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_016
*tc.name SearchAllAsync
*tc.desic zoom the current page
*/
it('SearchAllAsync',0,async function(done){
emitKey="emitClearMatches";
Utils.registerEvent("SearchAllAsync","01",16,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_017
*tc.name ClearMatches
*tc.desic zoom the current page
*/
it('ClearMatches',0,async function(done){
emitKey="emitSearchNext";
Utils.registerEvent("ClearMatches","17100001",17,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_018
*tc.name SearchNext
*tc.desic zoom the current page
*/
it('SearchNext',0,async function(done){
emitKey="emitClearSslCache";
Utils.registerEvent("SearchNext","17100001",18,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_019
*tc.name ClearSslCache
*tc.desic zoom the current page
*/
it('ClearSslCache',0,async function(done){
emitKey="emitClearClientAuthenticationCache";
Utils.registerEvent("ClearSslCache","17100001",19,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_020
*tc.name ClearClientAuthenticationCache
*tc.desic zoom the current page
*/
it('ClearClientAuthenticationCache',0,async function(done){
emitKey="emitStop";
Utils.registerEvent("ClearClientAuthenticationCache","17100001",20,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_021
*tc.name Stop
*tc.desic zoom the current page
*/
it('Stop',0,async function(done){
emitKey="emitRequestFocus";
Utils.registerEvent("Stop","17100001",21,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_022
*tc.name RequestFocus
*tc.desic zoom the current page
*/
it('RequestFocus',0,async function(done){
emitKey="emitZoomIn";
Utils.registerEvent("RequestFocus","17100001",22,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_023
*tc.name ZoomIn
*tc.desic zoom the current page
*/
it('ZoomIn',0,async function(done){
emitKey="emitZoomOut";
Utils.registerEvent("ZoomIn","17100001",23,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_024
*tc.name ZoomOut
*tc.desic zoom the current page
*/
it('ZoomOut',0,async function(done){
emitKey="emitGetWebId";
Utils.registerEvent("ZoomOut","17100001",24,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_025
*tc.name GetWebId
*tc.desic zoom the current page
*/
it('GetWebId',0,async function(done){
emitKey="emitGetUserAgent";
Utils.registerEvent("GetWebId","17100001",25,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_026
*tc.name GetUserAgent
*tc.desic zoom the current page
*/
it('GetUserAgent',0,async function(done){
emitKey="emitGetPageHeigth";
Utils.registerEvent("GetUserAgent","17100001",26,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_027
*tc.name GetPageHeigth
*tc.desic zoom the current page
*/
it('GetPageHeigth',0,async function(done){
emitKey="emitBackOrForward";
Utils.registerEvent("GetPageHeigth","17100001",27,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_028
*tc.name BackOrForward
*tc.desic zoom the current page
*/
it('BackOrForward',0,async function(done){
emitKey="emitStoreWebArchive";
Utils.registerEvent("BackOrForward","17100001",28,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_029
*tc.name StoreWebArchive
*tc.desic Save current page
*/
it('StoreWebArchive',0,async function(done){
emitKey="emitGetUrl";
Utils.registerContainEvent("StoreWebArchive","/data/storage/el2/base/",29,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_030
*tc.name GetUrl
*tc.desic Save current page
*/
it('GetUrl',0,async function(done){
emitKey="emitGetUrl";
Utils.registerContainEvent("GetUrl","17100001",30,done);
sendEventByKey('webcomponent',10,'');
})
})
}
\ No newline at end of file
{
"module": {
"name": "phone",
"type": "entry",
"srcEntrance": "./ets/Application/AbilityStage.ts",
"description": "$string:phone_entry_dsc",
"mainElement": "MainAbility",
"deviceTypes": [
"phone"
],
"deliveryWithInstall": true,
"installationFree": false,
"uiSyntax": "ets",
"pages": "$profile:main_pages",
"abilities": [{
"name": "com.example.myapplication.MainAbility",
"srcEntrance": "./ets/MainAbility/MainAbility.ts",
"description": "$string:phone_entry_main",
"icon": "$media:icon",
"label": "$string:entry_label",
"visible": true,
"orientation": "portrait",
"skills": [{
"actions": [
"action.system.home"
],
"entities": [
"entity.system.home"
]
}]
}],
"requestPermissions": [
{
"name": "ohos.permission.LOCATION"
},
{
"name": "ohos.permission.INTERNET"
}
]
}
}
{
"string": [
{
"name": "phone_entry_dsc",
"value": "i am an entry for phone"
},
{
"name": "phone_entry_main",
"value": "the phone entry ability"
},
{
"name": "entry_label",
"value": "ActsContextTest"
},
{
"name": "form_description",
"value": "my form"
},
{
"name": "serviceability_description",
"value": "my whether"
},
{
"name": "description_application",
"value": "demo for test"
},
{
"name": "app_name",
"value": "Demo"
}
]
}
{
"src": [
"MainAbility/pages/web"
]
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<body>
<div id="pageHeight"></div>
<p style="background-color:green;font-family:arial;color:red;font-size:300px;text-align:center"> <a href="http://www.w3school.com.cn">This is a link</a></p>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>index</title>
<style>
#pageHeight{
height:1300px
}
</style>
</head>
<body>
<div id="container">首页</div>
<div id="pageHeight"></div>
<a href="file:///data/storage/el1/bundle/phone/resources/rawfile/second.html" id="fileAccess">打开rawfile文件</a>
<img src="file:///data/storage/el1/bundle/phone/resources/rawfile/icon.png" alt="icon" id="imgs">
</body>
<script>
let ele=document.getElementById("imgs");
let loadImage;
ele.onload=function(){
loadImage="load complete"
}
function getUserAgent(){
return navigator.userAgent
}
function test(){
backToEts.test("backToEts")
}
function testRunJavaScript(){
return "testRunJavaScript"
}
function getPageHeight(){
let height=document.body.scrollHeight
return height
}
function proxy(){
objName.register("backToEts")
}
function registerTest(){
let str=objName.register();
console.log(str);
return str
}
function jsAccess(){
console.log("web111")
}
function consoleTest(){
console.log("console test")
}
function alertTest(){
alert('alert test')
}
function confirmTest(){
confirm("confirm test")
}
function getImgResult(){
return loadImage
}
function toPrompt(){
let result=prompt("age","20");
console.log("result:"+result)
}
function openRawFile(){
document.getElementById("fileAccess").click()
}
function htmlTest(){
let str = objName.testOne('Web')
return str
}
</script>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>second</title>
</head>
<body>
<div style="height: 1300px;background-color: #999999;">second pages</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<script type="text/javascript">
var db = openDatabase('mydb', '1.0', 'Test DB', 2 * 1024 * 1024);
var msg;
db.transaction(function (tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS LOGS (id unique, log)');
tx.executeSql('INSERT INTO LOGS (id, log) VALUES (1, "W3Cschool教程")');
tx.executeSql('INSERT INTO LOGS (id, log) VALUES (2, "www.w3cschool.cn")');
msg = '<p>数据表已创建,且插入了两条数据。</p>';
document.querySelector('#status').innerHTML = msg;
});
db.transaction(function (tx) {
tx.executeSql('SELECT * FROM LOGS', [], function (tx, results) {
var len = results.rows.length, i;
msg = "<p>查询记录条数: " + len + "</p>";
document.querySelector('#status').innerHTML += msg;
for (i = 0; i < len; i++){
msg = "<p><b>" + results.rows.item(i).log + "</b></p>";
document.querySelector('#status').innerHTML += msg;
}
}, null);
});
</script>
</head>
<body>
<div id="status" name="status">状态信息</div>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册