Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
c2c28655
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c2c28655
编写于
9月 30, 2022
作者:
Z
zhangjing
提交者:
jiangkaixuan
9月 30, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
web子系统新增用例
Signed-off-by:
N
zhangjing
<
zhangjing403@huawei.com
>
上级
7594c7d4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
142 addition
and
1 deletion
+142
-1
arkui/ace_ets_web_dev/entry/src/main/ets/MainAbility/pages/web.ets
..._ets_web_dev/entry/src/main/ets/MainAbility/pages/web.ets
+91
-0
arkui/ace_ets_web_dev/entry/src/main/ets/test/WebJsunit.test.ets
...ce_ets_web_dev/entry/src/main/ets/test/WebJsunit.test.ets
+51
-1
未找到文件。
arkui/ace_ets_web_dev/entry/src/main/ets/MainAbility/pages/web.ets
浏览文件 @
c2c28655
...
...
@@ -56,6 +56,10 @@ struct Index {
@State mixedSwitch:boolean=false
@State mixedAllSwitch:boolean=false
@State overViewFalseHeight:number=0
@State isAuthFlag:boolean=false
@State conFirmFlag:boolean=false
@State sslErrorFlag:boolean=false
@State clientFlag:boolean=false
onPageShow(){
let valueChangeEvent={
eventId:10,
...
...
@@ -212,6 +216,59 @@ struct Index {
console.info("onBlur==>")
this.controller.requestFocus()
})
.onHttpAuthRequest((event)=>{
console.info("onHttpAuthRequest==>")
if(this.isAuthFlag){
console.info("isAuthFlag==>")
let isHttpAuth=event.handler.isHttpAuthInfoSaved()
Utils.emitEvent(isHttpAuth,192)
this.isAuthFlag=false
}else if(this.conFirmFlag){
console.info("conFirmFlag==>")
let flag=event.handler.confirm("1111","2222")
Utils.emitEvent(flag,194)
this.conFirmFlag=false
}else{
console.info("cancel==>")
event.handler.cancel()
}
return false
})
.onSslErrorEventReceive((event)=>{
console.info("onSslErrorEventReceive==>")
if(this.sslErrorFlag){
event.handler.handleCancel()
setTimeout(()=>{
let sslError=event.error
Utils.emitEvent(sslError,198)
},3000)
this.sslErrorFlag=false
}else{
event.handler.handleConfirm()
setTimeout(()=>{
let webTitle=this.controller.getTitle()
Utils.emitEvent(webTitle,200)
},3000)
}
})
.onClientAuthenticationRequest((event)=>{
console.info("onClientAuthenticationRequest==>")
if(this.clientFlag){
event.handler.cancel()
setTimeout(()=>{
let webTitle=this.controller.getTitle()
Utils.emitEvent(webTitle,202)
},3000)
event.handler.confirm("/system/etc/user.pk8", "/system/etc/chain-user.pem")
this.clientFlag=false
}else{
event.handler.ignore()
setTimeout(()=>{
let webTitle=this.controller.getTitle()
Utils.emitEvent(webTitle,204)
},3000)
}
})
TextInput({placeholder:"inputs your words"})
.key('textInput')
.type(InputType.Normal)
...
...
@@ -789,6 +846,40 @@ struct Index {
Utils.emitEvent(getCookieManagerCalled,89)
break;
}
case "emitIsHttpAuthInfoSaved":{
this.isAuthFlag=true;
await Utils.sleep(1000)
this.controller.loadUrl({url:"http://httpbin.org/basic-auth/1111/2222"})
break;
}
case "emitHttpAuthRequestConfirm":{
this.conFirmFlag=true;
await Utils.sleep(1000)
this.controller.loadUrl({url:"http://httpbin.org/basic-auth/1111/2222"})
break;
}
case "emitHttpAuthRequestCancel":{
this.conFirmFlag=false;
await Utils.sleep(1000)
this.controller.loadUrl({url:"http://httpbin.org/basic-auth/1111/2222"})
setTimeout(()=>{
let webTitle=this.controller.getTitle()
Utils.emitEvent(webTitle,196)
},3000)
break;
}
case "emitSslCancel":{
this.sslErrorFlag=true
await Utils.sleep(1000)
this.controller.loadUrl({url:"https://expired.badssl.com/"})
break;
}
case "emitSslConfirm":{
this.sslErrorFlag=false
await Utils.sleep(1000)
this.controller.loadUrl({url:"https://expired.badssl.com/"})
break;
}
default:
console.info("can not match case")
}
...
...
arkui/ace_ets_web_dev/entry/src/main/ets/test/WebJsunit.test.ets
浏览文件 @
c2c28655
...
...
@@ -688,9 +688,59 @@ export default function webJsunit() {
*tc.desic Gets network cookie manager
*/
it('getCookieManager',0,async function(done){
emitKey="emit
GetCookieManager
";
emitKey="emit
IsHttpAuthInfoSaved
";
Utils.registerEvent("getCookieManager",true,89,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_066
*tc.name isHttpAuthInfoSaved
*tc.desic isHttpAuthInfoSaved
*/
it('isHttpAuthInfoSaved',0,async function(done){
emitKey="emitHttpAuthRequestConfirm";
Utils.registerEvent("isHttpAuthInfoSaved",false,192,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_067
*tc.name httpAuthRequestConfirm
*tc.desic confirm
*/
it('httpAuthRequestConfirm',0,async function(done){
emitKey="emitHttpAuthRequestCancel";
Utils.registerEvent("httpAuthRequestConfirm",true,194,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_068
*tc.name httpAuthRequestCancel
*tc.desic cancel
*/
it('httpAuthRequestCancel',0,async function(done){
emitKey="emitSslCancel";
Utils.registerContainEvent("httpAuthRequestCancel","httpbin",196,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_069
*tc.name sslCancel
*tc.desic cancel
*/
it('sslCancel',0,async function(done){
emitKey="emitSslConfirm";
Utils.registerEvent("sslCancel",2,198,done);
sendEventByKey('webcomponent',10,'');
})
/*
*tc.number SUB_ACE_BASIC_ETS_API_070
*tc.name sslConfirm
*tc.desic confirm
*/
it('sslConfirm',0,async function(done){
emitKey="emitSslConfirm";
Utils.registerContainEvent("sslConfirm","expired",200,done);
sendEventByKey('webcomponent',10,'');
})
})
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录