@cloudbase/node-sdk
Version:
tencent cloud base server sdk for node.js
48 lines (43 loc) • 1.62 kB
text/typescript
import tcb from '../../src/index'
import assert from 'assert'
import config from '../config.local'
import fs from 'fs'
import { ERROR } from '../../src/const/code'
import { ICustomErrRes } from '../../src/type'
let fileContent = fs.createReadStream(`${__dirname}/cos.jpeg`)
describe('storage.downloadFile: 下载文件', () => {
const app = tcb.init(config)
it('无效连接下载', async () => {
try {
const result = await app.downloadFile({
fileID: 'unexistFileID'
// tempFilePath: '/Users/jimmyzhang/repo/tcb-admin-node/test/storage/my-photo.png'
})
} catch (e) {
assert((<ICustomErrRes>e).code === ERROR.STORAGE_FILE_NONEXIST.code)
}
}, 30000)
it('获取文件链接', async () => {
// 上传文件
const result1 = await app.uploadFile({
// cloudPath: "test-admin.jpeg",
cloudPath: 'a|b测试.jpeg',
fileContent
})
expect(result1.fileID).not.toBeNull()
console.log(result1)
const fileID = result1.fileID
// 下载文件
const result2 = await app.downloadFile({
fileID
// tempFilePath: '/Users/jimmyzhang/repo/tcb-admin-node/test/storage/my-photo.png'
})
assert(result2.message, '文件下载完成')
// if (!result.code)
// require('fs').writeFileSync(
// '/Users/jimmyzhang/repo/tcb-admin-node/test/storage/my-photo.png',
// result.fileContent
// )
// assert(result, '下载文件结果')
}, 30000)
})