未验证 提交 95d17329 编写于 作者: O openharmony_ci 提交者: Gitee

!2454 改正【文件管理子系统】【xts】代码中拼写错误

Merge pull request !2454 from shuzhouhao/OpenHarmony-3.1-Release
...@@ -127,7 +127,7 @@ export function getFileTextLen(fpath) { ...@@ -127,7 +127,7 @@ export function getFileTextLen(fpath) {
expect(ss !== null).assertTrue() expect(ss !== null).assertTrue()
let len = ss.readSync(new ArrayBuffer(4096)) let len = ss.readSync(new ArrayBuffer(4096))
console.log('file:' + fpath) console.log('file:' + fpath)
console.log('file lenth:' + len) console.log('file length:' + len)
expect(ss.closeSync() !== null).assertTrue() expect(ss.closeSync() !== null).assertTrue()
return len return len
} }
......
...@@ -1336,7 +1336,7 @@ describe('fileIOTest', function () { ...@@ -1336,7 +1336,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_UnlinkSync_0200 * @tc.number SUB_STORAGE_FileIO_UnlinkSync_0200
* @tc.name fileio_test_unlink_sync_002 * @tc.name fileio_test_unlink_sync_002
* @tc.desc Function of API, invaild parameter * @tc.desc Function of API, invalid parameter
*/ */
it('fileio_test_unlink_sync_002', 0, async function () { it('fileio_test_unlink_sync_002', 0, async function () {
let fpath = await nextFileName('fileIOTest'); let fpath = await nextFileName('fileIOTest');
...@@ -1460,7 +1460,7 @@ describe('fileIOTest', function () { ...@@ -1460,7 +1460,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_WriteSync_0500 * @tc.number SUB_STORAGE_FileIO_WriteSync_0500
* @tc.name fileio_test_write_sync_005 * @tc.name fileio_test_write_sync_005
* @tc.desc Function of API, invaild offset. * @tc.desc Function of API, invalid offset.
*/ */
it('fileio_test_write_sync_005', 0, async function () { it('fileio_test_write_sync_005', 0, async function () {
let fpath = await nextFileName('fileio_test_write_sync_005'); let fpath = await nextFileName('fileio_test_write_sync_005');
...@@ -1483,7 +1483,7 @@ describe('fileIOTest', function () { ...@@ -1483,7 +1483,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_WriteSync_0600 * @tc.number SUB_STORAGE_FileIO_WriteSync_0600
* @tc.name fileio_test_write_sync_006 * @tc.name fileio_test_write_sync_006
* @tc.desc Function of API, invaild length. * @tc.desc Function of API, invalid length.
*/ */
it('fileio_test_write_sync_006', 0, async function () { it('fileio_test_write_sync_006', 0, async function () {
let fpath = await nextFileName('fileio_test_write_sync_006'); let fpath = await nextFileName('fileio_test_write_sync_006');
...@@ -1521,7 +1521,7 @@ describe('fileIOTest', function () { ...@@ -1521,7 +1521,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_WriteSync_0800 * @tc.number SUB_STORAGE_FileIO_WriteSync_0800
* @tc.name fileio_test_write_sync_008 * @tc.name fileio_test_write_sync_008
* @tc.desc Function of API, invaild parameter. * @tc.desc Function of API, invalid parameter.
*/ */
it('fileio_test_write_sync_008', 0, async function () { it('fileio_test_write_sync_008', 0, async function () {
try { try {
...@@ -1630,7 +1630,7 @@ describe('fileIOTest', function () { ...@@ -1630,7 +1630,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_ReadSync_0300 * @tc.number SUB_STORAGE_FileIO_ReadSync_0300
* @tc.name fileio_test_read_sync_003 * @tc.name fileio_test_read_sync_003
* @tc.desc Function of API, invaild offset * @tc.desc Function of API, invalid offset
*/ */
it('fileio_test_read_sync_003', 0, async function () { it('fileio_test_read_sync_003', 0, async function () {
let fd let fd
...@@ -1654,7 +1654,7 @@ describe('fileIOTest', function () { ...@@ -1654,7 +1654,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_ReadSync_0300 * @tc.number SUB_STORAGE_FileIO_ReadSync_0300
* @tc.name fileio_test_read_sync_004 * @tc.name fileio_test_read_sync_004
* @tc.desc Function of API, invaild length. * @tc.desc Function of API, invalid length.
*/ */
it('fileio_test_read_sync_004', 0, async function () { it('fileio_test_read_sync_004', 0, async function () {
let fd let fd
...@@ -1717,7 +1717,7 @@ describe('fileIOTest', function () { ...@@ -1717,7 +1717,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_ReadSync_0700 * @tc.number SUB_STORAGE_FileIO_ReadSync_0700
* @tc.name fileio_test_read_sync_007 * @tc.name fileio_test_read_sync_007
* @tc.desc Function of API, invaild position. * @tc.desc Function of API, invalid position.
*/ */
it('fileio_test_read_sync_007', 0, async function () { it('fileio_test_read_sync_007', 0, async function () {
let fpath = await nextFileName('fileio_test_read_sync_007'); let fpath = await nextFileName('fileio_test_read_sync_007');
...@@ -2170,7 +2170,7 @@ describe('fileIOTest', function () { ...@@ -2170,7 +2170,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_copyFileSync_0100 * @tc.number SUB_STORAGE_FileIO_copyFileSync_0100
* @tc.name fileio_test_copy_file_sync_001 * @tc.name fileio_test_copy_file_sync_001
* @tc.desc Function of API, copy. fpatch is invaild, fpathTarget is vaild, same path, file not same. * @tc.desc Function of API, copy. fpatch is invalid, fpathTarget is vaild, same path, file not same.
*/ */
it('fileio_test_copy_file_sync_001', 0, async function () { it('fileio_test_copy_file_sync_001', 0, async function () {
let fpath = await nextFileName('fileio_test_copy_file_sync_001') + 'd' let fpath = await nextFileName('fileio_test_copy_file_sync_001') + 'd'
...@@ -2187,7 +2187,7 @@ describe('fileIOTest', function () { ...@@ -2187,7 +2187,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_copyFileSync_0200 * @tc.number SUB_STORAGE_FileIO_copyFileSync_0200
* @tc.name fileio_test_copy_file_sync_002 * @tc.name fileio_test_copy_file_sync_002
* @tc.desc Function of API, copy. fpatch is vaild, fpathTarget is invaild. * @tc.desc Function of API, copy. fpatch is vaild, fpathTarget is invalid.
*/ */
it('fileio_test_copy_file_sync_002', 0, async function () { it('fileio_test_copy_file_sync_002', 0, async function () {
let fpath = await nextFileName('fileio_test_copy_file_sync_002'); let fpath = await nextFileName('fileio_test_copy_file_sync_002');
...@@ -2262,7 +2262,7 @@ describe('fileIOTest', function () { ...@@ -2262,7 +2262,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_copyFileSync_0600 * @tc.number SUB_STORAGE_FileIO_copyFileSync_0600
* @tc.name fileio_test_copy_file_sync_006 * @tc.name fileio_test_copy_file_sync_006
* @tc.desc Function of API, copy. fpathTarget is invaild. * @tc.desc Function of API, copy. fpathTarget is invalid.
*/ */
it('fileio_test_copy_file_sync_006', 0, async function () { it('fileio_test_copy_file_sync_006', 0, async function () {
let fpath = await nextFileName('fileio_test_copy_file_sync_006'); let fpath = await nextFileName('fileio_test_copy_file_sync_006');
...@@ -2279,7 +2279,7 @@ describe('fileIOTest', function () { ...@@ -2279,7 +2279,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_copyFileSync_0700 * @tc.number SUB_STORAGE_FileIO_copyFileSync_0700
* @tc.name fileio_test_copy_file_sync_007 * @tc.name fileio_test_copy_file_sync_007
* @tc.desc Function of API, copy. fpatch is invaild, fpathTarget is invaild. * @tc.desc Function of API, copy. fpatch is invalid, fpathTarget is invalid.
*/ */
it('fileio_test_copy_file_sync_007', 0, async function () { it('fileio_test_copy_file_sync_007', 0, async function () {
try { try {
...@@ -2440,7 +2440,7 @@ describe('fileIOTest', function () { ...@@ -2440,7 +2440,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_truncateSync_0200 * @tc.number SUB_STORAGE_FileIO_truncateSync_0200
* @tc.name fileio_test_truncate_sync_002 * @tc.name fileio_test_truncate_sync_002
* @tc.desc Function of API, no invaild parameter. * @tc.desc Function of API, no invalid parameter.
*/ */
it('fileio_test_truncate_sync_002', 0, async function () { it('fileio_test_truncate_sync_002', 0, async function () {
let fpath = await nextFileName('fileio_test_truncate_sync_001'); let fpath = await nextFileName('fileio_test_truncate_sync_001');
...@@ -2511,7 +2511,7 @@ describe('fileIOTest', function () { ...@@ -2511,7 +2511,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_RenameSync_0200 * @tc.number SUB_STORAGE_FileIO_RenameSync_0200
* @tc.name fileio_test_rename_sync_002 * @tc.name fileio_test_rename_sync_002
* @tc.desc Function of API, renameSync. The test file is exist, fpathTarget is invaild. * @tc.desc Function of API, renameSync. The test file is exist, fpathTarget is invalid.
*/ */
it('fileio_test_rename_sync_002', 0, async function () { it('fileio_test_rename_sync_002', 0, async function () {
let fpath = await nextFileName('fileio_test_rename_sync_002'); let fpath = await nextFileName('fileio_test_rename_sync_002');
...@@ -2732,7 +2732,7 @@ describe('fileIOTest', function () { ...@@ -2732,7 +2732,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_FchmodSync_0400 * @tc.number SUB_STORAGE_FileIO_FchmodSync_0400
* @tc.name fileio_test_fchmod_sync_004 * @tc.name fileio_test_fchmod_sync_004
* @tc.desc Function of API, mode is invaild. The test file is exist. * @tc.desc Function of API, mode is invalid. The test file is exist.
*/ */
it('fileio_test_fchmod_sync_004', 0, async function () { it('fileio_test_fchmod_sync_004', 0, async function () {
let fpath = await nextFileName('fileio_test_fchmod_sync_004'); let fpath = await nextFileName('fileio_test_fchmod_sync_004');
...@@ -3067,7 +3067,7 @@ describe('fileIOTest', function () { ...@@ -3067,7 +3067,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_FtruncateSync_0200 * @tc.number SUB_STORAGE_FileIO_FtruncateSync_0200
* @tc.name fileio_test_ftruncate_sync_002 * @tc.name fileio_test_ftruncate_sync_002
* @tc.desc Function of API, invaild parameter. The test file is not exist. * @tc.desc Function of API, invalid parameter. The test file is not exist.
*/ */
it('fileio_test_ftruncate_sync_002', 0, async function () { it('fileio_test_ftruncate_sync_002', 0, async function () {
try { try {
...@@ -3082,7 +3082,7 @@ describe('fileIOTest', function () { ...@@ -3082,7 +3082,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_FtruncateSync_0300 * @tc.number SUB_STORAGE_FileIO_FtruncateSync_0300
* @tc.name fileio_test_ftruncate_sync_003 * @tc.name fileio_test_ftruncate_sync_003
* @tc.desc Function of API, invaild parameter. The test file is not exist. * @tc.desc Function of API, invalid parameter. The test file is not exist.
*/ */
it('fileio_test_ftruncate_sync_003', 0, async function () { it('fileio_test_ftruncate_sync_003', 0, async function () {
try { try {
...@@ -3150,7 +3150,7 @@ describe('fileIOTest', function () { ...@@ -3150,7 +3150,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_FsyncSync_0200 * @tc.number SUB_STORAGE_FileIO_FsyncSync_0200
* @tc.name fileio_test_fsync_sync_002 * @tc.name fileio_test_fsync_sync_002
* @tc.desc Function of API, invaild parameter. * @tc.desc Function of API, invalid parameter.
*/ */
it('fileio_test_fsync_sync_002', 0, async function () { it('fileio_test_fsync_sync_002', 0, async function () {
try { try {
...@@ -3233,7 +3233,7 @@ describe('fileIOTest', function () { ...@@ -3233,7 +3233,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_MkdirSync_RmdirSync_0400 * @tc.number SUB_STORAGE_FileIO_MkdirSync_RmdirSync_0400
* @tc.name fileio_test_mkdir_sync_rmdir_sync_004 * @tc.name fileio_test_mkdir_sync_rmdir_sync_004
* @tc.desc Function of API, invaild parameter. The test file is not exist. * @tc.desc Function of API, invalid parameter. The test file is not exist.
*/ */
it('fileio_test_mkdir_sync_rmdir_sync_004', 0, async function () { it('fileio_test_mkdir_sync_rmdir_sync_004', 0, async function () {
try { try {
...@@ -3248,7 +3248,7 @@ describe('fileIOTest', function () { ...@@ -3248,7 +3248,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_MkdirSync_RmdirSync_0500 * @tc.number SUB_STORAGE_FileIO_MkdirSync_RmdirSync_0500
* @tc.name fileio_test_mkdir_sync_rmdir_sync_005 * @tc.name fileio_test_mkdir_sync_rmdir_sync_005
* @tc.desc Function of API, invaild parameter. The test file is not exist. * @tc.desc Function of API, invalid parameter. The test file is not exist.
*/ */
it('fileio_test_mkdir_sync_rmdir_sync_005', 0, async function () { it('fileio_test_mkdir_sync_rmdir_sync_005', 0, async function () {
try { try {
...@@ -3583,7 +3583,7 @@ describe('fileIOTest', function () { ...@@ -3583,7 +3583,7 @@ describe('fileIOTest', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_ChownSync_0200 * @tc.number SUB_STORAGE_FileIO_ChownSync_0200
* @tc.name fileio_test_chown_sync_002 * @tc.name fileio_test_chown_sync_002
* @tc.desc Function of API, invaild fd. The test file is not exist. * @tc.desc Function of API, invalid fd. The test file is not exist.
*/ */
it('fileio_test_chown_sync_002', 0, async function () { it('fileio_test_chown_sync_002', 0, async function () {
let fpath = await nextFileName('fileio_test_chown_sync_002'); let fpath = await nextFileName('fileio_test_chown_sync_002');
......
...@@ -564,7 +564,7 @@ describe('fileIOTestStream', function () { ...@@ -564,7 +564,7 @@ describe('fileIOTestStream', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_stream_CreateStreamSync_2400 * @tc.number SUB_STORAGE_FileIO_stream_CreateStreamSync_2400
* @tc.name fileio_test_stream_create_stream_sync_024 * @tc.name fileio_test_stream_create_stream_sync_024
* @tc.desc Function of API, invaild fpath. * @tc.desc Function of API, invalid fpath.
*/ */
it('fileio_test_stream_create_stream_sync_024', 0, function () { it('fileio_test_stream_create_stream_sync_024', 0, function () {
try { try {
...@@ -579,7 +579,7 @@ describe('fileIOTestStream', function () { ...@@ -579,7 +579,7 @@ describe('fileIOTestStream', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_stream_CreateStreamSync_2500 * @tc.number SUB_STORAGE_FileIO_stream_CreateStreamSync_2500
* @tc.name fileio_test_stream_create_stream_sync_025 * @tc.name fileio_test_stream_create_stream_sync_025
* @tc.desc Function of API, invaild mode. * @tc.desc Function of API, invalid mode.
*/ */
it('fileio_test_stream_create_stream_sync_025', 0, async function () { it('fileio_test_stream_create_stream_sync_025', 0, async function () {
let fpath = await nextFileName('fileio_test_stream_create_stream_sync_025'); let fpath = await nextFileName('fileio_test_stream_create_stream_sync_025');
...@@ -1232,7 +1232,7 @@ describe('fileIOTestStream', function () { ...@@ -1232,7 +1232,7 @@ describe('fileIOTestStream', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_stream_FdopenStreamSync_2400 * @tc.number SUB_STORAGE_FileIO_stream_FdopenStreamSync_2400
* @tc.name fileio_test_stream_fdopen_stream_sync_024 * @tc.name fileio_test_stream_fdopen_stream_sync_024
* @tc.desc Function of API, invaild fildes. The test file is exist. * @tc.desc Function of API, invalid fields. The test file is not exist.
*/ */
it('fileio_test_stream_fdopen_stream_sync_024', 0, async function () { it('fileio_test_stream_fdopen_stream_sync_024', 0, async function () {
try { try {
...@@ -1247,7 +1247,7 @@ describe('fileIOTestStream', function () { ...@@ -1247,7 +1247,7 @@ describe('fileIOTestStream', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_stream_FdopenStreamSync_2400 * @tc.number SUB_STORAGE_FileIO_stream_FdopenStreamSync_2400
* @tc.name fileio_test_stream_fdopen_stream_sync_025 * @tc.name fileio_test_stream_fdopen_stream_sync_025
* @tc.desc Function of API, invaild mode. The test file is exist. * @tc.desc Function of API, invalid mode. The test file is exist.
*/ */
it('fileio_test_stream_fdopen_stream_sync_025', 0, async function () { it('fileio_test_stream_fdopen_stream_sync_025', 0, async function () {
let fpath = await nextFileName('fileio_test_stream_fdopen_stream_sync_025'); let fpath = await nextFileName('fileio_test_stream_fdopen_stream_sync_025');
...@@ -1457,7 +1457,7 @@ describe('fileIOTestStream', function () { ...@@ -1457,7 +1457,7 @@ describe('fileIOTestStream', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_stream_WriteSync_0100 * @tc.number SUB_STORAGE_FileIO_stream_WriteSync_0100
* @tc.name fileio_test_stream_write_sync_001 * @tc.name fileio_test_stream_write_sync_001
* @tc.desc Function of API, invaild encoding. * @tc.desc Function of API, invalid encoding.
*/ */
it('fileio_test_stream_write_sync_001', 0, async function () { it('fileio_test_stream_write_sync_001', 0, async function () {
let fpath = await nextFileName('fileio_test_stream_write_sync_001'); let fpath = await nextFileName('fileio_test_stream_write_sync_001');
...@@ -1689,7 +1689,7 @@ describe('fileIOTestStream', function () { ...@@ -1689,7 +1689,7 @@ describe('fileIOTestStream', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_stream_WriteSync_0900 * @tc.number SUB_STORAGE_FileIO_stream_WriteSync_0900
* @tc.name fileio_test_stream_write_sync_009 * @tc.name fileio_test_stream_write_sync_009
* @tc.desc Function of API, invaild fcontent. * @tc.desc Function of API, invalid fcontent.
*/ */
it('fileio_test_stream_write_sync_009', 0, async function () { it('fileio_test_stream_write_sync_009', 0, async function () {
let fpath = await nextFileName('fileio_test_stream_write_sync_009'); let fpath = await nextFileName('fileio_test_stream_write_sync_009');
...@@ -1709,7 +1709,7 @@ describe('fileIOTestStream', function () { ...@@ -1709,7 +1709,7 @@ describe('fileIOTestStream', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_stream_WriteSync_1000 * @tc.number SUB_STORAGE_FileIO_stream_WriteSync_1000
* @tc.name fileio_test_stream_write_sync_010 * @tc.name fileio_test_stream_write_sync_010
* @tc.desc Function of API, invaild encoding. * @tc.desc Function of API, invalid encoding.
*/ */
it('fileio_test_stream_write_sync_010', 0, async function () { it('fileio_test_stream_write_sync_010', 0, async function () {
let fpath = await nextFileName('fileio_test_stream_write_sync_010'); let fpath = await nextFileName('fileio_test_stream_write_sync_010');
...@@ -1732,7 +1732,7 @@ describe('fileIOTestStream', function () { ...@@ -1732,7 +1732,7 @@ describe('fileIOTestStream', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_stream_WriteSync_1100 * @tc.number SUB_STORAGE_FileIO_stream_WriteSync_1100
* @tc.name fileio_test_stream_write_sync_011 * @tc.name fileio_test_stream_write_sync_011
* @tc.desc Function of API, invaild position. * @tc.desc Function of API, invalid position.
*/ */
it('fileio_test_stream_write_sync_011', 0, async function () { it('fileio_test_stream_write_sync_011', 0, async function () {
let fpath = await nextFileName('fileio_test_stream_write_sync_011'); let fpath = await nextFileName('fileio_test_stream_write_sync_011');
...@@ -1755,7 +1755,7 @@ describe('fileIOTestStream', function () { ...@@ -1755,7 +1755,7 @@ describe('fileIOTestStream', function () {
/** /**
* @tc.number SUB_STORAGE_FileIO_stream_WriteSync_1200 * @tc.number SUB_STORAGE_FileIO_stream_WriteSync_1200
* @tc.name fileio_test_stream_write_sync_012 * @tc.name fileio_test_stream_write_sync_012
* @tc.desc Function of API, invaild offset. * @tc.desc Function of API, invalid offset.
*/ */
it('fileio_test_stream_write_sync_012', 0, async function () { it('fileio_test_stream_write_sync_012', 0, async function () {
let fpath = await nextFileName('fileio_test_stream_write_sync_012'); let fpath = await nextFileName('fileio_test_stream_write_sync_012');
......
...@@ -35,7 +35,7 @@ describe('fileio_hash', function () { ...@@ -35,7 +35,7 @@ describe('fileio_hash', function () {
try { try {
let str = await fileio.hash(fpath,'md5'); let str = await fileio.hash(fpath,'md5');
console.log('fileio_test_hash_async_000 hash vaule is ' + str); console.log('fileio_test_hash_async_000 hash value is ' + str);
expect(str == '5EB63BBBE01EEED093CB22BB8F5ACDC3').assertTrue(); expect(str == '5EB63BBBE01EEED093CB22BB8F5ACDC3').assertTrue();
expect(fileio.unlinkSync(fpath) == null).assertTrue(); expect(fileio.unlinkSync(fpath) == null).assertTrue();
done(); done();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册