我在JMeter中编写场景时遇到了问题。它是使用GET
方法的API,需要JSON BODY
。
如果方法是POST/PUT
,这很容易。但我不知道如何处理方法GET。我尝试过:使用HTTP Header Manager
添加Content-Type:application/json
,但没有任何帮助。
据我所知,将BODY
与GET
请求一起使用并不是一个好方法,但开发人员团队已经实现了这样,并且可以使用curl
。
所以我想知道我们可以在JMeter中配置吗?怎么样?
提前致谢。
答案 0 :(得分:2)
事实上,Apache HttpComponents不支持发送带有HTTP GET请求的请求正文,因此在JMeter中,您应该能够使用JSR223 Sampler和以下代码(以下代码)向JSON正文发送GET请求Groovy语言):
import org.apache.http.HttpResponse
import org.apache.http.client.methods.HttpEntityEnclosingRequestBase
import org.apache.http.entity.StringEntity
import org.apache.http.impl.client.CloseableHttpClient
import org.apache.http.impl.client.HttpClientBuilder
import org.apache.http.util.EntityUtils
public class HttpGetWithBody extends HttpEntityEnclosingRequestBase {
public final static String METHOD_NAME = "GET";
@Override
public String getMethod() {
return METHOD_NAME;
}
}
def client = HttpClientBuilder.create().build();
def getRequest = new HttpGetWithBody();
getRequest.setURI(new URL("http://example.com").toURI());
def json = "{\"employees\":[\n" +
" {\"firstName\":\"John\", \"lastName\":\"Doe\"},\n" +
" {\"firstName\":\"Anna\", \"lastName\":\"Smith\"},\n" +
" {\"firstName\":\"Peter\", \"lastName\":\"Jones\"}\n" +
"]}";
def body = new StringEntity(json, "application/json", "UTF-8");
getRequest.addHeader("Content-Type", "application/json");
getRequest.setEntity(body);
def response = client.execute(getRequest);
def result = EntityUtils.toString(response.getEntity());
log.info(result);
有关使用JSR223测试元素和groovy语言以及脚本最佳实践的更多信息,请参阅Beanshell vs JSR223 vs Java JMeter Scripting: The Performance-Off You've Been Waiting For!文章。
答案 1 :(得分:0)
JMeter中有一个针对此https://bz.apache.org/bugzilla/show_bug.cgi?id=60358报告的错误,看起来修复工作正在进行中。希望这个问题很快就会解决。