mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
97 lines
2.6 KiB
JavaScript
97 lines
2.6 KiB
JavaScript
'use strict'
|
|
|
|
const chai = require('chai')
|
|
const Package = require('../../../../../lib/plugins/package/package')
|
|
const Serverless = require('../../../../../lib/serverless')
|
|
const sinon = require('sinon')
|
|
|
|
// Configure chai
|
|
chai.use(require('chai-as-promised'))
|
|
chai.use(require('sinon-chai'))
|
|
const expect = require('chai').expect
|
|
|
|
describe('Package', () => {
|
|
let serverless
|
|
let options
|
|
let pkg
|
|
|
|
beforeEach(async () => {
|
|
serverless = new Serverless({
|
|
commands: ['print'],
|
|
options: {},
|
|
serviceDir: null,
|
|
})
|
|
return serverless.init().then(() => {
|
|
options = {
|
|
stage: 'dev',
|
|
region: 'us-east-1',
|
|
}
|
|
pkg = new Package(serverless, options)
|
|
})
|
|
})
|
|
|
|
describe('#constructor()', () => {
|
|
it('should set the serverless instance', () => {
|
|
expect(pkg.serverless).to.equal(serverless)
|
|
})
|
|
|
|
it('should set the options', () => {
|
|
expect(pkg.options).to.equal(options)
|
|
})
|
|
|
|
it('should have commands', () => expect(pkg.commands).to.be.not.empty)
|
|
|
|
it('should have hooks', () => expect(pkg.hooks).to.be.not.empty)
|
|
})
|
|
|
|
describe('hooks', () => {
|
|
let packageServiceStub
|
|
let packageFunctionStub
|
|
|
|
beforeEach(() => {
|
|
packageServiceStub = sinon.stub(pkg, 'packageService')
|
|
packageFunctionStub = sinon.stub(pkg, 'packageFunction')
|
|
})
|
|
|
|
afterEach(() => {
|
|
pkg.packageService.restore()
|
|
pkg.packageFunction.restore()
|
|
})
|
|
|
|
it('should implement the package:createDeploymentArtifacts event', () =>
|
|
expect(pkg.hooks).to.have.property('package:createDeploymentArtifacts'))
|
|
|
|
it('should implement the package:function:package event', () =>
|
|
expect(pkg.hooks).to.have.property('package:function:package'))
|
|
|
|
describe('package:createDeploymentArtifacts', () => {
|
|
it('should call packageService', async () =>
|
|
expect(
|
|
pkg.hooks['package:createDeploymentArtifacts'](),
|
|
).to.be.fulfilled.then(
|
|
() => expect(packageServiceStub).to.be.calledOnce,
|
|
))
|
|
})
|
|
|
|
describe('package:function:package', () => {
|
|
it('should call packageFunction', async () => {
|
|
pkg.options.function = 'myFunction'
|
|
|
|
return expect(
|
|
pkg.hooks['package:function:package'](),
|
|
).to.be.fulfilled.then(
|
|
() => expect(packageFunctionStub).to.be.calledOnce,
|
|
)
|
|
})
|
|
|
|
it('should fail without function option', async () => {
|
|
pkg.options.function = false
|
|
|
|
return expect(pkg.hooks['package:function:package']())
|
|
.to.be.rejectedWith('Function name must be set')
|
|
.then(() => expect(packageFunctionStub).to.be.not.called)
|
|
})
|
|
})
|
|
})
|
|
})
|