测试失败,因为烧瓶正在返回 json 的流

问题描述

我是我的烧瓶应用程序,我有一个路由/控制器来创建我称之为实体的东西:

@api.route('/entities',methods=['POST'])
def create_entity():
    label = request.get_json()['label']
    entity = entity_context.create(label)
    print('the result of creating the entity: ')
    print(entity)
    return entity

创建实体后,打印如下内容

the result of creating the entity: 
{'label': 'Uganda','_id': '{"$oid": "5ff5df24bb80fcf812631c53"}'}

我为此控制器编写了以下测试:

@given("an entity is created with label Uganda",target_fixture="create_entity")
def create_entity(test_client):
    result = test_client.post('api/entities',json={"label": "Uganda"})
    return result

@then("this entity can be read from the db")
def get_entities(create_entity,test_client):
    print('result of create entity: ')
    print(create_entity)
    response = test_client.get('api/entities').get_json()
    assert create_entity['_id'] in list(map(lambda x : x._id,response))

测试客户端在 conftest.py 中定义如下:

@pytest.fixture
def test_client():
    flask_app = init_app()
    # Create a test client using the Flask application configured for testing
    with flask_app.test_client() as flask_test_client:
        return flask_test_client

我的测试失败并出现以下错误

create_entity = <Response streamed [200 OK]>,test_client = <FlaskClient <Flask 'api'>>

    @then("this entity can be read from the db")
    def get_entities(create_entity,test_client):
        print('result of create entity: ')
        print(create_entity)
        response = test_client.get('api/entities').get_json()
>       assert create_entity['_id'] in list(map(lambda x : x._id,response))
E       TypeError: 'Response' object is not subscriptable

the result of creating the entity: 
{'label': 'Uganda','_id': '{"$oid": "5ff5df24bb80fcf812631c53"}'}
result of create entity: 
<Response streamed [200 OK]>.      

显然 create_entity 不是返回一个简单的对象,而是一个流式响应:

<Response streamed [200 OK]>

我不明白为什么这不会返回简单的 json,如果控制器返回 json?

解决方法

您的测试存在一些问题

首先你不是在烧瓶测试上下文中执行:

@pytest.fixture
def test_client():
    flask_app = init_app()
    # Create a test client using the Flask application configured for testing
    with flask_app.test_client() as flask_test_client:
        return flask_test_client

这必须是 yield flask_test_client -- 否则在您的测试运行时上下文管理器已退出

其次,您将获得 Responsecreate_entity 对象,因为这就是您的 @given 固定装置返回的内容:

@given("an entity is created with label Uganda",target_fixture="create_entity")
def create_entity(test_client):
    result = test_client.post('api/entities',json={"label": "Uganda"})
    return result

.post(...) 的结果是一个 Response 对象,如果您希望它成为 json 的字典,您需要在其上调用 .get_json()

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...