StrawBossConfig object (de)serialization and tests.

This commit is contained in:
Jonathan Bernard 2017-05-08 12:33:47 -05:00
parent 13165879c5
commit 411379cb8d
2 changed files with 20 additions and 9 deletions

View File

@ -57,6 +57,14 @@ proc `==`*(a, b: ProjectDef): bool =
a.defaultBranch == b.defaultBranch and a.defaultBranch == b.defaultBranch and
a.repo == b.repo a.repo == b.repo
proc `==`*(a, b: StrawBossConfig): bool =
result =
a.artifactsRepo == b.artifactsRepo and
a.authSecret == b.authSecret and
a.pwdCost == b.pwdCost and
sameContents(a.users, b.users) and
sameContents(a.projects, b.projects)
# Util methods on custom types # Util methods on custom types
proc findProject*(cfg: StrawBossConfig, projectName: string): ProjectDef = proc findProject*(cfg: StrawBossConfig, projectName: string): ProjectDef =
let candidates = cfg.projects.filterIt(it.name == projectName) let candidates = cfg.projects.filterIt(it.name == projectName)
@ -92,12 +100,7 @@ proc parseProjectDef*(pJson: JsonNode): ProjectDef =
envVars: envVars, envVars: envVars,
repo: pJson.getOrFail("repo", "project definition").getStr) repo: pJson.getOrFail("repo", "project definition").getStr)
proc loadStrawBossConfig*(cfgFile: string): StrawBossConfig = proc parseStrawBossConfig*(jsonCfg: JsonNode): StrawBossConfig =
if not existsFile(cfgFile):
raiseEx "strawboss config file not found: " & cfgFile
let jsonCfg = parseFile(cfgFile)
var users: seq[UserRef] = @[] var users: seq[UserRef] = @[]
for uJson in jsonCfg.getIfExists("users").getElems: for uJson in jsonCfg.getIfExists("users").getElems:
@ -113,6 +116,13 @@ proc loadStrawBossConfig*(cfgFile: string): StrawBossConfig =
projects: jsonCfg.getIfExists("projects").getElems.mapIt(parseProjectDef(it)), projects: jsonCfg.getIfExists("projects").getElems.mapIt(parseProjectDef(it)),
users: users) users: users)
proc loadStrawBossConfig*(cfgFile: string): StrawBossConfig =
if not existsFile(cfgFile):
raiseEx "strawboss config file not found: " & cfgFile
result = parseStrawBossConfig(parseFile(cfgFile))
proc loadProjectConfig*(cfgFile: string): ProjectConfig = proc loadProjectConfig*(cfgFile: string): ProjectConfig =
if not existsFile(cfgFile): if not existsFile(cfgFile):
raiseEx "project config file not found: " & cfgFile raiseEx "project config file not found: " & cfgFile

View File

@ -107,9 +107,10 @@ suite "load and save configuration objects":
sameContents(pc.steps["test"].expectedEnv, @[]) sameContents(pc.steps["test"].expectedEnv, @[])
sameContents(pc.steps["test"].cmdInput, @[]) sameContents(pc.steps["test"].cmdInput, @[])
test "StrawBossConfig to string": test "serialze StrawBossConfig to/from string":
# TODO let cfg = loadStrawBossConfig("src/test/json/strawboss.config.json")
check false let cfgStr = $cfg
check cfg == parseStrawBossConfig(parseJson(cfgStr))
test "loadBuildStatus": test "loadBuildStatus":
let st = loadBuildStatus("src/test/json/test-status.json") let st = loadBuildStatus("src/test/json/test-status.json")