mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
114 lines
3.9 KiB
JavaScript
114 lines
3.9 KiB
JavaScript
'use strict';
|
|
|
|
const expect = require('chai').expect;
|
|
const Serverless = require('../../../Serverless');
|
|
const validateS3BucketName = require('./validateS3BucketName');
|
|
|
|
describe('#validateS3BucketName()', () => {
|
|
const serverless = new Serverless();
|
|
const awsPlugin = {};
|
|
|
|
beforeEach(() => {
|
|
awsPlugin.serverless = serverless;
|
|
awsPlugin.options = {
|
|
stage: 'dev',
|
|
region: 'us-east-1',
|
|
};
|
|
|
|
awsPlugin.serverless.config.servicePath = true;
|
|
|
|
Object.assign(awsPlugin, validateS3BucketName);
|
|
});
|
|
|
|
describe('#validateS3BucketName()', () => {
|
|
it('should reject an ip address as a name', () =>
|
|
awsPlugin.validateS3BucketName('127.0.0.1')
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('cannot look like an IPv4 address'))
|
|
);
|
|
|
|
it('should reject names that are too long', () => {
|
|
const bucketName = Array.from({ length: 64 }, () => 'j').join('');
|
|
return awsPlugin.validateS3BucketName(bucketName)
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('longer than 63 characters'));
|
|
});
|
|
|
|
it('should reject names that are too short', () =>
|
|
awsPlugin.validateS3BucketName('12')
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('shorter than 3 characters'))
|
|
);
|
|
|
|
it('should reject names that contain invalid characters', () =>
|
|
awsPlugin.validateS3BucketName('this has b@d characters')
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('contains invalid characters'))
|
|
);
|
|
|
|
it('should reject names that have consecutive periods', () =>
|
|
awsPlugin.validateS3BucketName('otherwise..valid.name')
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('cannot contain consecutive periods'))
|
|
);
|
|
|
|
it('should reject names that start with a dash', () =>
|
|
awsPlugin.validateS3BucketName('-invalid.name')
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('start with a letter or number'))
|
|
);
|
|
|
|
it('should reject names that start with a period', () =>
|
|
awsPlugin.validateS3BucketName('.invalid.name')
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('start with a letter or number'))
|
|
);
|
|
|
|
it('should reject names that end with a dash', () =>
|
|
awsPlugin.validateS3BucketName('invalid.name-')
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('end with a letter or number'))
|
|
);
|
|
|
|
it('should reject names that end with a period', () =>
|
|
awsPlugin.validateS3BucketName('invalid.name.')
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('end with a letter or number'))
|
|
);
|
|
|
|
it('should reject names that contain uppercase letters', () =>
|
|
awsPlugin.validateS3BucketName('otherwise.Valid.name')
|
|
.then(() => {
|
|
throw new Error('Should not get here');
|
|
})
|
|
.catch(err => expect(err.message).to.contain('cannot contain uppercase letters'))
|
|
);
|
|
|
|
it('should accept valid names', () =>
|
|
awsPlugin.validateS3BucketName('1.this.is.valid.2')
|
|
.then(() => awsPlugin.validateS3BucketName('another.valid.name'))
|
|
.then(() => awsPlugin.validateS3BucketName('1-2-3'))
|
|
.then(() => awsPlugin.validateS3BucketName('123'))
|
|
.then(() => awsPlugin.validateS3BucketName('should.be.allowed-to-mix'))
|
|
);
|
|
});
|
|
});
|