Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
8c29313a
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看板
未验证
提交
8c29313a
编写于
6月 22, 2022
作者:
O
openharmony_ci
提交者:
Gitee
6月 22, 2022
浏览文件
操作
浏览文件
下载
差异文件
!3571 刪除fileio重复用例以及冗余代码、注释规范修改
Merge pull request !3571 from zhangxingxia/OpenHarmony-3.1-Release
上级
d60c9f66
44444245
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
328 addition
and
710 deletion
+328
-710
storage/storagefileiojstest/src/main/js/default/test/module_fileio/class_dir/close.test.js
...ain/js/default/test/module_fileio/class_dir/close.test.js
+40
-19
storage/storagefileiojstest/src/main/js/default/test/module_fileio/class_dir/read.test.js
...main/js/default/test/module_fileio/class_dir/read.test.js
+236
-666
storage/storagefileiojstest/src/main/js/default/test/module_fileio/members/close.test.js
.../main/js/default/test/module_fileio/members/close.test.js
+52
-25
未找到文件。
storage/storagefileiojstest/src/main/js/default/test/module_fileio/class_dir/close.test.js
浏览文件 @
8c29313a
...
...
@@ -15,24 +15,19 @@
import
{
fileio
,
FILE_CONTENT
,
prepareFile
,
nextFileName
,
isIntNum
,
isString
,
isBoolean
,
describe
,
it
,
expect
,
}
from
'
../../Common
'
;
describe
(
'
fileio_dir_close
_read
'
,
function
()
{
describe
(
'
fileio_dir_close
'
,
function
()
{
/**
* @tc.number SUB_DF_FILEIO_DIR_CLOSE_ASYNC_0000
* @tc.name fileio_test_dir_close_async_000
* @tc.desc Test Dir
.closeAsync() interfac
e.
* @tc.size MEDIUM
(中型)
* @tc.desc Test Dir
close() interface,return in promise mod
e.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -41,37 +36,63 @@ describe('fileio_dir_close_read', function () {
let
dpath
=
await
nextFileName
(
'
fileio_test_dir_close_async_000
'
)
+
'
d
'
;
try
{
expect
(
fileio
.
mkdirSync
(
dpath
)
==
null
).
assertTrue
(
);
fileio
.
mkdirSync
(
dpath
);
let
dd
=
await
fileio
.
opendir
(
dpath
);
expect
(
dd
!==
null
).
assertTrue
();
expect
((
await
dd
.
close
())
==
null
).
assertTrue
();
expect
(
fileio
.
rmdirSync
(
dpath
)
==
null
).
assertTrue
();
await
dd
.
close
();
fileio
.
rmdirSync
(
dpath
);
done
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_dir_close_async_000 has failed for
'
+
e
);
console
.
info
(
'
fileio_test_dir_close_async_000 has failed for
'
+
e
);
expect
(
null
).
assertFail
();
}
});
/**
* @tc.number SUB_DF_FileIO_Dir_close_Async_0
001
* @tc.number SUB_DF_FileIO_Dir_close_Async_0
100
* @tc.name fileio_test_dir_close_async_001
* @tc.desc Test Dir.closeAsync() interface.
* @tc.desc Test Dir close() interface,return in callback mode.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
*/
it
(
'
fileio_test_dir_close_async_001
'
,
0
,
async
function
(
done
)
{
let
dpath
=
await
nextFileName
(
'
fileio_test_dir_close_async_001
'
)
+
'
d
'
;
try
{
expect
(
fileio
.
mkdirSync
(
dpath
)
==
null
).
assertTrue
(
);
fileio
.
mkdirSync
(
dpath
);
let
dd
=
await
fileio
.
opendir
(
dpath
);
expect
(
dd
!==
null
).
assertTrue
();
dd
.
close
(
function
(
err
)
{
expect
(
fileio
.
rmdirSync
(
dpath
)
==
null
).
assertTrue
(
);
fileio
.
rmdirSync
(
dpath
);
done
();
});
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_dir_close_async_001 has failed for
'
+
e
);
console
.
info
(
'
fileio_test_dir_close_async_001 has failed for
'
+
e
);
expect
(
null
).
assertFail
();
}
});
/**
* @tc.number SUB_DF_FileIO_Dir_close_Async_0200
* @tc.name fileio_test_dir_close_async_002
* @tc.desc Test Dir close() interface,there are multiple parameters.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
*/
it
(
'
fileio_test_dir_close_async_002
'
,
0
,
async
function
(
done
)
{
let
dpath
=
await
nextFileName
(
'
fileio_test_dir_close_async_002
'
)
+
'
d
'
;
try
{
fileio
.
mkdirSync
(
dpath
);
let
dd
=
await
fileio
.
opendir
(
dpath
);
dd
.
close
(
-
1
,
function
(
err
)
{
});
}
catch
(
e
)
{
console
.
info
(
'
fileio_test_dir_close_async_002 has failed for
'
+
e
);
expect
(
e
.
message
==
"
Number of arguments unmatched
"
).
assertTrue
();
fileio
.
rmdirSync
(
dpath
);
done
();
}
});
});
storage/storagefileiojstest/src/main/js/default/test/module_fileio/class_dir/read.test.js
浏览文件 @
8c29313a
此差异已折叠。
点击以展开。
storage/storagefileiojstest/src/main/js/default/test/module_fileio/members/close.test.js
浏览文件 @
8c29313a
...
...
@@ -20,47 +20,69 @@ import {
describe
(
'
fileio_close
'
,
function
()
{
/**
* @tc.number SUB_DF_FILEIO_CLOSESYNC_0000
* @tc.name fileio_test_close_sync_000
* @tc.desc Test closeSync() interfaces
* @tc.size MEDIUM(中型)
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
*/
it
(
'
fileio_test_close_sync_000
'
,
0
,
async
function
()
{
let
fpath
=
await
nextFileName
(
'
fileio_test_close_async_000
'
);
expect
(
prepareFile
(
fpath
,
FILE_CONTENT
)).
assertTrue
();
try
{
let
fd
=
fileio
.
openSync
(
fpath
,
0o102
,
0o666
);
fileio
.
closeSync
(
fd
);
fileio
.
unlinkSync
(
fpath
);
}
catch
(
e
)
{
console
.
info
(
'
fileio_test_close_sync_000 has failed for
'
+
e
);
}
})
/**
* @tc.number SUB_DF_FILEIO_CLOSESYNC_0100
* @tc.name fileio_test_close_sync_001
* @tc.desc Test closeSync() interfaces,No parameters.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
*/
it
(
'
fileio_test_close_sync_00
0
'
,
0
,
function
()
{
it
(
'
fileio_test_close_sync_00
1
'
,
0
,
function
()
{
try
{
fileio
.
closeSync
();
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_close_sync_000 has failed for
'
+
e
);
console
.
info
(
'
fileio_test_close_sync_001 has failed for
'
+
e
);
expect
(
e
.
message
==
'
Number of arguments unmatched
'
).
assertTrue
();
}
})
/**
* @tc.number SUB_DF_FILEIO_CLOSESYNC_0010
* @tc.name fileio_test_close_sync_001
* @tc.desc Test closeSync() interfaces
* @tc.size MEDIUM
(中型)
* @tc.desc Test closeSync() interfaces
,fd is illegal.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
*/
it
(
'
fileio_test_close_sync_00
1
'
,
0
,
function
()
{
it
(
'
fileio_test_close_sync_00
2
'
,
0
,
function
()
{
try
{
fileio
.
closeSync
(
-
1
);
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_close_sync_001 has failed for
'
+
e
);
console
.
info
(
'
fileio_test_close_sync_002 has failed for
'
+
e
);
expect
(
e
.
message
==
'
Bad file descriptor
'
).
assertTrue
();
}
})
/**
* @tc.number SUB_DF_FILEIO_CLOSE_ASYNC_0000
* @tc.name fileio_test_close_async_000
* @tc.desc Test close() interfaces
* @tc.size MEDIUM
(中型)
* @tc.desc Test close() interfaces
,return in callback mode.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -72,11 +94,11 @@ describe('fileio_close', function () {
try
{
let
fd
=
fileio
.
openSync
(
fpath
,
0o102
,
0o666
);
fileio
.
close
(
fd
,
function
(
err
)
{
expect
(
fileio
.
unlinkSync
(
fpath
)
==
null
).
assertTrue
(
);
fileio
.
unlinkSync
(
fpath
);
done
();
});
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_close_async_000 has failed for
'
+
e
);
console
.
info
(
'
fileio_test_close_async_000 has failed for
'
+
e
);
expect
(
null
).
assertFail
();
}
})
...
...
@@ -84,8 +106,8 @@ describe('fileio_close', function () {
/**
* @tc.number SUB_DF_FILEIO_CLOSE_ASYNC_0010
* @tc.name fileio_test_close_async_001
* @tc.desc Test close() interfaces
* @tc.size MEDIUM
(中型)
* @tc.desc Test close() interfaces
,return in promise mode.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
...
...
@@ -96,11 +118,11 @@ describe('fileio_close', function () {
try
{
let
fd
=
fileio
.
openSync
(
fpath
,
0o102
,
0o666
);
expect
(
await
fileio
.
close
(
fd
)
==
null
).
assertTrue
(
);
expect
(
fileio
.
unlinkSync
(
fpath
)
==
null
).
assertTrue
(
);
await
fileio
.
close
(
fd
);
fileio
.
unlinkSync
(
fpath
);
done
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_close_async_001 has failed for
'
+
e
);
console
.
info
(
'
fileio_test_close_async_001 has failed for
'
+
e
);
expect
(
null
).
assertFail
();
}
})
...
...
@@ -108,20 +130,25 @@ describe('fileio_close', function () {
/**
* @tc.number SUB_DF_FILEIO_CLOSE_ASYNC_0020
* @tc.name fileio_test_close_async_002
* @tc.desc Test close() interfaces
* @tc.size MEDIUM
(中型)
* @tc.desc Test close() interfaces
,there are multiple parameters.
* @tc.size MEDIUM
* @tc.type Function
* @tc.level Level 0
* @tc.require
*/
it
(
'
fileio_test_close_async_002
'
,
0
,
async
function
(
done
)
{
let
fpath
=
await
nextFileName
(
'
fileio_test_close_async_001
'
);
expect
(
prepareFile
(
fpath
,
FILE_CONTENT
)).
assertTrue
();
try
{
await
fileio
.
close
(
-
1
);
expect
(
null
).
assertFail
();
done
(
);
let
fd
=
fileio
.
openSync
(
fpath
,
0o102
,
0o666
);
fileio
.
close
(
fd
,
2
,
function
(
err
)
{
}
);
}
catch
(
e
)
{
expect
(
!!
e
).
assertTrue
();
console
.
log
(
'
fileio_test_close_async_002 has failed for
'
+
e
);
console
.
info
(
'
fileio_test_close_async_002 has failed for
'
+
e
);
expect
(
e
.
message
==
"
Number of arguments unmatched
"
).
assertTrue
();
fileio
.
unlinkSync
(
fpath
);
done
();
}
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录