赞
踩
项目中开发的一个接口,接收 multipart/form-data
参数,且每个参数都必须指定 Content-Type。现在要使用 JMeter 做性能测试,Files Upload
标签页下的参数可以指定 Content-Type,但是 Parameters
标签页中的参数不可以(需要指定为 application/json
)。这就需要自定义 header 与 body 来实现相关请求的配置。
添加 HTTP Header Manager
,在 header 中定义 Content-Type 与 boundary,如图:
勾掉 Use multipart/form-data for POST
复选框,编辑 Body Data
选项卡,示例:
--test_boundary
Content-Disposition: form-data; name="jsonMsg"
Content-Type: application/json
{"testKey":"key001"}
--test_boundary
Content-Disposition: form-data; name="file1"; filename="test-image.jpg"
Content-Type: image/jpeg
${__FileToString(test-image.jpg,,)}
--test_boundary--
说明:
请求信息:
1.Testing REST API File Uploads in JMeter | BlazeMeter
2.Apache JMeter - User’s Manual: Functions and Variables
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。