我正在尝试在 docker 容器中测试 Flask Web 应用程序,这对我来说是新的。我的堆栈如下:
- 火狐
- 硒
- pytest-硒
- pytest烧瓶
这是我的 Flask 应用程序文件:
from flask import Flask
def create_app():
app = Flask(__name__)
return app
app = create_app()
@app.route('/')
def index():
return render_template('index.html')
现在,我的测试文件验证了我的索引页的标题:
import pytest
from app import create_app
# from https://github.com/pytest-dev/pytest-selenium/issues/135
@pytest.fixture
def firefox_options(request, firefox_options):
firefox_options.add_argument('--headless')
return firefox_options
# from https://pytest-flask.readthedocs.io/en/latest/tutorial.html#step-2-configure
@pytest.fixture
def app():
app = create_app()
return app
# from https://pytest-flask.readthedocs.io/en/latest/features.html#start-live-server-start-live-server-automatically-default
@pytest.mark.usefixtures('live_server')
class TestLiveServer:
def test_homepage(self, selenium):
selenium.get('http://0.0.0.0:5000')
h1 = selenium.find_element_by_tag_name('h1')
assert h1 == 'title'
当我运行测试时:
pytest --driver Firefox --driver-path /usr/local/bin/firefox test_app.py
我收到以下错误(这似乎是由于 Firefox 不在无头模式下)。
selenium.common.exceptions.WebDriverException: Message: Service /usr/local/bin/firefox unexpectedly exited. Status code was: 1 Error: no DISPLAY environment variable specified
我可以运行firefox --headless
,但似乎我的 pytest 夹具无法进行设置。有一个更好的方法吗?
selenium.get()
现在,如果我urlopen
只是尝试正确初始化应用程序及其连接:
def test_homepage(self):
res = urlopen('http://0.0.0.0:5000')
assert b'OK' in res.read()
assert res.code == 200
我得到错误:
urllib.error.URLError:
我需要以不同的方式启动实时服务器吗?或者我应该在某处更改我的主机+端口配置?