提交 6911cd26 编写于 作者: R raoxian

update fileio testcase

Signed-off-by: Nraoxian <raoxian@huawei.com>
上级 bdcdbd83
...@@ -36,16 +36,19 @@ describe('fileio_stream', function () { ...@@ -36,16 +36,19 @@ describe('fileio_stream', function () {
try { try {
let ss = fileio.createStreamSync(fpath, 'r+'); let ss = fileio.createStreamSync(fpath, 'r+');
expect(ss !== null).assertTrue(); expect(ss !== null).assertTrue();
ss.write(new ArrayBuffer(4096), { let length = 4096;
ss.write(new ArrayBuffer(length), {
position: 1 position: 1
}).then(function (len) { }).then(function (len) {
expect(len == (FILE_CONTENT.length - 1)).assertTrue(); expect(len == length).assertTrue();
expect(fileio.unlinkSync(fpath) == null).assertTrue(); fileio.unlinkSync(fpath);
ss.closeSync();
done();
}) })
done(); } catch (err) {
} catch (e) { console.info('fileio_test_stream_write_async_000 has failed for ' + err);
console.log('fileio_test_stream_write_async_000 has failed for ' + e);
expect(null).assertFail(); expect(null).assertFail();
done();
} }
}); });
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册