mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 04:43:00 +00:00
62 lines
1.6 KiB
Python
62 lines
1.6 KiB
Python
from pathlib import Path
|
|
|
|
from ruamel.yaml import CommentedMap
|
|
|
|
from kiwi_scp.instance import Service
|
|
|
|
|
|
class TestDefault:
|
|
def test_empty(self):
|
|
s = Service(
|
|
name="s",
|
|
description=CommentedMap(),
|
|
)
|
|
|
|
assert s.name == "s"
|
|
assert list(s.configs) == []
|
|
|
|
def test_no_configs(self):
|
|
s = Service(
|
|
name="s",
|
|
description=CommentedMap({
|
|
"image": "repo/image:tag",
|
|
}),
|
|
)
|
|
|
|
assert s.name == "s"
|
|
assert list(s.configs) == []
|
|
|
|
def test_no_configs_in_volumes(self):
|
|
s = Service(
|
|
name="s",
|
|
description=CommentedMap({
|
|
"image": "repo/image:tag",
|
|
"volumes": [
|
|
"docker_volume/third/dir:/path/to/third/mountpoint",
|
|
"${TARGETDIR}/some/dir:/path/to/some/mountpoint",
|
|
"$TARGETDIR/other/dir:/path/to/other/mountpoint",
|
|
]
|
|
}),
|
|
)
|
|
|
|
assert s.name == "s"
|
|
assert list(s.configs) == []
|
|
|
|
def test_with_configs(self):
|
|
s = Service(
|
|
name="s",
|
|
description=CommentedMap({
|
|
"image": "repo/image:tag",
|
|
"volumes": [
|
|
"${CONFDIR}/some/config:/path/to/some/config",
|
|
"$CONFDIR/other/config:/path/to/other/config",
|
|
]
|
|
}),
|
|
)
|
|
|
|
assert s.name == "s"
|
|
assert len(list(s.configs)) == 2
|
|
assert list(s.configs) == [
|
|
Path("some/config"),
|
|
Path("other/config"),
|
|
]
|