Flask and Werkzeug: Testing a post request with custom headers

前端 未结 2 1577
南笙
南笙 2020-12-11 00:36

I\'m currently testing my app with suggestions from http://flask.pocoo.org/docs/testing/, but I would like to add a header to a post request.

My request is currently

2条回答
  •  时光说笑
    2020-12-11 00:46

    open also take *args and **kwargs which used as EnvironBuilder arguments. So you can add just headers argument to your first post request:

    with self.app.test_client() as client:
        client.post('/v0/scenes/test/foo',
                    data=dict(image=(StringIO('fake image'), 'image.png')),
                    headers={'content-md5': 'some hash'});
    

提交回复
热议问题