Merge pull request #9 from overleaf/em-disable-gcs-decompress

Disable auto-decompression in GCS persistor
This commit is contained in:
Eric Mc Sween 2020-08-19 07:42:16 -04:00 committed by GitHub
commit 2fd9b6c61b
2 changed files with 8 additions and 1 deletions

View file

@ -102,7 +102,7 @@ module.exports = class GcsPersistor extends AbstractPersistor {
const stream = this.storage
.bucket(bucketName)
.file(key)
.createReadStream(opts)
.createReadStream({ decompress: false, ...opts })
// ingress to us from gcs
const observer = new PersistorHelper.ObserverStream({

View file

@ -160,6 +160,12 @@ describe('GcsPersistorTests', function () {
expect(GcsFile.createReadStream).to.have.been.called
})
it('disables automatic decompression', function () {
expect(GcsFile.createReadStream).to.have.been.calledWith({
decompress: false
})
})
it('pipes the stream through the meter', function () {
expect(ReadStream.pipe).to.have.been.calledWith(
sinon.match.instanceOf(Transform)
@ -183,6 +189,7 @@ describe('GcsPersistorTests', function () {
it('passes the byte range on to GCS', function () {
expect(GcsFile.createReadStream).to.have.been.calledWith({
decompress: false,
start: 5,
end: 10
})