Amend: tests for populating S3 settings from environment variable

This commit is contained in:
Michael Mazour 2018-07-06 11:05:40 +01:00
parent 3e1ef3af63
commit c4e3f9eb02

View file

@ -0,0 +1,22 @@
assert = require("chai").assert
sinon = require('sinon')
chai = require('chai')
should = chai.should()
expect = chai.expect
modulePath = "../../../app/js/BucketController.js"
SandboxedModule = require('sandboxed-module')
describe "Settings", ->
describe "s3", ->
it "should use JSONified env var if present", (done)->
s3_settings =
key: 'default_key'
secret: 'default_secret'
bucket1:
auth_key: 'bucket1_key'
auth_secret: 'bucket1_secret'
process.env['S3_CREDENTIALS'] = JSON.stringify s3_settings
settings =require('settings-sharelatex')
expect(settings.filestore.s3).to.deep.equal s3_settings
done()