Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
0577bf41
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看板
未验证
提交
0577bf41
编写于
1月 13, 2022
作者:
O
openharmony_ci
提交者:
Gitee
1月 13, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1555 增加时间时区获取测试接口
Merge pull request !1555 from guduhanyan/master
上级
4c344187
fa938058
变更
9
展开全部
隐藏空白更改
内联
并排
Showing
9 changed file
with
265 addition
and
203 deletion
+265
-203
miscservices/BUILD.gn
miscservices/BUILD.gn
+4
-12
miscservices/TimeTest_js/BUILD.gn
miscservices/TimeTest_js/BUILD.gn
+5
-5
miscservices/TimeTest_js/Test.json
miscservices/TimeTest_js/Test.json
+3
-3
miscservices/TimeTest_js/src/main/js/default/test/List.test.js
...ervices/TimeTest_js/src/main/js/default/test/List.test.js
+0
-1
miscservices/TimeTest_js/src/main/js/default/test/SystemTimeJsunit.test.js
...Test_js/src/main/js/default/test/SystemTimeJsunit.test.js
+128
-0
miscservices/TimerTest_js/BUILD.gn
miscservices/TimerTest_js/BUILD.gn
+5
-5
miscservices/TimerTest_js/Test.json
miscservices/TimerTest_js/Test.json
+3
-3
miscservices/TimerTest_js/src/main/js/default/test/SystemTimerJsunit.test.js
...est_js/src/main/js/default/test/SystemTimerJsunit.test.js
+116
-173
miscservices/TimerTest_js/src/main/resources/base/element/string.json
.../TimerTest_js/src/main/resources/base/element/string.json
+1
-1
未找到文件。
miscservices/BUILD.gn
浏览文件 @
0577bf41
...
@@ -14,16 +14,8 @@
...
@@ -14,16 +14,8 @@
import("//build/ohos_var.gni")
import("//build/ohos_var.gni")
group("miscservices") {
group("miscservices") {
testonly = true
testonly = true
if (is_standard_system) {
deps = [
deps = [ "TimeTest_js:time_js_test" ]
"TimeTest_js:time_js_test",
} else {
"TimerTest_js:timer_js_test",
deps = [
]
"DownloadTest:download_hap",
"InputMethodTest:InputMethodTest_hap",
"pasteboard:testpasteboard_hap",
"screenlock:ScreenLockTest_hap",
"timer:testtimer_hap",
"wallpaper:wallpaperTest_hap",
]
}
}
}
miscservices/TimeTest_js/BUILD.gn
浏览文件 @
0577bf41
...
@@ -16,16 +16,16 @@ import("//test/xts/tools/build/suite.gni")
...
@@ -16,16 +16,16 @@ import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("time_js_test") {
ohos_js_hap_suite("time_js_test") {
hap_profile = "./src/main/config.json"
hap_profile = "./src/main/config.json"
deps = [
deps = [
":
time
_js_assets",
":
hjs_demo
_js_assets",
":
time
_resources",
":
hjs_demo
_resources",
]
]
certificate_profile = "./signature/openharmony_sx.p7b"
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "
Acts
TimeJSApiTest"
hap_name = "TimeJSApiTest"
}
}
ohos_js_assets("
time
_js_assets") {
ohos_js_assets("
hjs_demo
_js_assets") {
source_dir = "./src/main/js/default"
source_dir = "./src/main/js/default"
}
}
ohos_resources("
time
_resources") {
ohos_resources("
hjs_demo
_resources") {
sources = [ "./src/main/resources" ]
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
hap_profile = "./src/main/config.json"
}
}
miscservices/TimeTest_js/Test.json
浏览文件 @
0577bf41
...
@@ -2,14 +2,14 @@
...
@@ -2,14 +2,14 @@
"description"
:
"Configuration for time js api Tests"
,
"description"
:
"Configuration for time js api Tests"
,
"driver"
:
{
"driver"
:
{
"type"
:
"JSUnitTest"
,
"type"
:
"JSUnitTest"
,
"test-timeout"
:
"
18
0000"
,
"test-timeout"
:
"
2160
0000"
,
"package"
:
"ohos.acts.miscservices.timer"
,
"package"
:
"ohos.acts.miscservices.timer"
,
"shell-timeout"
:
"
6
0000"
"shell-timeout"
:
"
2160
0000"
},
},
"kits"
:
[
"kits"
:
[
{
{
"test-file-name"
:
[
"test-file-name"
:
[
"
Acts
TimeJSApiTest.hap"
"TimeJSApiTest.hap"
],
],
"type"
:
"AppInstallKit"
,
"type"
:
"AppInstallKit"
,
"cleanup-apps"
:
true
"cleanup-apps"
:
true
...
...
miscservices/TimeTest_js/src/main/js/default/test/List.test.js
浏览文件 @
0577bf41
...
@@ -13,5 +13,4 @@
...
@@ -13,5 +13,4 @@
* limitations under the License.
* limitations under the License.
*/
*/
require
(
'
./Time.test.js
'
)
require
(
'
./SystemTimeJsunit.test.js
'
)
require
(
'
./SystemTimeJsunit.test.js
'
)
\ No newline at end of file
miscservices/TimeTest_js/src/main/js/default/test/SystemTimeJsunit.test.js
浏览文件 @
0577bf41
...
@@ -1853,4 +1853,132 @@ describe('TimeTest', function() {
...
@@ -1853,4 +1853,132 @@ describe('TimeTest', function() {
console
.
log
(
'
SUB_systemTime_setTimezone_JS_API_3000 end
'
);
console
.
log
(
'
SUB_systemTime_setTimezone_JS_API_3000 end
'
);
done
()
done
()
})
})
/**
* @tc.number SUB_systemTime_getTimezone_JS_API_0100
* @tc.name Test systemTime.getTimezone timezone = 'Anadyr, Russia'
* @tc.desc Test systemTime_getTimezone API functionality.
* @tc.size : MEDIUM
* @tc.type : Function
* @tc.level : Level 0
*/
it
(
'
systemTime_getTimezone_test1
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
SUB_systemTime_getTimezone_JS_API_0100 start
'
)
var
res
=
systemTime
.
getTimeZone
()
.
then
(
data
=>
{
console
.
log
(
'
getTimezone ===data
'
+
data
+
res
)
expect
(
true
).
to
.
a
(
'
boolean
'
)
}).
catch
(
error
=>
{
console
.
log
(
'
getTimezone ===error
'
+
error
)
console
.
log
(
'
getTimezone ===data
'
+
data
)
execpt
(
0
).
assertLarger
(
1
)
});
console
.
log
(
'
SUB_systemTime_getTimezone_JS_API_0100 end
'
);
done
()
})
it
(
'
systemTime_getCurrentTime_test1
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
SUB_systemTime_getCurrentTime_JS_API_0100 start
'
)
var
res
=
systemTime
.
getCurrentTime
()
.
then
(
data
=>
{
console
.
log
(
'
getCurrentTime ===data
'
+
data
+
res
)
expect
(
true
).
to
.
a
(
'
boolean
'
)
}).
catch
(
error
=>
{
console
.
log
(
'
getCurrentTime ===error
'
+
error
)
console
.
log
(
'
getCurrentTime ===data
'
+
data
)
execpt
(
0
).
assertLarger
(
1
)
});
console
.
log
(
'
SUB_systemTime_getCurrentTime_JS_API_0100 end
'
);
done
()
})
it
(
'
systemTime_getCurrentTimeNs_test1
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
SUB_systemTimeNs_getCurrentTime_JS_API_0100 start
'
)
var
res
=
systemTime
.
getCurrentTimeNs
()
.
then
(
data
=>
{
console
.
log
(
'
getCurrentTimeNs ===data
'
+
data
+
res
)
expect
(
true
).
to
.
a
(
'
boolean
'
)
}).
catch
(
error
=>
{
console
.
log
(
'
getCurrentTimeNs ===error
'
+
error
)
console
.
log
(
'
getCurrentTimeNs ===data
'
+
data
)
execpt
(
0
).
assertLarger
(
1
)
});
console
.
log
(
'
SUB_systemTime_getCurrentTimeNs_JS_API_0100 end
'
);
done
()
})
it
(
'
systemTime_getRealActiveTime_test1
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
SUB_systemTime_getRealActiveTime_JS_API_0100 start
'
)
var
res
=
systemTime
.
getRealActiveTime
()
.
then
(
data
=>
{
console
.
log
(
'
getRealActiveTime ===data
'
+
data
+
res
)
expect
(
true
).
to
.
a
(
'
boolean
'
)
}).
catch
(
error
=>
{
console
.
log
(
'
getRealActiveTime ===error
'
+
error
)
console
.
log
(
'
getRealActiveTime ===data
'
+
data
)
execpt
(
0
).
assertLarger
(
1
)
});
console
.
log
(
'
SUB_systemTime_getRealActiveTime_JS_API_0100 end
'
);
done
()
})
it
(
'
systemTime_getRealActiveTimeNs_test1
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
SUB_systemTime_getRealActiveTimeNs_JS_API_0100 start
'
)
var
res
=
systemTime
.
getRealActiveTimeNs
()
.
then
(
data
=>
{
console
.
log
(
'
getRealActiveTimeNs ===data
'
+
data
+
res
)
expect
(
true
).
to
.
a
(
'
boolean
'
)
}).
catch
(
error
=>
{
console
.
log
(
'
getRealActiveTimeNs ===error
'
+
error
)
console
.
log
(
'
getRealActiveTimeNs ===data
'
+
data
)
execpt
(
0
).
assertLarger
(
1
)
});
console
.
log
(
'
SUB_systemTime_getRealActiveTimeNs_JS_API_0100 end
'
);
done
()
})
it
(
'
systemTime_getRealTime_test1
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
SUB_systemTime_getRealTime_JS_API_0100 start
'
)
var
res
=
systemTime
.
getRealTime
()
.
then
(
data
=>
{
console
.
log
(
'
getRealTime ===data
'
+
data
+
res
)
expect
(
true
).
to
.
a
(
'
boolean
'
)
}).
catch
(
error
=>
{
console
.
log
(
'
getRealTime ===error
'
+
error
)
console
.
log
(
'
getRealTime ===data
'
+
data
)
execpt
(
0
).
assertLarger
(
1
)
});
console
.
log
(
'
SUB_systemTime_getRealTime_JS_API_0100 end
'
);
done
()
})
it
(
'
systemTime_getRealTimeNs_test1
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
SUB_systemTime_getRealTimeNs_JS_API_0100 start
'
)
var
res
=
systemTime
.
getRealTimeNs
()
.
then
(
data
=>
{
console
.
log
(
'
getRealTimeNs ===data
'
+
data
+
res
)
expect
(
true
).
to
.
a
(
'
boolean
'
)
}).
catch
(
error
=>
{
console
.
log
(
'
getRealTimeNs ===error
'
+
error
)
console
.
log
(
'
getRealTimeNs ===data
'
+
data
)
execpt
(
0
).
assertLarger
(
1
)
});
console
.
log
(
'
SUB_systemTime_getRealTimeNs_JS_API_0100 end
'
);
done
()
})
it
(
'
systemTime_getDate_test1
'
,
0
,
async
function
(
done
)
{
console
.
log
(
'
SUB_systemTime_getDate_JS_API_0100 start
'
)
var
res
=
systemTime
.
getDate
()
.
then
(
data
=>
{
console
.
log
(
'
getDate ===data
'
+
data
+
res
)
expect
(
true
).
to
.
a
(
'
boolean
'
)
}).
catch
(
error
=>
{
console
.
log
(
'
getDate ===error
'
+
error
)
console
.
log
(
'
getDate ===data
'
+
data
)
execpt
(
0
).
assertLarger
(
1
)
});
console
.
log
(
'
SUB_systemTime_getDate_JS_API_0100 end
'
);
done
()
})
})
})
\ No newline at end of file
miscservices/TimerTest_js/BUILD.gn
浏览文件 @
0577bf41
...
@@ -16,16 +16,16 @@ import("//test/xts/tools/build/suite.gni")
...
@@ -16,16 +16,16 @@ import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("timer_js_test") {
ohos_js_hap_suite("timer_js_test") {
hap_profile = "./src/main/config.json"
hap_profile = "./src/main/config.json"
deps = [
deps = [
":
time
_js_assets",
":
hjs_demo
_js_assets",
":
time
_resources",
":
hjs_demo
_resources",
]
]
certificate_profile = "./signature/openharmony_sx.p7b"
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "
ActsTime
JSApiTest"
hap_name = "
Timer
JSApiTest"
}
}
ohos_js_assets("
time
_js_assets") {
ohos_js_assets("
hjs_demo
_js_assets") {
source_dir = "./src/main/js/default"
source_dir = "./src/main/js/default"
}
}
ohos_resources("
time
_resources") {
ohos_resources("
hjs_demo
_resources") {
sources = [ "./src/main/resources" ]
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
hap_profile = "./src/main/config.json"
}
}
miscservices/TimerTest_js/Test.json
浏览文件 @
0577bf41
...
@@ -2,14 +2,14 @@
...
@@ -2,14 +2,14 @@
"description"
:
"Configuration for time js api Tests"
,
"description"
:
"Configuration for time js api Tests"
,
"driver"
:
{
"driver"
:
{
"type"
:
"JSUnitTest"
,
"type"
:
"JSUnitTest"
,
"test-timeout"
:
"
6
0000"
,
"test-timeout"
:
"
2160
0000"
,
"package"
:
"ohos.acts.miscservices.timer"
,
"package"
:
"ohos.acts.miscservices.timer"
,
"shell-timeout"
:
"
6
0000"
"shell-timeout"
:
"
2160
0000"
},
},
"kits"
:
[
"kits"
:
[
{
{
"test-file-name"
:
[
"test-file-name"
:
[
"
ActsTime
JSApiTest.hap"
"
Timer
JSApiTest.hap"
],
],
"type"
:
"AppInstallKit"
,
"type"
:
"AppInstallKit"
,
"cleanup-apps"
:
true
"cleanup-apps"
:
true
...
...
miscservices/TimerTest_js/src/main/js/default/test/SystemTimerJsunit.test.js
浏览文件 @
0577bf41
此差异已折叠。
点击以展开。
miscservices/TimerTest_js/src/main/resources/base/element/string.json
浏览文件 @
0577bf41
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
"string"
:
[
"string"
:
[
{
{
"name"
:
"app_name"
,
"name"
:
"app_name"
,
"value"
:
"JstimeTest"
"value"
:
"Jstime
r
Test"
},
},
{
{
"name"
:
"mainability_description"
,
"name"
:
"mainability_description"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录