mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
FunctionRun: Write tests for specifying funciton path and function name, improve CLI support
178 lines
4.5 KiB
JavaScript
178 lines
4.5 KiB
JavaScript
'use strict';
|
||
|
||
/**
|
||
* Action: FunctionRun
|
||
* - Runs the function in the CWD for local testing
|
||
*/
|
||
|
||
const SPlugin = require('../ServerlessPlugin'),
|
||
SError = require('../ServerlessError'),
|
||
SUtils = require('../utils'),
|
||
BbPromise = require('bluebird'),
|
||
path = require('path'),
|
||
fs = require('fs');
|
||
|
||
BbPromise.promisifyAll(fs);
|
||
|
||
/**
|
||
* FunctionRun Class
|
||
*/
|
||
|
||
class FunctionRun extends SPlugin {
|
||
|
||
constructor(S, config) {
|
||
super(S, config);
|
||
}
|
||
|
||
static getName() {
|
||
return 'serverless.core.' + FunctionRun.name;
|
||
}
|
||
|
||
registerActions() {
|
||
this.S.addAction(this.functionRun.bind(this), {
|
||
handler: 'functionRun',
|
||
description: `Runs the service locally. Reads the service’s runtime and passes it off to a runtime-specific runner`,
|
||
context: 'function',
|
||
contextAction: 'run',
|
||
options: [
|
||
{
|
||
option: 'name',
|
||
shortcut: 'n',
|
||
description: 'Optional - Run a specific function by name in the current working directory'
|
||
}, {
|
||
option: 'path',
|
||
shortcut: 'p',
|
||
description: 'Optional - Run a specific function by path in the current working directory'
|
||
}
|
||
],
|
||
});
|
||
return BbPromise.resolve();
|
||
}
|
||
|
||
/**
|
||
* Action
|
||
*/
|
||
|
||
functionRun(evt) {
|
||
|
||
let _this = this;
|
||
|
||
// If CLI, parse options
|
||
if (_this.S.cli) {
|
||
|
||
// Options
|
||
evt = this.S.cli.options;
|
||
|
||
// Option - Non-interactive
|
||
if (_this.S.cli.options.nonInteractive) _this.S._interactive = false
|
||
}
|
||
|
||
return _this._getFunction(evt)
|
||
.bind(_this)
|
||
.then(_this._runFunction)
|
||
.then(function(evt) {
|
||
return evt;
|
||
})
|
||
}
|
||
|
||
/**
|
||
* Get Function
|
||
*/
|
||
|
||
_getFunction(evt) {
|
||
|
||
let _this = this,
|
||
cwd = process.cwd();
|
||
|
||
// If "path" is provided, find function by path
|
||
if (evt.path) {
|
||
|
||
return SUtils.getFunctions(_this.S._projectRootPath, [evt.path])
|
||
.then(function(functions) {
|
||
|
||
// Load event object
|
||
evt.function = functions[0];
|
||
let eventPath = evt.function.pathFunction.replace('s-function.json', '');
|
||
if (fs.existsSync(path.join(eventPath, 'event.json'))) {
|
||
evt.event = SUtils.readAndParseJsonSync(path.join(eventPath, 'event.json'));
|
||
} else {
|
||
evt.event = {};
|
||
}
|
||
|
||
// Return
|
||
return evt;
|
||
});
|
||
}
|
||
|
||
// If "name" is provided, find function by name
|
||
if (evt.name) {
|
||
|
||
return SUtils.getFunctions(_this.S._projectRootPath, null)
|
||
.then(function(functions) {
|
||
|
||
for (let i = 0; i < functions.length; i++) {
|
||
if (functions[i].name === evt.name || functions[i].name.toLowerCase() === evt.name) {
|
||
evt.function = functions[i];
|
||
}
|
||
}
|
||
|
||
// If no function found, throw error
|
||
if (!evt.function) {
|
||
throw new SError(`Could not find a function with the name: #{name}`);
|
||
}
|
||
|
||
// Load event object
|
||
evt.function = functions[0];
|
||
let eventPath = evt.function.pathFunction.replace('s-function.json', '');
|
||
if (fs.existsSync(path.join(eventPath, 'event.json'))) {
|
||
evt.event = SUtils.readAndParseJsonSync(path.join(eventPath, 'event.json'));
|
||
} else {
|
||
evt.event = {};
|
||
}
|
||
|
||
// Return
|
||
return evt;
|
||
});
|
||
}
|
||
|
||
return _this.selectFunctions(cwd, 'Select a function to run: ', false, true)
|
||
.then(function(selected) {
|
||
evt.function = selected[0];
|
||
evt.event = SUtils.readAndParseJsonSync(path.join(cwd, 'event.json'));
|
||
return evt;
|
||
});
|
||
}
|
||
|
||
/**
|
||
* Run Function By Runtime
|
||
*/
|
||
|
||
_runFunction(evt) {
|
||
|
||
let _this = this;
|
||
|
||
// Look for a property named after the function in the event object
|
||
if (evt.event[evt.function.name]) evt.event = evt.event[evt.function.name];
|
||
|
||
// Run by runtime
|
||
if (evt.function.runtime === 'nodejs') {
|
||
|
||
let handlerParts = evt.function.handler.split('/').pop().split('.');
|
||
|
||
// Fire NodeJs subaction
|
||
let newEvent = {
|
||
function: evt.function,
|
||
handler: require(process.cwd() + '/' + handlerParts[0] + '.js')[handlerParts[1]],
|
||
event: evt.event
|
||
};
|
||
|
||
return _this.S.actions.functionRunLambdaNodeJs(newEvent)
|
||
.then(function(evt) {
|
||
return evt;
|
||
});
|
||
}
|
||
}
|
||
}
|
||
|
||
module.exports = FunctionRun;
|