test new port argument possibilities

pull/918/head
Min RK 2020-06-29 09:03:14 +02:00 zatwierdzone przez Erik Sundell
rodzic 6826d72aa2
commit b314ba90cd
2 zmienionych plików z 15 dodań i 6 usunięć

Wyświetl plik

@ -3,7 +3,6 @@ Test argument parsing and r2d construction
"""
import os
import pytest
import logging
from repo2docker.__main__ import make_r2d
from repo2docker import __version__
@ -71,10 +70,6 @@ def test_run_required():
with pytest.raises(SystemExit):
make_r2d(["--no-run", "-p", "8000:8000", "."])
# Can't publish any ports while running if we don't specify a command explicitly
with pytest.raises(SystemExit):
make_r2d(["-p", "8000:8000", "."])
def test_clean():
"""

Wyświetl plik

@ -13,6 +13,7 @@ import docker
import pytest
from repo2docker.app import Repo2Docker
from repo2docker.__main__ import make_r2d
def read_port_mapping_response(
@ -95,7 +96,7 @@ def read_port_mapping_response(
else:
break
else:
pytest.fail("Never succeded in talking to %s" % url)
pytest.fail("Never succeeded in talking to %s" % url)
assert "Directory listing" in r.text
@ -113,3 +114,16 @@ def test_port_mapping(request, tmpdir, host, protocol):
"""Test a port mapping"""
port = str(random.randint(50000, 51000))
read_port_mapping_response(request, tmpdir, host=host, port=port, protocol=protocol)
@pytest.mark.parametrize(
"port_str, port_dict",
[
("8000", {"8000/tcp": "8000"}),
("8000:9000", {"9000/tcp": "8000"}),
("127.0.0.1:8000:9000", {"9000/tcp": ("127.0.0.1", "8000")}),
],
)
def test_port_args(port_str, port_dict):
app = make_r2d(["-p", port_str, "."])
assert app.ports == port_dict