使用Quart扩展Quart-OpenAPI使用pytest进行测试的完整示例在哪里?

时间:2019-01-30 22:36:19

标签: python pytest quart

我想将pytest与Quart的扩展名quart-openapi一起使用,但是文档示例和谷歌搜索没有帮助。

在哪里可以找到与quart-openapi一起使用的pytest测试工具的具体示例?

到目前为止,我已经阅读了以下来源:

Quart's blog tutorial with testing

Quart documentation on testing

Stack Overflow question on similar tools

项目结构为:

├── app
│   ├── __init__.py
│   ├── api.py
│   ├── log.py
│   
├── requirements.txt
├── run.py
└── tests
    ├── __init__.py
    └── test_endpoint.py

app/__init__.py


    from .api import QUART_APP

api.py


    """Registered endpoints"""
    from quart import jsonify
    from quart_openapi import Pint, Resource

    # Docs say that Pint will forward all init args to Quart()
    QUART_APP = Pint(__name__, title="Quart tts")

    @QUART_APP.route('/')
    class Home(Resource):
        """ Endpoint that reports its own status """
        async def get(self):
            """ Report status of service """
            return jsonify({'OK': True, 'hello': 'world'})

test_endpoint.py


    import pytest
    from app.api import QUART_APP as app
    @pytest.fixture(name='test_app')
    def _test_app():
        return app

    @pytest.mark.asyncio
    async def test_app(app):
        client = app.test_client()
        response = await client.get('/')
        assert response.status_code == 200

实际结果:ERROR at setup of test_app ... fixture 'app' not found

预期结果:我可以使用pytest在quart-openapi中进行测试。

1 个答案:

答案 0 :(得分:0)

查看pytest夹具文档,您给夹具赋予的名称就是您要引用的名称。因此,我可能会像这样将“名称”参数更改为“ testapp”:

import pytest
from app.api import QUART_APP as app
@pytest.fixture(name='testapp')
def _test_app():
  return app

@pytest.mark.asyncio
async def test_app(testapp):
  client = testapp.test_client()
  response = await client.get('/')
  assert response.status_code == 200

当我将其设置在自己的目录中时,上述方法会通过并通过,因此它应该对您有用。