mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
88 lines
2.2 KiB
JavaScript
88 lines
2.2 KiB
JavaScript
// Integration tests related utils
|
|
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
const fsp = require('fs').promises;
|
|
const spawn = require('child-process-ext/spawn');
|
|
const nodeFetch = require('node-fetch');
|
|
const log = require('log').get('serverless:test');
|
|
const logFetch = require('log').get('fetch');
|
|
const resolveAwsEnv = require('@serverless/test/resolve-aws-env');
|
|
const { load: loadYaml } = require('js-yaml');
|
|
|
|
const serverlessExec = require('../serverless-binary');
|
|
|
|
const env = resolveAwsEnv();
|
|
|
|
async function resolveServiceName(cwd) {
|
|
const configContent = await (async () => {
|
|
try {
|
|
return await fsp.readFile(path.join(cwd, 'serverless.yml'));
|
|
} catch (error) {
|
|
if (error.code === 'ENOENT') return null;
|
|
throw error;
|
|
}
|
|
})();
|
|
if (!configContent) return null;
|
|
const configObject = (() => {
|
|
try {
|
|
return loadYaml(configContent);
|
|
} catch (error) {
|
|
return null;
|
|
}
|
|
})();
|
|
if (!configObject) return null;
|
|
return configObject.service;
|
|
}
|
|
|
|
async function deployService(cwd) {
|
|
log.notice('deploy %s (at %s)', (await resolveServiceName(cwd)) || '[unknown]', cwd);
|
|
return spawn(serverlessExec, ['deploy'], { cwd, env });
|
|
}
|
|
|
|
async function removeService(cwd) {
|
|
log.notice('remove %s (at %s)', (await resolveServiceName(cwd)) || '[unknown]', cwd);
|
|
return spawn(serverlessExec, ['remove'], { cwd, env });
|
|
}
|
|
|
|
let lastRequestId = 0;
|
|
async function fetch(url, options) {
|
|
const requestId = ++lastRequestId;
|
|
logFetch.debug('[%d] %s %o', requestId, url, options);
|
|
|
|
let response;
|
|
try {
|
|
response = await nodeFetch(url, options);
|
|
} catch (error) {
|
|
logFetch.error('[%d] request error: %o', requestId, error);
|
|
throw error;
|
|
}
|
|
|
|
logFetch.debug('[%d] %d %j', requestId, response.status, response.headers.raw());
|
|
/* eslint-enable */
|
|
response
|
|
.clone()
|
|
.buffer()
|
|
.then(
|
|
(buffer) => logFetch.debug('[%d] %s', requestId, String(buffer)),
|
|
(error) => logFetch.error('[%d] response resolution error: %o', requestId, error)
|
|
);
|
|
return response;
|
|
}
|
|
|
|
function getMarkers(functionName) {
|
|
return {
|
|
start: `--- START ${functionName} ---`,
|
|
end: `--- END ${functionName} ---`,
|
|
};
|
|
}
|
|
|
|
module.exports = {
|
|
deployService,
|
|
env,
|
|
fetch,
|
|
removeService,
|
|
getMarkers,
|
|
};
|