mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
112 lines
3.8 KiB
JavaScript
112 lines
3.8 KiB
JavaScript
'use strict';
|
|
|
|
const expect = require('chai').expect;
|
|
const Serverless = require('../../Serverless');
|
|
const sinon = require('sinon');
|
|
const BbPromise = require('bluebird');
|
|
const testUtils = require('../../../tests/utils');
|
|
const fse = require('fs-extra');
|
|
const path = require('path');
|
|
const proxyquire = require('proxyquire');
|
|
|
|
describe('Install', () => {
|
|
let install;
|
|
let serverless;
|
|
let downloadStub;
|
|
let Install;
|
|
|
|
beforeEach(() => {
|
|
downloadStub = sinon.stub().returns(BbPromise.resolve());
|
|
Install = proxyquire('./install.js', {
|
|
download: downloadStub,
|
|
});
|
|
serverless = new Serverless();
|
|
install = new Install(serverless);
|
|
serverless.init();
|
|
});
|
|
|
|
describe('#constructor()', () => {
|
|
it('should have commands', () => expect(install.commands).to.be.not.empty);
|
|
|
|
it('should have hooks', () => expect(install.hooks).to.be.not.empty);
|
|
|
|
it('should run promise chain in order for "install:install" hook', () => {
|
|
const installStub = sinon
|
|
.stub(install, 'install').returns(BbPromise.resolve());
|
|
|
|
return install.hooks['install:install']().then(() => {
|
|
expect(installStub.calledOnce).to.be.equal(true);
|
|
|
|
install.install.restore();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('#install()', () => {
|
|
it('shold throw an error if the passed URL option is not a valid URL', () => {
|
|
install.options = { url: 'invalidUrl' };
|
|
|
|
expect(() => install.install()).to.throw(Error);
|
|
});
|
|
|
|
it('should throw an error if the passed URL is not a valid GitHub URL', () => {
|
|
install.options = { url: 'http://no-github-url.com/foo/bar' };
|
|
|
|
expect(() => install.install()).to.throw(Error);
|
|
});
|
|
|
|
it('should throw an error if a directory with the same service name is already present', () => {
|
|
install.options = { url: 'https://github.com/johndoe/existing-service' };
|
|
|
|
const tmpDir = testUtils.getTmpDirPath();
|
|
const serviceDirName = path.join(tmpDir, 'existing-service');
|
|
fse.mkdirsSync(serviceDirName);
|
|
|
|
const cwd = process.cwd();
|
|
process.chdir(tmpDir);
|
|
|
|
expect(() => install.install()).to.throw(Error);
|
|
|
|
process.chdir(cwd);
|
|
});
|
|
|
|
it('should download the service based on the GitHub URL', () => {
|
|
install.options = { url: 'https://github.com/johndoe/service-to-be-downloaded' };
|
|
|
|
return install.install().then(() => {
|
|
expect(downloadStub.calledOnce).to.equal(true);
|
|
expect(downloadStub.args[0][0]).to.equal(`${install.options.url}/archive/master.zip`);
|
|
});
|
|
});
|
|
|
|
it('should download the service based on directories in the GitHub URL', () => {
|
|
install.options = { url: 'https://github.com/serverless/examples/tree/master/rest-api-with-dynamodb' };
|
|
sinon.stub(serverless.utils, 'copyDirContentsSync').returns(true);
|
|
sinon.stub(fse, 'removeSync').returns(true);
|
|
|
|
return install.install().then(() => {
|
|
expect(downloadStub.calledOnce).to.equal(true);
|
|
expect(downloadStub.args[0][0]).to.equal('https://github.com/serverless/examples/archive/master.zip');
|
|
expect(serverless.utils.copyDirContentsSync.calledOnce).to.equal(true);
|
|
expect(fse.removeSync.calledOnce).to.equal(true);
|
|
|
|
serverless.utils.copyDirContentsSync.restore();
|
|
fse.removeSync.restore();
|
|
});
|
|
});
|
|
|
|
it('should throw an error if the same service name exists as directory in Github', () => {
|
|
install.options = { url: 'https://github.com/serverless/examples/tree/master/rest-api-with-dynamodb' };
|
|
const tmpDir = testUtils.getTmpDirPath();
|
|
const serviceDirName = path.join(tmpDir, 'rest-api-with-dynamodb');
|
|
fse.mkdirsSync(serviceDirName);
|
|
|
|
const cwd = process.cwd();
|
|
process.chdir(tmpDir);
|
|
|
|
expect(() => install.install()).to.throw(Error);
|
|
process.chdir(cwd);
|
|
});
|
|
});
|
|
});
|