Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
e5824c7d
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看板
提交
e5824c7d
编写于
11月 23, 2021
作者:
S
Storage sandboxing
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
删除storage下storagefileiojstest的file用例
Signed-off-by:
N
Storage sandboxing
<
raoxian050@chinasoftinc.com
>
上级
09eead1b
变更
6
展开全部
隐藏空白更改
内联
并排
Showing
6 changed file
with
16 addition
and
3854 deletion
+16
-3854
storage/storagefileiojstest/src/main/js/default/test/Common.js
...ge/storagefileiojstest/src/main/js/default/test/Common.js
+11
-7
storage/storagefileiojstest/src/main/js/default/test/File.test.js
...storagefileiojstest/src/main/js/default/test/File.test.js
+0
-3789
storage/storagefileiojstest/src/main/js/default/test/FileIO.test.js
...oragefileiojstest/src/main/js/default/test/FileIO.test.js
+0
-53
storage/storagefileiojstest/src/main/js/default/test/FileIODirent.test.js
...ileiojstest/src/main/js/default/test/FileIODirent.test.js
+1
-1
storage/storagefileiojstest/src/main/js/default/test/FileIOStream.test.js
...ileiojstest/src/main/js/default/test/FileIOStream.test.js
+4
-3
storage/storagefileiojstest/src/main/js/default/test/List.test.js
...storagefileiojstest/src/main/js/default/test/List.test.js
+0
-1
未找到文件。
storage/storagefileiojstest/src/main/js/default/test/Common.js
浏览文件 @
e5824c7d
...
...
@@ -13,7 +13,11 @@
* limitations under the License.
*/
import
fileio
from
'
@system.fileio
'
import
fileio
from
'
@ohos.fileio
'
import
{
expect
}
from
'
deccjsunit/index
'
export
const
FILE_CONTENT
=
'
hello world
'
...
...
@@ -97,27 +101,27 @@ export function fileToReadAndWrite(fpath) {
}
export
function
appName
(
testName
)
{
const
BASE_PATH
=
'
/data/accounts/account_0/appdata/ohos.acts.stroage.fileio/
'
return
BASE_PATH
+
testName
return
BASE_PATH
+
testName
+
'
_
'
+
randomString
(
testName
.
length
)
}
export
function
nextFileName
(
testName
)
{
const
BASE_PATH
=
'
/data/accounts/account_0/appdata/ohos.acts.stroage.fileio/cache/
'
return
BASE_PATH
+
testName
return
BASE_PATH
+
testName
+
'
_
'
+
randomString
(
testName
.
length
)
}
export
function
fileName
(
testName
)
{
const
BASE_PATH
=
'
/data/accounts/account_0/appdata/ohos.acts.stroage.fileio/files/
'
return
BASE_PATH
+
testName
return
BASE_PATH
+
testName
+
'
_
'
+
randomString
(
testName
.
length
)
}
export
function
cacheFileName
(
testName
)
{
const
BASE_PATH
=
'
/data/accounts/account_0/appdata/ohos.acts.stroage.fileio/files/cache/
'
return
BASE_PATH
+
testName
return
BASE_PATH
+
testName
+
'
_
'
+
randomString
(
testName
.
length
)
}
export
function
differentFileName
(
testName
)
{
const
BASE_PATH
=
'
/data/accounts/account_0/ohos.acts.distributeddatamgr.distributedfile/
'
return
BASE_PATH
+
testName
return
BASE_PATH
+
testName
+
'
_
'
+
randomString
(
testName
.
length
)
}
export
function
differentCacheName
(
testName
)
{
const
BASE_PATH
=
'
/data/accounts/account_0/ohos.acts.distributeddatamgr.distributedfile/cache/
'
return
BASE_PATH
+
testName
return
BASE_PATH
+
testName
+
'
_
'
+
randomString
(
testName
.
length
)
}
export
function
getFileTextLen
(
fpath
)
{
...
...
storage/storagefileiojstest/src/main/js/default/test/File.test.js
已删除
100644 → 0
浏览文件 @
09eead1b
此差异已折叠。
点击以展开。
storage/storagefileiojstest/src/main/js/default/test/FileIO.test.js
浏览文件 @
e5824c7d
...
...
@@ -14,8 +14,6 @@
*/
import
fileio
from
'
@ohos.fileio
'
;
import
file
from
'
@system.file
'
;
import
bundle_mgr
from
'
@ohos.bundle_mgr
'
import
{
describe
,
beforeAll
,
...
...
@@ -39,7 +37,6 @@ import {
from
'
./Common
'
describe
(
'
fileIOTest
'
,
function
()
{
1
/**
* @tc.number SUB_STORAGE_FileIO_open&closesync_0000
* @tc.name fileio_test_open_close_sync_000
...
...
@@ -208,7 +205,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_006 has failed for
'
+
e
);
expect
(
fileio
.
unlinkSync
(
fpath
)
!==
null
).
assertTrue
();
}
});
...
...
@@ -658,7 +654,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_027 has failed for
'
+
e
);
expect
(
fileio
.
unlinkSync
(
fpath
)
!==
null
).
assertTrue
();
}
});
...
...
@@ -686,7 +681,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_028 has failed for
'
+
e
);
expect
(
fileio
.
unlinkSync
(
fpath
)
!==
null
).
assertTrue
();
}
});
...
...
@@ -764,7 +758,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_031 has failed for
'
+
e
);
expect
(
fileio
.
unlinkSync
(
fpath
)
!==
null
).
assertTrue
();
}
});
...
...
@@ -792,7 +785,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_032 has failed for
'
+
e
);
expect
(
fileio
.
unlinkSync
(
fpath
)
!==
null
).
assertTrue
();
}
});
...
...
@@ -870,7 +862,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_035 has failed for
'
+
e
);
expect
(
fileio
.
unlinkSync
(
fpath
)
!==
null
).
assertTrue
();
}
});
...
...
@@ -898,7 +889,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_036 has failed for
'
+
e
);
expect
(
fileio
.
unlinkSync
(
fpath
)
!==
null
).
assertTrue
();
}
});
...
...
@@ -1077,7 +1067,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_sync_007 has failed for
'
+
e
);
}
});
...
...
@@ -1118,7 +1107,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_sync_009 has failed for
'
+
e
);
}
});
...
...
@@ -1134,7 +1122,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_open_sync_010 has failed for
'
+
e
);
}
});
...
...
@@ -1592,41 +1579,6 @@ describe('fileIOTest', function () {
}
});
/**
* @tc.number SUB_STORAGE_FileIO_ReadSync_0000
* @tc.name fileio_test_read_sync_000
* @tc.desc Function of API, readSync.
*/
it
(
'
fileio_test_read_sync_000
'
,
0
,
async
function
(
done
)
{
let
fpath
=
nextFileName
(
'
fileio_test_read_sync_000
'
);
let
text
=
'
0123456789abcdefg
'
;
expect
(
prepareFile
(
fpath
,
text
)).
assertTrue
();
sleep
(
10
)
try
{
let
fd
=
fileio
.
openSync
(
fpath
,
0o2
);
let
len
=
fileio
.
readSync
(
fd
,
new
ArrayBuffer
(
4096
));
expect
(
len
==
text
.
length
).
assertTrue
();
expect
(
fileio
.
closeSync
(
fd
)
!==
null
).
assertTrue
();
file
.
readText
({
uri
:
'
internal://cache/fileio_test_read_sync_000
'
,
success
:
function
(
data
)
{
console
.
log
(
'
call readText success:
'
+
data
.
text
);
expect
(
text
==
data
.
text
).
assertTrue
();
expect
(
fileio
.
unlinkSync
(
fpath
)
!==
null
).
assertTrue
();
done
();
},
fail
:
function
(
data
,
code
)
{
console
.
error
(
'
call fail callback fail, code:
'
+
code
+
'
, data:
'
+
data
);
expect
(
null
).
assertFail
();
},
});
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_read_sync_000 has failed for
'
+
e
);
expect
(
null
).
assertFail
();
}
});
/**
* @tc.number SUB_STORAGE_FileIO_ReadSync_0100
* @tc.name fileio_test_read_sync_001
...
...
@@ -2362,7 +2314,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_copy_file_sync_008 has failed for
'
+
e
);
}
});
...
...
@@ -2409,7 +2360,6 @@ describe('fileIOTest', function () {
}
catch
(
e
)
{
fileio
.
unlinkSync
(
fpath
);
console
.
log
(
'
fileio_test_copy_file_sync_010 has failed for
'
+
e
);
}
});
...
...
@@ -2588,7 +2538,6 @@ describe('fileIOTest', function () {
}
catch
(
e
)
{
expect
(
fileio
.
unlinkSync
(
fpath
)
!==
null
).
assertTrue
();
console
.
log
(
'
fileio_test_rename_sync_003 Test finish.
'
+
e
);
}
});
...
...
@@ -3544,7 +3493,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_fstat_sync_001 has failed for
'
+
e
);
}
});
...
...
@@ -3559,7 +3507,6 @@ describe('fileIOTest', function () {
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
console
.
log
(
'
fileio_test_fstat_sync_002 has failed for
'
+
e
);
}
});
...
...
storage/storagefileiojstest/src/main/js/default/test/FileIODirent.test.js
浏览文件 @
e5824c7d
...
...
@@ -13,7 +13,7 @@
* limitations under the License.
*/
import
fileio
from
'
@
system
.fileio
'
;
import
fileio
from
'
@
ohos
.fileio
'
;
import
{
describe
,
it
,
...
...
storage/storagefileiojstest/src/main/js/default/test/FileIOStream.test.js
浏览文件 @
e5824c7d
...
...
@@ -14,7 +14,6 @@
*/
import
fileio
from
'
@ohos.fileio
'
;
import
file
from
'
@system.file
'
import
{
describe
,
beforeAll
,
...
...
@@ -713,7 +712,9 @@ describe('fileIOTestStream', function () {
*/
it
(
'
fileio_test_stream_fdopen_stream_sync_001
'
,
0
,
function
()
{
try
{
expect
(
fileio
.
fdopenStreamSync
(
-
1
,
'
r
'
)
==
null
).
assertTrue
();
let
fd
=
-
1
;
let
mode
=
'
r+
'
;
fileio
.
fdopenStreamSync
(
fd
,
mode
);
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
...
...
@@ -1278,7 +1279,7 @@ describe('fileIOTestStream', function () {
expect
(
prepareFile
(
fpath
,
FILE_CONTENT
)).
assertTrue
();
try
{
let
fd
=
fileio
.
openSync
(
fpath
,
0o2
);
expect
(
fileio
.
fdopenStreamSync
(
fd
,
''
)
==
null
).
assertTrue
(
);
fileio
.
fdopenStreamSync
(
fd
,
''
);
expect
(
null
).
assertFail
();
}
catch
(
e
)
{
...
...
storage/storagefileiojstest/src/main/js/default/test/List.test.js
浏览文件 @
e5824c7d
...
...
@@ -13,7 +13,6 @@
* limitations under the License.
*/
require
(
'
./File.test.js
'
)
require
(
'
./FileIO.test.js
'
)
require
(
'
./FileIODir.test.js
'
)
require
(
'
./FileIODirent.test.js
'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录