2022-05-18 09:12:24 +02:00
|
|
|
import pytest
|
2022-05-18 17:28:18 +02:00
|
|
|
|
2022-05-27 08:17:04 +02:00
|
|
|
from compose_viz.models.extends import Extends
|
2022-05-18 17:28:18 +02:00
|
|
|
|
|
|
|
|
2022-05-18 18:41:08 +02:00
|
|
|
def test_extend_init_normal() -> None:
|
2022-05-18 09:24:51 +02:00
|
|
|
try:
|
2022-05-24 10:02:47 +02:00
|
|
|
e = Extends(service_name="frontend", from_file="tests/ymls/others/empty.yaml")
|
2022-05-18 18:38:42 +02:00
|
|
|
|
2022-05-21 11:25:56 +02:00
|
|
|
assert e.service_name == "frontend"
|
2022-05-24 10:02:47 +02:00
|
|
|
assert e.from_file == "tests/ymls/others/empty.yaml"
|
2022-05-18 18:38:42 +02:00
|
|
|
except Exception as e:
|
|
|
|
assert False, e
|
|
|
|
|
|
|
|
|
2022-05-18 18:41:08 +02:00
|
|
|
def test_extend_init_without_from_file() -> None:
|
2022-05-18 18:38:42 +02:00
|
|
|
try:
|
2022-05-21 11:25:56 +02:00
|
|
|
e = Extends(service_name="frontend")
|
2022-05-18 09:24:51 +02:00
|
|
|
|
2022-05-21 11:25:56 +02:00
|
|
|
assert e.service_name == "frontend"
|
|
|
|
assert e.from_file is None
|
2022-05-18 17:28:18 +02:00
|
|
|
except Exception as e:
|
|
|
|
assert False, e
|
2022-05-18 09:24:51 +02:00
|
|
|
|
2022-05-18 18:38:42 +02:00
|
|
|
|
2022-05-18 18:41:08 +02:00
|
|
|
def test_extend_init_without_service_name() -> None:
|
2022-05-18 09:24:51 +02:00
|
|
|
with pytest.raises(TypeError):
|
2022-05-24 10:02:47 +02:00
|
|
|
Extends(from_file="tests/ymls/others/empty.yaml") # type: ignore
|