mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
105 lines
2.9 KiB
JavaScript
105 lines
2.9 KiB
JavaScript
'use strict'
|
|
|
|
const expect = require('chai').expect
|
|
const os = require('os')
|
|
const path = require('path')
|
|
const { outputFile, lstat, remove: rmDir } = require('fs-extra')
|
|
const overrideEnv = require('process-utils/override-env')
|
|
const credentials = require('../../../../../../lib/plugins/aws/utils/credentials')
|
|
|
|
describe('#credentials', () => {
|
|
const credentialsDirPath = path.join(os.homedir(), '.aws')
|
|
const credentialsFilePath = path.join(credentialsDirPath, 'credentials')
|
|
|
|
before(async () => {
|
|
// Abort if credentials are found in home directory
|
|
// (it should not be the case, as home directory is mocked to point temp dir)
|
|
return lstat(credentialsDirPath).then(
|
|
() => {
|
|
throw new Error('Unexpected ~/.aws directory, related tests aborted')
|
|
},
|
|
(error) => {
|
|
if (error.code === 'ENOENT') return
|
|
throw error
|
|
},
|
|
)
|
|
})
|
|
|
|
afterEach(() => rmDir(credentialsDirPath))
|
|
|
|
it('should resolve file profiles', async () => {
|
|
const profiles = new Map([
|
|
[
|
|
'my-profile1',
|
|
{
|
|
accessKeyId: 'my-old-profile-key1',
|
|
secretAccessKey: 'my-old-profile-secret1',
|
|
},
|
|
],
|
|
[
|
|
'my-profile2',
|
|
{
|
|
accessKeyId: 'my-old-profile-key2',
|
|
secretAccessKey: 'my-old-profile-secret2',
|
|
},
|
|
],
|
|
])
|
|
|
|
const [[profile1Name, profile1], [profile2Name, profile2]] =
|
|
Array.from(profiles)
|
|
const credentialsFileContent = `${[
|
|
`[${[profile1Name]}]`,
|
|
`aws_access_key_id = ${profile1.accessKeyId}`,
|
|
`aws_secret_access_key = ${profile1.secretAccessKey}`,
|
|
'',
|
|
`[${[profile2Name]}]`,
|
|
`aws_access_key_id = ${profile2.accessKeyId}`,
|
|
`aws_secret_access_key = ${profile2.secretAccessKey}`,
|
|
].join('\n')}\n`
|
|
|
|
await outputFile(credentialsFilePath, credentialsFileContent)
|
|
const resolvedProfiles = await credentials.resolveFileProfiles()
|
|
|
|
expect(resolvedProfiles).to.deep.equal(profiles)
|
|
})
|
|
|
|
it('should resolve env credentials', () =>
|
|
overrideEnv(() => {
|
|
process.env.AWS_ACCESS_KEY_ID = 'foo'
|
|
process.env.AWS_SECRET_ACCESS_KEY = 'bar'
|
|
expect(credentials.resolveEnvCredentials()).to.deep.equal({
|
|
accessKeyId: 'foo',
|
|
secretAccessKey: 'bar',
|
|
})
|
|
}))
|
|
|
|
it('should save file profiles', async () => {
|
|
const profiles = new Map([
|
|
[
|
|
'my-profileA',
|
|
{
|
|
accessKeyId: 'my-old-profile-key1',
|
|
secretAccessKey: 'my-old-profile-secret1',
|
|
},
|
|
],
|
|
[
|
|
'my-profileB',
|
|
{
|
|
accessKeyId: 'my-old-profile-key2',
|
|
secretAccessKey: 'my-old-profile-secret2',
|
|
},
|
|
],
|
|
])
|
|
|
|
return credentials
|
|
.saveFileProfiles(profiles)
|
|
.then(() =>
|
|
credentials
|
|
.resolveFileProfiles()
|
|
.then((resolvedProfiles) =>
|
|
expect(resolvedProfiles).to.deep.equal(profiles),
|
|
),
|
|
)
|
|
})
|
|
})
|