Change default value logic for stepCmd and cmdInput (see README).

This commit is contained in:
Jonathan Bernard 2017-05-11 10:38:28 -05:00
parent 45f490c677
commit a7619a3048
3 changed files with 15 additions and 5 deletions

View File

@ -125,7 +125,7 @@ Step definitions are JSON objects with the following keys:
`'.'`, the project root directory)*. `'.'`, the project root directory)*.
* `stepCmd` *(optional)*: the command to execute for this step. *(defaults to * `stepCmd` *(optional)*: the command to execute for this step. *(defaults to
`sh`)* `true` unless `cmdInput` is given, in which case it defaults to `sh`)*
* `cmdInput` *(optional)*: an array of string that will be concatenated with * `cmdInput` *(optional)*: an array of string that will be concatenated with
newlines separating each string and piped as input to the command for this newlines separating each string and piped as input to the command for this

View File

@ -146,15 +146,25 @@ proc loadProjectConfig*(cfgFile: string): ProjectConfig =
steps[sName] = Step( steps[sName] = Step(
name: sName, name: sName,
workingDir: pJson.getIfExists("workingDir").getStr("."), workingDir: pJson.getIfExists("workingDir").getStr("."),
stepCmd: pJson.getIfExists("stepCmd").getStr("sh"), stepCmd: pJson.getIfExists("stepCmd").getStr("NOT GIVEN"),
depends: pJson.getIfExists("depends").getElems.mapIt(it.getStr), depends: pJson.getIfExists("depends").getElems.mapIt(it.getStr),
artifacts: pJson.getIfExists("artifacts").getElems.mapIt(it.getStr), artifacts: pJson.getIfExists("artifacts").getElems.mapIt(it.getStr),
cmdInput: pJson.getIfExists("cmdInput").getElems.mapIt(it.getStr), cmdInput: pJson.getIfExists("cmdInput").getElems.mapIt(it.getStr),
expectedEnv: pJson.getIfExists("expectedEnv").getElems.mapIt(it.getStr), expectedEnv: pJson.getIfExists("expectedEnv").getElems.mapIt(it.getStr),
dontSkip: pJson.getIfExists("dontSkip").getBVal(false)) dontSkip: pJson.getIfExists("dontSkip").getBVal(false))
if steps[sName].stepCmd == "sh" and steps[sName].cmdInput.len == 0: # cmdInput and stepCmd are related, so we have a conditional defaulting.
warn "Step " & sName & " uses 'sh' as its command but has no cmdInput." # Four possibilities:
if steps[sName].stepCmd == "NOT GIVEN" and steps[sName].cmdInput.len == 0:
# 1. Neither given: default to no-op
steps[sName].stepCmd = "true"
if steps[sName].stepCmd == "NOT GIVEN" and steps[sName].cmdInput.len > 0:
# 2. cmdInput given but not stepCmd: default stepCmd to "sh"
steps[sName].stepCmd = "sh"
# 3. stepCmd given but not cmdInput & 4. both given: use them as-is
result = ProjectConfig( result = ProjectConfig(
name: jsonCfg.getOrFail("name", "project configuration").getStr, name: jsonCfg.getOrFail("name", "project configuration").getStr,

View File

@ -100,7 +100,7 @@ suite "load and save configuration objects":
# Step with defaulted properties # Step with defaulted properties
pc.steps["test"].name == "test" pc.steps["test"].name == "test"
pc.steps["test"].dontSkip == false pc.steps["test"].dontSkip == false
pc.steps["test"].stepCmd == "sh" pc.steps["test"].stepCmd == "true"
pc.steps["test"].workingDir == "." pc.steps["test"].workingDir == "."
sameContents(pc.steps["test"].artifacts, @[]) sameContents(pc.steps["test"].artifacts, @[])
sameContents(pc.steps["test"].depends, @[]) sameContents(pc.steps["test"].depends, @[])