Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
54fcea17
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,发现更多精彩内容 >>
提交
54fcea17
编写于
5月 26, 2022
作者:
R
raoxian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update access.test.js
Signed-off-by:
N
raoxian
<
raoxian@huawei.com
>
上级
6866cb0d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
42 addition
and
19 deletion
+42
-19
storage/storagefileiojstest/src/main/js/default/test/module_fileio/members/access.test.js
...main/js/default/test/module_fileio/members/access.test.js
+42
-19
未找到文件。
storage/storagefileiojstest/src/main/js/default/test/module_fileio/members/access.test.js
浏览文件 @
54fcea17
...
...
@@ -25,7 +25,7 @@ describe('fileio_access', function () {
* @tc.name fileio_test_access_sync_000
* @tc.desc Test accessSync() interface.
* This interface shall work properly in normal case
* @tc.size MEDIUM
(中型)
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -47,8 +47,8 @@ describe('fileio_access', function () {
* @tc.number SUB_DF_FILEIO_ACCESSSYNC_0100
* @tc.name fileio_test_access_sync_001
* @tc.desc Test accessSync() interface.
* T
he test file exists and
the current process has write permission.
* @tc.size MEDIUM
(中型)
* T
est that
the current process has write permission.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -70,8 +70,8 @@ describe('fileio_access', function () {
* @tc.number SUB_DF_FILEIO_ACCESSSYNC_0200
* @tc.name fileio_test_access_sync_002
* @tc.desc Test accessSync() interface.
* T
he test file exists and
the current process has read permission.
* @tc.size MEDIUM
(中型)
* T
est that
the current process has read permission.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -93,8 +93,8 @@ describe('fileio_access', function () {
* @tc.number SUB_DF_FILEIO_ACCESSSYNC_0300
* @tc.name fileio_test_access_sync_003
* @tc.desc Test accessSync() interface.
* T
he test file exists and
the current process has read and write permissions.
* @tc.size MEDIUM
(中型)
* T
est that
the current process has read and write permissions.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -116,19 +116,42 @@ describe('fileio_access', function () {
* @tc.number SUB_DF_FILEIO_ACCESSSYNC_0400
* @tc.name fileio_test_access_sync_004
* @tc.desc Test accessSync() interface.
* T
he test file is not exist
.
* @tc.size MEDIUM
(中型)
* T
est that the current process has executable permissions
.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
*/
it
(
'
fileio_test_access_sync_004
'
,
0
,
async
function
()
{
let
fpath
=
await
nextFileName
(
'
fileio_test_access_sync_004
'
);
fileio
.
openSync
(
fpath
,
0o102
,
0o777
);
try
{
fileio
.
accessSync
(
fpath
);
fileio
.
accessSync
(
fpath
,
1
);
fileio
.
unlinkSync
(
fpath
);
}
catch
(
err
)
{
console
.
info
(
'
fileio_test_access_sync_004 has failed for
'
+
err
);
expect
(
null
).
assertFail
();
}
});
/**
* @tc.number SUB_DF_FILEIO_ACCESSSYNC_0500
* @tc.name fileio_test_access_sync_005
* @tc.desc Test accessSync() interface.
* The test file is not exist.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
*/
it
(
'
fileio_test_access_sync_005
'
,
0
,
async
function
()
{
let
fpath
=
await
nextFileName
(
'
fileio_test_access_sync_005
'
);
try
{
fileio
.
accessSync
(
fpath
);
}
catch
(
err
)
{
console
.
info
(
'
fileio_test_access_sync_005 has failed for
'
+
err
);
expect
(
err
.
message
==
'
No such file or directory
'
).
assertTrue
();
}
});
...
...
@@ -138,7 +161,7 @@ describe('fileio_access', function () {
* @tc.name fileio_test_access_async_000
* @tc.desc Test accessAsync() interface.
* This interface shall work properly in normal case.
* @tc.size MEDIUM
(中型)
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -162,7 +185,7 @@ describe('fileio_access', function () {
* @tc.name fileio_test_access_async_001
* @tc.desc Test accessAsync() interface.
* Use promise to test that the current process has read permission. Async method reads data from file.
* @tc.size MEDIUM
(中型)
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -190,7 +213,7 @@ describe('fileio_access', function () {
* @tc.name fileio_test_access_async_002
* @tc.desc Test accessAsync() interface.
* Test file exists.
* @tc.size MEDIUM
(中型)
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -214,8 +237,8 @@ describe('fileio_access', function () {
* @tc.number SUB_DF_FILEIO_ACCESSASYNC_0300
* @tc.name fileio_test_access_async_003
* @tc.desc Test accessAsync() interface.
* Use
promises
to test that the current process has read permission. Async method reads data from file.
* @tc.size MEDIUM
(中型)
* Use
callback
to test that the current process has read permission. Async method reads data from file.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -244,7 +267,7 @@ describe('fileio_access', function () {
* @tc.name fileio_test_access_async_004
* @tc.desc Test accessAsync() interface.
* Use promises to test that the current process has executable permissions.
* @tc.size MEDIUM
(中型)
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -267,8 +290,8 @@ describe('fileio_access', function () {
* @tc.number SUB_DF_FILEIO_ACCESSASYNC_0500
* @tc.name fileio_test_access_async_005
* @tc.desc Test accessAsync() interface.
* Use
promises
to test that the current process has write permission.
* @tc.size MEDIUM
(中型)
* Use
callback
to test that the current process has write permission.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -293,7 +316,7 @@ describe('fileio_access', function () {
* @tc.name fileio_test_access_async_006
* @tc.desc Test accessAsync() interface.
* Async test file does not exist.
* @tc.size MEDIUM
(中型)
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录