Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support setting environment variables #198

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions lib/xpm/run-action.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ export class RunAction extends CliCommand {

let commandsArray
let configuration
let environment

if (configurationName) {
// --config
Expand Down Expand Up @@ -363,6 +364,12 @@ export class RunAction extends CliCommand {
}

log.trace(`initial action: '${commandsArray}'`)

// Merge the global and the configuration environment
environment = packageJson.xpack.environment || {}
Object.assign(environment, configuration.environment || {})

log.trace(`environment: '${environment}'`)
} else {
// Prefer actions defined in the "xpack" property.
if (packageJson.xpack.actions) {
Expand All @@ -380,6 +387,11 @@ export class RunAction extends CliCommand {
'check "xpack.actions" or "scripts" ')
}
log.trace(`script command: '${commandsArray}'`)

// Get the global environment
environment = packageJson.xpack.environment || {}

log.trace(`environment: '${environment}'`)
}

if (isString(commandsArray)) {
Expand All @@ -393,6 +405,17 @@ export class RunAction extends CliCommand {
log.trace(util.inspect(err))
throw new CliError(err.message)
}

try {
for (const v of Object.keys(environment)) {
environment[v] = await liquidEngine.performSubstitutions(
environment[v], liquidMap)
}
} catch (err) {
log.trace(util.inspect(err))
throw new CliError(err.message)
}

const otherArguments = CliOptions.filterOtherArguments(args)

if (commandsArray.length > 1 && otherArguments.length > 0) {
Expand All @@ -418,6 +441,8 @@ export class RunAction extends CliCommand {

// Create a copy of the environment.
const env = Object.assign({}, process.env)
// Enrich it with the xpack environment.
Object.assign(env, environment)

let pathsArray = []

Expand Down
38 changes: 35 additions & 3 deletions tests/mock/devdep/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,40 @@
"platforms": "all"
}
},
"properties": {},
"actions": {},
"buildConfigurations": {}
"properties": {
"commandEchoGLOBAL": {
"linux": "echo $GLOBAL",
"darwin": "echo $GLOBAL",
"win32": "echo %GLOBAL%"
},
"buildFolderRelativePath": "{{ 'build' | path_join: configuration.name | to_filename | downcase }}"
},
"environment": {
"GLOBAL": "VALUE1"
},
"actions": {
"prepare": [
"{{ properties.commandEchoGLOBAL[os.platform] }}"
]
},
"buildConfigurations": {
"conf1": {
"properties": {
"commandEchoCONF": {
"linux": "echo $GLOBAL $CONF",
"darwin": "echo $GLOBAL $CONF",
"win32": "echo %GLOBAL% %CONF%"
}
},
"environment": {
"CONF": "VALUE2"
},
"actions": {
"prepare": [
"{{ properties.commandEchoCONF[os.platform] }}"
]
}
}
}
}
}
62 changes: 61 additions & 1 deletion tests/tap/540-xpm-run-action.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,15 @@

// ----------------------------------------------------------------------------

import * as path from 'path'

// The `[node-tap](http://www.node-tap.org)` framework.
import { test } from 'tap'

// ----------------------------------------------------------------------------

// ES6: `import { CliExitCodes } from 'cli-start-options'
// import { CliExitCodes } from '@ilg/cli-start-options';
// import { CliExitCodes } from '@ilg/cli-start-options'
import cliStartOptionsCsj from '@ilg/cli-start-options'

// ----------------------------------------------------------------------------
Expand Down Expand Up @@ -99,4 +101,62 @@ test('xpm run -h',
t.end()
})

/**
* Test if environment injection works.
*/
test('xpm run prepare',
async (t) => {
try {
const { code, stdout, stderr } = await Common.xpmCli([
'run',
'prepare',
'-q',
'-C',
path.join('tests', 'mock', 'devdep')
])
// Check exit code.
t.equal(code, CliExitCodes.SUCCESS, 'exit code is success')
const outLines = stdout.split(/\r?\n/)
t.ok(outLines.length > 0, 'has enough output')
if (outLines.length > 0) {
t.match(outLines[0],
'VALUE1', 'has global environment variable')
}
// There should be no error messages.
t.equal(stderr, '', 'stderr is empty')
} catch (err) {
t.fail(err.message)
}
t.end()
})

test('xpm run prepare --config conf1',
async (t) => {
try {
const { code, stdout, stderr } = await Common.xpmCli([
'run',
'prepare',
'-q',
'--config',
'conf1',
'-C',
path.join('tests', 'mock', 'devdep')
])
// Check exit code.
t.equal(code, CliExitCodes.SUCCESS, 'exit code is success')
const outLines = stdout.split(/\r?\n/)
t.ok(outLines.length > 0, 'has enough output')
if (outLines.length > 0) {
t.match(outLines[0],
'VALUE1 VALUE2', 'has configuration environment variable')
}
// There should be no error messages.
t.equal(stderr, '', 'stderr is empty')
} catch (err) {
t.fail(err.message)
}
t.end()
})


// ----------------------------------------------------------------------------