2022-05-21 11:25:56 +02:00
|
|
|
from compose_viz.volume import Volume, VolumeType
|
|
|
|
|
|
|
|
|
2022-05-21 17:00:20 +02:00
|
|
|
def test_volume_init_normal() -> None:
|
2022-05-21 11:25:56 +02:00
|
|
|
try:
|
|
|
|
v = Volume(source="./foo", target="./bar")
|
|
|
|
|
|
|
|
assert v.source == "./foo"
|
|
|
|
assert v.target == "./bar"
|
|
|
|
assert v.type == VolumeType.volume
|
|
|
|
except Exception as e:
|
|
|
|
assert False, e
|
|
|
|
|
|
|
|
|
2022-05-21 17:00:20 +02:00
|
|
|
def test_volume_with_type() -> None:
|
2022-05-21 11:25:56 +02:00
|
|
|
try:
|
|
|
|
v = Volume(source="./foo", target="./bar", type=VolumeType.bind)
|
|
|
|
|
|
|
|
assert v.source == "./foo"
|
|
|
|
assert v.target == "./bar"
|
|
|
|
assert v.type == VolumeType.bind
|
|
|
|
except Exception as e:
|
|
|
|
assert False, e
|