1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 04:43:00 +00:00
kiwi-scp/tests/test_project.py
2021-12-02 17:08:14 +01:00

38 lines
818 B
Python

from pathlib import Path
import pytest
from kiwi_scp._constants import COMPOSE_FILE_NAME
from kiwi_scp.config import KiwiConfig
from kiwi_scp.project import Project
class TestDefault:
cfg = KiwiConfig()
def test_example(self):
p = Project(
directory=Path("example/hello-world.project"),
)
ss = p.services
assert len(ss.content) == 5
s = ss.content[0]
assert s.name == "greeter"
ss2 = p.services.filter_existing(["nonexistent"])
assert len(ss2.content) == 0
def test_empty(self):
p = Project(
directory=Path("nonexistent"),
)
with pytest.raises(FileNotFoundError) as exc_info:
_ = p.services
assert exc_info.value.filename == f"nonexistent/{COMPOSE_FILE_NAME}"