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.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
proc findProject*(cfg: StrawBossConfig, projectName: string): ProjectDef =
let candidates = cfg.projects.filterIt(it.name == projectName)
@ -92,12 +100,7 @@ proc parseProjectDef*(pJson: JsonNode): ProjectDef =
envVars: envVars,
repo: pJson.getOrFail("repo", "project definition").getStr)
proc loadStrawBossConfig*(cfgFile: string): StrawBossConfig =
if not existsFile(cfgFile):
raiseEx "strawboss config file not found: " & cfgFile
let jsonCfg = parseFile(cfgFile)
proc parseStrawBossConfig*(jsonCfg: JsonNode): StrawBossConfig =
var users: seq[UserRef] = @[]
for uJson in jsonCfg.getIfExists("users").getElems:
@ -113,6 +116,13 @@ proc loadStrawBossConfig*(cfgFile: string): StrawBossConfig =
projects: jsonCfg.getIfExists("projects").getElems.mapIt(parseProjectDef(it)),
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 =
if not existsFile(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"].cmdInput, @[])
test "StrawBossConfig to string":
# TODO
check false
test "serialze StrawBossConfig to/from string":
let cfg = loadStrawBossConfig("src/test/json/strawboss.config.json")
let cfgStr = $cfg
check cfg == parseStrawBossConfig(parseJson(cfgStr))
test "loadBuildStatus":
let st = loadBuildStatus("src/test/json/test-status.json")