Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
291cb540
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
291cb540
编写于
11月 30, 2022
作者:
O
openharmony_ci
提交者:
Gitee
11月 30, 2022
浏览文件
操作
浏览文件
下载
差异文件
!6726 create 接口windowType为TYPE_APP时给窗口设置大小(400,400)
Merge pull request !6726 from 姚翠/master
上级
622cd4ee
a52b1eb8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
112 addition
and
77 deletion
+112
-77
graphic/windowstandard/src/main/js/test/window.test.js
graphic/windowstandard/src/main/js/test/window.test.js
+112
-77
未找到文件。
graphic/windowstandard/src/main/js/test/window.test.js
浏览文件 @
291cb540
...
...
@@ -1012,33 +1012,41 @@ describe('window_test', function () {
* @tc.name Test isShowing_Test_001.
* @tc.desc To verify the function of obtaining the display status when a window is hidden and then displayed.
*/
it
(
'
isShowing_Test_001
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
windowTest IsShowingTest1 begin
'
);
it
(
'
isShowing_Test_001
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
windowTest IsShowingTest1 begin
---resetSize
'
);
window
.
create
(
'
subWindow1
'
,
window
.
WindowType
.
TYPE_APP
).
then
(
wnd
=>
{
expect
(
wnd
!=
null
).
assertTrue
();
wnd
.
isShowing
().
then
(
res
=>
{
console
.
log
(
'
windowTest IsShowingTest1 wnd.isShowing data:
'
+
res
);
expect
(
!
res
).
assertTrue
();
wnd
.
show
().
then
(()
=>
{
wnd
.
isShowing
().
then
(
res
=>
{
expect
(
res
).
assertTrue
();
wnd
.
destroy
();
done
();
console
.
log
(
'
IsShowingTest1 wnd.resetSize(400, 400) begin
'
);
wnd
.
resetSize
(
400
,
400
).
then
(()
=>
{
console
.
log
(
'
windowTest IsShowingTest1 wnd.resetSize(400, 400) success
'
);
wnd
.
isShowing
().
then
(
res
=>
{
console
.
log
(
'
windowTest IsShowingTest1 wnd.isShowing data:
'
+
res
);
expect
(
!
res
).
assertTrue
();
wnd
.
show
().
then
(()
=>
{
wnd
.
isShowing
().
then
(
res
=>
{
expect
(
res
).
assertTrue
();
wnd
.
destroy
();
done
();
},
(
err
)
=>
{
console
.
log
(
'
windowTest IsShowingTest1 wnd.isShowing failed, err :
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
})
},
(
err
)
=>
{
console
.
log
(
'
windowTest IsShowingTest1 wnd.
isShowing
failed, err :
'
+
JSON
.
stringify
(
err
));
console
.
log
(
'
windowTest IsShowingTest1 wnd.
show
failed, err :
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
})
},
(
err
)
=>
{
console
.
log
(
'
windowTest IsShowingTest1 wnd.
show
failed, err :
'
+
JSON
.
stringify
(
err
));
console
.
log
(
'
windowTest IsShowingTest1 wnd.
isShowing
failed, err :
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
})
},
(
err
)
=>
{
console
.
log
(
'
windowTest IsShowingTest1 wnd.isShowing failed, err :
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
},
(
err_resetSize
)
=>
{
console
.
log
(
'
windowTest IsShowingTest1 wnd.resetSize failed, err :
'
+
JSON
.
stringify
(
err_resetSize
));
})
})
})
...
...
@@ -1056,34 +1064,40 @@ describe('window_test', function () {
done
();
}
else
{
expect
(
data
!=
null
).
assertTrue
();
data
.
isShowing
((
err
,
res1
)
=>
{
if
(
err
.
code
)
{
console
.
log
(
'
windowTest IsShowingTest2 data.isShowing fail err
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
else
{
expect
(
!
res1
).
assertTrue
();
data
.
show
(()
=>
{
if
(
err
.
code
)
{
console
.
log
(
'
windowTest IsShowingTest2 data.show fail err
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
else
{
data
.
isShowing
((
err
,
res2
)
=>
{
if
(
err
.
code
)
{
console
.
log
(
'
windowTest IsShowingTest2 data.show fail err
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
else
{
expect
(
res2
).
assertTrue
();
data
.
destroy
();
done
();
}
})
}
})
}
data
.
resetSize
(
400
,
400
).
then
(()
=>
{
console
.
log
(
'
windowTest IsShowingTest2 wnd.resetSize(400, 400) success
'
);
data
.
isShowing
((
err
,
res1
)
=>
{
if
(
err
.
code
)
{
console
.
log
(
'
windowTest IsShowingTest2 data.isShowing fail err
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
else
{
expect
(
!
res1
).
assertTrue
();
data
.
show
(()
=>
{
if
(
err
.
code
)
{
console
.
log
(
'
windowTest IsShowingTest2 data.show fail err
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
else
{
data
.
isShowing
((
err
,
res2
)
=>
{
if
(
err
.
code
)
{
console
.
log
(
'
windowTest IsShowingTest2 data.show fail err
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
else
{
expect
(
res2
).
assertTrue
();
data
.
destroy
();
done
();
}
})
}
})
}
})
},
(
err_resetSize
)
=>
{
console
.
log
(
'
windowTest IsShowingTest2 wnd.resetSize failed, err :
'
+
JSON
.
stringify
(
err_resetSize
));
})
}
})
})
...
...
@@ -1236,7 +1250,13 @@ describe('window_test', function () {
window
.
create
(
'
subWindow3
'
,
window
.
WindowType
.
TYPE_APP
).
then
(
wnd
=>
{
console
.
log
(
'
windowTest CreateTest1 create success wnd
'
+
wnd
);
expect
(
wnd
!=
null
).
assertTrue
();
done
();
wnd
.
resetSize
(
400
,
400
).
then
(()
=>
{
console
.
log
(
'
windowTest resetSize wnd.resetSize(400, 400) success
'
);
done
();
},
(
err_resetSize
)
=>
{
console
.
log
(
'
windowTest resetSize wnd.resetSize failed, err :
'
+
JSON
.
stringify
(
err_resetSize
));
})
},
(
err
)
=>
{
console
.
log
(
'
windowTest CreateTest1 create failed, err :
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
...
...
@@ -1259,7 +1279,12 @@ describe('window_test', function () {
}
else
{
expect
(
data
!=
null
).
assertTrue
();
console
.
log
(
'
windowTest CreateTest2 callback create success data
'
+
data
);
done
();
data
.
resetSize
(
400
,
400
).
then
(()
=>
{
console
.
log
(
'
windowTest resetSize wnd.resetSize(400, 400) success
'
);
done
();
},
(
err_resetSize
)
=>
{
console
.
log
(
'
windowTest resetSize wnd.resetSize failed, err :
'
+
JSON
.
stringify
(
err_resetSize
));
})
}
})
})
...
...
@@ -1274,29 +1299,33 @@ describe('window_test', function () {
window
.
create
(
'
subWindow5
'
,
window
.
WindowType
.
TYPE_APP
).
then
(
wnd
=>
{
console
.
log
(
'
windowTest DestroyTest1 create success wnd
'
+
wnd
);
expect
(
wnd
!=
null
).
assertTrue
();
wnd
.
destroy
().
then
(()
=>
{
window
.
find
(
'
subWindow5
'
).
then
((
data
)
=>
{
console
.
log
(
'
windowTest DestroyTest1 window.find success, window :
'
+
JSON
.
stringify
(
data
));
expect
().
assertFail
();
done
();
wnd
.
resetSize
(
400
,
400
).
then
(()
=>
{
console
.
log
(
'
windowTest resetSize wnd.resetSize(400, 400) success
'
);
wnd
.
destroy
().
then
(()
=>
{
window
.
find
(
'
subWindow5
'
).
then
((
data
)
=>
{
console
.
log
(
'
windowTest DestroyTest1 window.find success, window :
'
+
JSON
.
stringify
(
data
));
expect
().
assertFail
();
done
();
},
(
err
)
=>
{
console
.
log
(
'
windowTest DestroyTest1 find failed, err :
'
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
1001
);
done
();
})
},
(
err
)
=>
{
console
.
log
(
'
windowTest
DestroyTest1 find
failed, err :
'
+
JSON
.
stringify
(
err
));
expect
(
err
.
code
).
assertEqual
(
1001
);
console
.
log
(
'
windowTest
CreateTest1 destroy
failed, err :
'
+
JSON
.
stringify
(
err
));
expect
(
).
assertFail
(
);
done
();
})
},
(
err
)
=>
{
console
.
log
(
'
windowTest CreateTest1 destroy failed, err :
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
},
(
err_resetSize
)
=>
{
console
.
log
(
'
windowTest resetSize wnd.resetSize failed, err :
'
+
JSON
.
stringify
(
err_resetSize
));
})
},
(
err
)
=>
{
console
.
log
(
'
windowTest CreateTest1 create failed, err :
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
})
})
/**
* @tc.number SUB_WMS_DESTROY_JSAPI_002
* @tc.name Test destroy_Test_002
...
...
@@ -1311,26 +1340,32 @@ describe('window_test', function () {
done
();
}
else
{
expect
(
data
!=
null
).
assertTrue
();
data
.
destroy
((
err
)
=>
{
if
(
err
.
code
!=
0
)
{
console
.
log
(
'
windowTest DestroyTest2 create callback fail
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
else
{
window
.
find
(
'
subWindow6
'
,
(
err
,
data
)
=>
{
console
.
log
(
'
windowTest DestroyTest2 find callback begin
'
+
JSON
.
stringify
(
data
));
if
(
err
.
code
!=
0
)
{
console
.
log
(
'
windowTest DestroyTest2 find callback fail
'
+
JSON
.
stringify
(
err
.
code
));
expect
(
err
.
code
).
assertEqual
(
1001
);
done
();
}
else
{
console
.
log
(
'
windowTest DestroyTest2 find suceess,err :
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
})
}
data
.
resetSize
(
400
,
400
).
then
(()
=>
{
console
.
log
(
'
windowTest resetSize wnd.resetSize(400, 400) success
'
);
data
.
destroy
((
err
)
=>
{
if
(
err
.
code
!=
0
)
{
console
.
log
(
'
windowTest DestroyTest2 create callback fail
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
else
{
window
.
find
(
'
subWindow6
'
,
(
err
,
data
)
=>
{
console
.
log
(
'
windowTest DestroyTest2 find callback begin
'
+
JSON
.
stringify
(
data
));
if
(
err
.
code
!=
0
)
{
console
.
log
(
'
windowTest DestroyTest2 find callback fail
'
+
JSON
.
stringify
(
err
.
code
));
expect
(
err
.
code
).
assertEqual
(
1001
);
done
();
}
else
{
console
.
log
(
'
windowTest DestroyTest2 find suceess,err :
'
+
JSON
.
stringify
(
err
));
expect
().
assertFail
();
done
();
}
})
}
})
},
(
err_resetSize
)
=>
{
console
.
log
(
'
windowTest resetSize wnd.resetSize failed, err :
'
+
JSON
.
stringify
(
err_resetSize
));
})
}
})
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录