Files
cypress/packages/server/lib/exec.js
2021-02-18 08:23:20 -05:00

66 lines
1.6 KiB
JavaScript

const Promise = require('bluebird')
const execa = require('execa')
const R = require('ramda')
const shellEnv = require('shell-env')
const log = require('./log')
const utils = require('./util/shell')
const pickMainProps = R.pick(['stdout', 'stderr', 'code'])
const trimStdio = R.evolve({
stdout: R.trim,
stderr: R.trim,
})
const loadShellVars = R.memoizeWith(R.toString, shellEnv)
module.exports = {
run (projectRoot, options) {
let {
cmd,
} = options
const shellCommand = function (cmd, cwd, env, shell) {
log('cy.exec found shell', shell)
log('and is running command:', options.cmd)
log('in folder:', projectRoot)
return execa.shell(cmd, { cwd, env, shell })
.then((result) => {
// do we want to return all fields returned by execa?
result.shell = shell
result.cmd = cmd
return result
}).then(pickMainProps)
.catch(pickMainProps) // transform rejection into an object
.then(trimStdio)
}
const run = () => {
return loadShellVars()
.then((shellVariables) => {
const env = R.mergeAll([{}, shellVariables, process.env, options.env])
return utils.getShell(env.SHELL)
.then((shell) => {
cmd = utils.sourceShellCommand(options.cmd, shell)
return shellCommand(cmd, projectRoot, env, shell)
})
})
}
return Promise
.try(run)
.timeout(options.timeout)
.catch(Promise.TimeoutError, () => {
const msg = `Process timed out\ncommand: ${options.cmd}`
const err = new Error(msg)
err.timedOut = true
throw err
})
},
}