test: add parametrize tests
This commit is contained in:
parent
659dc9bc29
commit
8eb932577d
1 changed files with 67 additions and 5 deletions
|
@ -1,10 +1,10 @@
|
||||||
|
import pytest
|
||||||
from compose_viz.parser import Parser
|
from compose_viz.parser import Parser
|
||||||
from compose_viz.compose import Compose
|
from compose_viz.compose import Compose
|
||||||
from compose_viz.service import Service
|
from compose_viz.service import Service
|
||||||
|
|
||||||
|
@pytest.mark.parametrize("test_input,expected",[
|
||||||
def test_parse_file():
|
('tests/in/000001.yaml',Compose([
|
||||||
expected: Compose = Compose([
|
|
||||||
Service(
|
Service(
|
||||||
name='frontend',
|
name='frontend',
|
||||||
image='awesome/webapp',
|
image='awesome/webapp',
|
||||||
|
@ -20,10 +20,72 @@ def test_parse_file():
|
||||||
image='awesome/backend',
|
image='awesome/backend',
|
||||||
networks=['back-tier', 'admin'],
|
networks=['back-tier', 'admin'],
|
||||||
),
|
),
|
||||||
|
])),
|
||||||
|
('tests/in/000010.yaml',Compose([
|
||||||
|
Service(
|
||||||
|
name='base',
|
||||||
|
image='busybox',
|
||||||
|
user='root',
|
||||||
|
),
|
||||||
|
Service(
|
||||||
|
name='common',
|
||||||
|
image='busybox',
|
||||||
|
extends='base'
|
||||||
|
),
|
||||||
|
Service(
|
||||||
|
name='cli',
|
||||||
|
extends='common'
|
||||||
|
),
|
||||||
|
])),
|
||||||
|
('tests/in/000100.yaml',Compose([
|
||||||
|
#version='3.9'
|
||||||
|
Service(
|
||||||
|
build='.',
|
||||||
|
ports=['8000:5000']
|
||||||
|
),
|
||||||
|
Service(
|
||||||
|
name='redis',
|
||||||
|
image='redis:alpine',
|
||||||
|
),
|
||||||
|
])),
|
||||||
|
('tests/in/001000.yaml',Compose([
|
||||||
|
Service(
|
||||||
|
name='web',
|
||||||
|
build='.',
|
||||||
|
depends_on=['db','redis']
|
||||||
|
),
|
||||||
|
Service(
|
||||||
|
name='redis',
|
||||||
|
image='redis'
|
||||||
|
),
|
||||||
|
Service(
|
||||||
|
name='db',
|
||||||
|
image='postgres'
|
||||||
|
),
|
||||||
|
])),
|
||||||
|
('tests/in/010000.yaml',Compose([
|
||||||
|
Service(
|
||||||
|
name='backend',
|
||||||
|
image='awesome/backend',
|
||||||
|
volumes=['db-data']
|
||||||
|
)
|
||||||
|
])),
|
||||||
|
('tests/in/100000.yaml',Compose([
|
||||||
|
Service(
|
||||||
|
name='web',
|
||||||
|
build='.',
|
||||||
|
links=['db:database']
|
||||||
|
),
|
||||||
|
Service(
|
||||||
|
name='db',
|
||||||
|
image='postgres'
|
||||||
|
)
|
||||||
|
])),
|
||||||
])
|
])
|
||||||
|
|
||||||
|
def test_parse_file(test_input, expected):
|
||||||
parser = Parser()
|
parser = Parser()
|
||||||
actual = parser.parse('tests/in/000001.yaml')
|
actual = parser.parse(test_input)
|
||||||
|
|
||||||
assert len(actual.services) == len(expected.services)
|
assert len(actual.services) == len(expected.services)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue