Skip to content

Commit

Permalink
Merge pull request #290 from grisu48/res7
Browse files Browse the repository at this point in the history
Replace curl by requests
  • Loading branch information
dcermak committed Aug 21, 2023
2 parents 8b8ba51 + 58970ea commit 73bc2cb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
20 changes: 16 additions & 4 deletions tests/test_nginx.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
"""This module contains the tests for the nginx container, the image with nginx pre-installed.
"""
from bci_tester.data import NGINX_CONTAINER
import requests
from tenacity import retry
from tenacity import stop_after_attempt
from tenacity import wait_exponential

from bci_tester.data import NGINX_CONTAINER

CONTAINER_IMAGES = (NGINX_CONTAINER,)


def test_nginx_welcome_page(auto_container, host):
def test_nginx_welcome_page(auto_container):
"""test that the default welcome page is served by the container."""
host_port = auto_container.forwarded_ports[0].host_port

assert "Welcome to nginx" in host.check_output(
f"curl -sf --retry 5 --retry-connrefused http://localhost:{host_port}/"
# Retry 5 times with exponential backoff delay
@retry(
wait=wait_exponential(multiplier=1, min=4, max=10),
stop=stop_after_attempt(5),
)
def check_nginx_response():
resp = requests.get(f"http://localhost:{host_port}/", timeout=30)
resp.raise_for_status()
assert "Welcome to nginx" in resp.text

check_nginx_response()
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ deps =
dataclasses ; python_version < "3.7"
pytest-rerunfailures
typing_extensions
requests
tenacity
git+https://github.com/dcermak/pytest_container
doc: Sphinx

Expand Down

0 comments on commit 73bc2cb

Please sign in to comment.