1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-21 20:33:00 +00:00
kiwi-scp/tests/test_project.py

40 lines
878 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"),
parent_instance=None,
)
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"),
parent_instance=None,
)
with pytest.raises(FileNotFoundError) as exc_info:
_ = p.services
assert exc_info.value.filename == f"nonexistent/{COMPOSE_FILE_NAME}"