44

現在、 http://flask.pocoo.org/docs/testing/からの提案を使用してアプリをテストしていますが、投稿リクエストにヘッダーを追加したいと考えています。

私のリクエストは現在:

self.app.post('/v0/scenes/test/foo', data=dict(image=(StringIO('fake image'), 'image.png')))

しかし、リクエストに content-md5 を追加したいと思います。これは可能ですか?

私の調査:

Flask クライアント (flask/testing.py 内) は Werkzeug のクライアントを拡張します。ここに文書化されています: http://werkzeug.pocoo.org/docs/test/

ご覧のとおり、postを使用しopenます。しかし、open次のものしかありません:

Parameters: 
 as_tuple – Returns a tuple in the form (environ, result)
 buffered – Set this to True to buffer the application run. This will automatically close the application for you as well.
 follow_redirects – Set this to True if the Client should follow HTTP redirects.

そのため、サポートされていないようです。しかし、どうすればそのような機能を動作させることができますか?

4

2 に答える 2

81

open*argsおよび**kwargswhich をEnvironBuilder引数として使用することもできます。headersしたがって、最初の投稿リクエストに引数だけを追加できます。

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'});
于 2013-08-16T05:11:13.703 に答える