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-11-03 17:35:36 +01:00

31 lines
686 B
Python

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