Skip to content

Commit d8c6721

Browse files
authored
fix large object upload and and update functional test for 0 byte file upload (#1396)
1 parent bcbd469 commit d8c6721

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

src/internal/client.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,7 @@ export class TypedClient {
15961596

15971597
// Inserts correct `content-type` attribute based on metaData and filePath
15981598
metaData = insertContentType(metaData || {}, filePath)
1599-
const stat = await fsp.lstat(filePath)
1599+
const stat = await fsp.stat(filePath)
16001600
return await this.putObject(bucketName, objectName, fs.createReadStream(filePath), stat.size, metaData)
16011601
}
16021602

@@ -1656,9 +1656,12 @@ export class TypedClient {
16561656
// Backward compatibility
16571657
size = this.maxObjectSize
16581658
}
1659+
if (size === 0) {
1660+
return this.uploadBuffer(bucketName, objectName, headers, Buffer.from(''))
1661+
}
16591662

16601663
const partSize = this.calculatePartSize(size)
1661-
if (typeof stream === 'string' || stream.readableLength === 0 || Buffer.isBuffer(stream) || size <= partSize) {
1664+
if (typeof stream === 'string' || Buffer.isBuffer(stream) || size <= partSize) {
16621665
const buf = isReadableStream(stream) ? await readAsBuffer(stream) : Buffer.from(stream)
16631666
return this.uploadBuffer(bucketName, objectName, headers, buf)
16641667
}

tests/functional/functional-tests.js

+17
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,23 @@ describe('functional tests', function () {
325325
.catch(done)
326326
},
327327
)
328+
329+
step(
330+
`putObject(bucketName, objectName, 0byte)_bucketName:${bucketName}, objectName:${_MultiPath100kbObjectBufferName}, 0bytefile`,
331+
(done) => {
332+
client
333+
.putObject(bucketName, '0bytefile', '')
334+
.then(() => done())
335+
.catch(done)
336+
},
337+
)
338+
339+
step(`removeObject(0byte, objectName)_bucketName:${bucketName}, objectName:0bytefile`, (done) => {
340+
client
341+
.removeObject(bucketName, '0bytefile')
342+
.then(() => done())
343+
.catch(done)
344+
})
328345
})
329346
describe('tests for putObject copyObject getObject getPartialObject statObject removeObject', function () {
330347
var tmpFileUpload = `${tmpDir}/${_100kbObjectName}`

0 commit comments

Comments
 (0)