【发布时间】:2021-09-26 14:00:59
【问题描述】:
如何在 Node.js 中存根 S3 上传?
我正在使用摩卡和诗乃。而且我有一个导出包含上传方法的类实例的文件。它看起来像这样:
// storage.ts
import * as AWS from 'aws-sdk';
import archiver from 'archiver';
import retry from 'bluebird-retry';
export class Storage {
private readonly s3: AWS.S3 = new AWS.S3({
endpoint: MINIO_ENDPOINT,
accessKeyId: AWS_ACCESS_KEY_ID,
secretAccessKey: AWS_SECRET_ACCESS_KEY,
s3ForcePathStyle: true,
signatureVersion: 'v4',
});
private readonly uploadBucket: string = UPLOAD_BUCKET;
private readonly downloadBucket: string = DOWNLOAD_BUCKET;
public async upload(localPath: string, s3Key: string, onProgress: (progress: number) => void): Promise<void> {
await retry(async () => { // Be careful, it will influence stub.
const stat = fse.statSync(localPath);
let readable: stream.Readable;
let archive: archiver.Archiver | undefined;
if (stat.isFile()) {
readable = fse.createReadStream(localPath);
} else {
archive = archiver('zip', { zlib: { level: 0 } }).directory(localPath, false);
readable = archive;
}
const request = this.s3.upload({ Bucket: this.uploadBucket, Key: s3Key, Body: readable });
request.on('httpUploadProgress', ({ loaded }) => {
onProgress(loaded);
});
if (archive) {
archive.finalize().catch(console.error);
}
await request.promise().catch((err) => {
fse.removeSync(localPath);
throw err;
});
}, { max_tries: UPLOAD_RETRY_TIMES, throw_original: true });
}
}
export const storage = new Storage();
我尝试在我的单元测试中存根这个上传方法,它看起来像:
import { storage } from './storage';
import * as AWS from 'aws-sdk';
import sinon from 'sinon';
describe('Storage', () => {
let sandbox: sinon.SinonSandbox;
before(() => {
sandbox = sinon.createSandbox();
});
afterEach(() => {
sandbox.restore();
});
it('upload', async () => {
const s3Stub = sandbox.stub(AWS.S3.prototype, 'upload'); // something wrong
await storage.upload(
'./package.json',
's3Key',
uploadBytes => { return uploadBytes; });
expect(s3Stub).to.have.callCount(1);
s3Stub.restore();
});
});
我得到了一个错误:
Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
我想测试一下上传方法,但是真的不要上传文件到s3。
我该怎么办?
谢谢大家。
【问题讨论】:
标签: javascript node.js amazon-s3 mocha.js sinon