[skip ci] change default syspec config to syspec-office-config.yaml
This commit is contained in:
parent
e689e1c8c4
commit
71a3f778c8
3 changed files with 4 additions and 6 deletions
|
@ -15,7 +15,7 @@ internal fun findSpecConfigFromFile(file: ConfigFileName? = null): Result<Syspec
|
||||||
val filePath = file?.fileName ?: DEFAULT_CONFIG_FILE
|
val filePath = file?.fileName ?: DEFAULT_CONFIG_FILE
|
||||||
if ((filePath == DEFAULT_CONFIG_FILE) && !File(filePath).exists()) {
|
if ((filePath == DEFAULT_CONFIG_FILE) && !File(filePath).exists()) {
|
||||||
// use default ide config
|
// use default ide config
|
||||||
return findSpecConfigFromResource("org/domaindrivenarchitecture/provs/syspec/syspec-ide-config.yaml")
|
return findSpecConfigFromResource("org/domaindrivenarchitecture/provs/syspec/syspec-office-config.yaml")
|
||||||
}
|
}
|
||||||
readFromFile(filePath).yamlToType()
|
readFromFile(filePath).yamlToType()
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,9 +39,8 @@ internal class ProvTest {
|
||||||
val script = """
|
val script = """
|
||||||
# test some script commands
|
# test some script commands
|
||||||
|
|
||||||
ping -c1 nu.nl
|
ping -c1 hetzner.com
|
||||||
echo something
|
echo something
|
||||||
ping -c1 github.com
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
// when
|
// when
|
||||||
|
@ -58,9 +57,8 @@ internal class ProvTest {
|
||||||
val script = """
|
val script = """
|
||||||
# test some script commands
|
# test some script commands
|
||||||
|
|
||||||
ping -c1 google.com
|
ping -c1 hetzner.com
|
||||||
echo something
|
echo something
|
||||||
ping -c1 github.com
|
|
||||||
echo 1 # comment behind command
|
echo 1 # comment behind command
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ internal class SyspecConfigRepoKtTest {
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assertEquals(
|
assertEquals(
|
||||||
"SyspecConfig(command=[CommandSpec(command=tfenv -h, out=null), CommandSpec(command=python3 --version, out=null), CommandSpec(command=pip3 --version, out=null), CommandSpec(command=terraform --version, out=1.0.8)], file=null, folder=null, host=null, package=[PackageSpec(name=firefox, installed=true), PackageSpec(name=thunderbird, installed=true), PackageSpec(name=ssh, installed=true), PackageSpec(name=git, installed=true), PackageSpec(name=leiningen, installed=true)], netcat=null, socket=null, certificate=null, s3=null)",
|
"SyspecConfig(command=null, file=null, folder=null, host=null, package=[PackageSpec(name=firefox, installed=true), PackageSpec(name=thunderbird, installed=true), PackageSpec(name=ssh, installed=true), PackageSpec(name=git, installed=true)], netcat=null, socket=null, certificate=null, s3=null)",
|
||||||
res.getOrNull().toString())
|
res.getOrNull().toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue