未验证 提交 9e9a155f 编写于 作者: O openharmony_ci 提交者: Gitee

!7065 Add XTS for lstat and symlink interfaces of mod_fs

Merge pull request !7065 from futurezhou/lstat
/*
* Copyright (C) 2022 Huawei Device Co., Ltd.
* Copyright (C) 2022-2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
......@@ -13,15 +13,23 @@
* limitations under the License.
*/
import fileIOFdatasync from './members/fdatasync.test.js'
import fileIOFsync from './members/fsync.test.js'
import fileIOLstat from './members/lstat.test.js'
import fileIOOpen from './members/open.test.js'
import fileIORead from './members/read.test.js'
import fileIOStat from './members/stat.test.js'
import fileIOSymlink from './members/symlink.test.js'
import fileIOTruncate from './members/truncate.test.js'
import fileIOWrite from './members/write.test.js'
export default function testsuite() {
fileIOFdatasync()
fileIOFsync()
fileIOLstat()
fileIOOpen()
fileIORead()
fileIOStat()
fileIOSymlink()
fileIOTruncate()
fileIOWrite()
}
/*
* Copyright (C) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the 'License');
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
fileIO, FILE_CONTENT, prepareFile, nextFileName, describe, it, expect,
} from '../Common';
export default function fileIOSymlink() {
describe('fileIO_fs_symlink', function () {
/**
* @tc.number SUB_DF_FILEIO_SYMLINK_SYNC_0000
* @tc.name fileIO_test_symlink_sync_000
* @tc.desc Test symlinkSync() interfaces.
* Create a symbolic link to verify normal function.
* @tc.size MEDIUM
* @tc.type Functoin
* @tc.level Level 0
* @tc.require
*/
it('fileIO_test_symlink_sync_000', 0, async function () {
let fpath = await nextFileName('fileIO_test_symlink_sync_000');
expect(prepareFile(fpath, FILE_CONTENT)).assertTrue();
try {
fileIO.symlinkSync(fpath, fpath + 'link0');
expect(fileIO.accessSync(fpath + 'link0')).assertTrue();
fileIO.unlinkSync(fpath);
fileIO.unlinkSync(fpath + 'link0');
} catch (e) {
console.log('fileIO_test_symlink_sync_000 has failed for ' + e.message + ', code: ' + e.code);
expect(false).assertTrue();
}
});
/**
* @tc.number SUB_DF_FILEIO_SYMLINK_SYNC_0100
* @tc.name fileIO_test_symlink_sync_001
* @tc.desc Test symlinkSync() interfaces.
* Missing parameter.
* @tc.size MEDIUM
* @tc.type Functoin
* @tc.level Level 0
* @tc.require
*/
it('fileIO_test_symlink_sync_001', 0, async function () {
let fpath = await nextFileName('fileIO_test_symlink_sync_001');
expect(prepareFile(fpath, FILE_CONTENT)).assertTrue();
try {
fileIO.symlinkSync(fpath);
expect(false).assertTrue();
} catch (e) {
fileIO.unlinkSync(fpath);
console.log('fileIO_test_symlink_sync_001 has failed for ' + e.message + ', code: ' + e.code);
expect(e.code == 13900020 && e.message == 'Invalid argument').assertTrue();
}
});
/**
* @tc.number SUB_DF_FILEIO_SYMLINK_ASYNC_0000
* @tc.name fileIO_test_symlink_async_000
* @tc.desc Test SymlinkAsync interfaces. Promise.then().catch()
* Create a symbolic link to verify normal function.
* @tc.size MEDIUM
* @tc.type Functoin
* @tc.level Level 0
* @tc.require
*/
it('fileIO_test_symlink_async_000', 0, async function (done) {
let fpath = await nextFileName('fileIO_test_symlink_async_000');
expect(prepareFile(fpath, FILE_CONTENT)).assertTrue();
try {
fileIO.symlink(fpath, fpath + 'link3').then(() => {
expect(fileIO.accessSync(fpath + 'link3')).assertTrue();
fileIO.unlinkSync(fpath);
fileIO.unlinkSync(fpath + 'link3');
}).catch((err) => {
console.log('fileIO_test_symlink_async_000 error package: ' + JSON.stringify(err));
expect(false).assertTrue();
})
done();
} catch (e) {
console.log('fileIO_test_symlink_async_000 has failed for ' + e.message + ', code: ' + e.code);
expect(false).assertTrue();
}
});
/**
* @tc.number SUB_DF_FILEIO_SYMLINK_ASYNC_0100
* @tc.name fileIO_test_symlink_async_001
* @tc.desc Test SymlinkAsync interfaces. await Promise.
* Create a symbolic link to verify normal function.
* @tc.size MEDIUM
* @tc.type Functoin
* @tc.level Level 0
* @tc.require
*/
it('fileIO_test_symlink_async_001', 0, async function (done) {
let fpath = await nextFileName('fileIO_test_symlink_async_001');
expect(prepareFile(fpath, FILE_CONTENT)).assertTrue();
try {
await fileIO.symlink(fpath, fpath + 'link4');
expect(fileIO.accessSync(fpath + 'link4')).assertTrue();
fileIO.unlinkSync(fpath);
fileIO.unlinkSync(fpath + 'link4');
done();
} catch (e) {
console.log('fileIO_test_symlink_async_001 has failed for ' + e.message + ', code: ' + e.code);
expect(false).assertTrue();
}
});
/**
* @tc.number SUB_DF_FILEIO_SYMLINK_ASYNC_0200
* @tc.name fileIO_test_symlink_async_002
* @tc.desc Test SymlinkAsync interfaces. Promise.
* Create a symbolic link to verify normal function.
* @tc.size MEDIUM
* @tc.type Functoin
* @tc.level Level 0
* @tc.require
*/
it('fileIO_test_symlink_async_002', 0, async function (done) {
let fpath = await nextFileName('fileIO_test_symlink_async_002');
expect(prepareFile(fpath, FILE_CONTENT)).assertTrue();
try {
fileIO.symlink(fpath, fpath + 'link5', (err) => {
if (err) {
console.log('fileIO_test_symlink_async_002 error package: ' + JSON.stringify(err));
expect(false).assertTrue();
}
expect(fileIO.accessSync(fpath + 'link5')).assertTrue();
fileIO.unlinkSync(fpath);
fileIO.unlinkSync(fpath + 'link5');
done();
});
} catch (e) {
console.log('fileIO_test_symlink_async_002 has failed for ' + e.message + ', code: ' + e.code);
expect(false).assertTrue();
}
});
/**
* @tc.number SUB_DF_FILEIO_SYMLINK_ASYNC_0300
* @tc.name fileIO_test_symlink_async_003
* @tc.desc Test SymlinkAsync interfaces. Promise.
* Missing parameter.
* @tc.size MEDIUM
* @tc.type Functoin
* @tc.level Level 0
* @tc.require
*/
it('fileIO_test_symlink_async_003', 0, async function (done) {
let fpath = await nextFileName('fileIO_test_symlink_async_003');
expect(prepareFile(fpath, FILE_CONTENT)).assertTrue();
try {
await fileIO.symlink(fpath);
expect(false).assertTrue();
} catch (e) {
fileIO.unlinkSync(fpath);
console.log('fileIO_test_symlink_async_003 has failed for ' + e.message + ', code: ' + e.code);
expect(e.code == 13900020 && e.message == 'Invalid argument').assertTrue();
done();
}
});
});
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册