当前位置:   article > 正文

jmeter 对 dubbo 接口测试是怎么实现的?有哪几个步骤_直接调用dubbo测试

直接调用dubbo测试

目录

前言

一.先了解下 dubbo 的原理,最好自己搭建一个案例可参考以下方式搭建

http://09792bb8.wiz03.com/share/s/09uiKU3j2kR120MIpT2AdLm70pfBmE1zFApv2jiDZ01GhE8j

二.编写 dubbo 测试脚本


前言

 最近使用工作中使用jmeter调用dubbo接口进行接口测试,在实际尝试中遇到了一些问题,这里把这些问题整理了出来,特编写此文档,用作记录,同时分享给有需要的童鞋。

      从我最近一段时间的测试来看,Jmeter调用dubbo接口主要有两种方式(可能存在我不知道的方式,如哪位知道,欢迎指点),一种是通过java调用实现;一种是通过Jmeter的dubbo插件来实现。

一.先了解下 dubbo 的原理,最好自己搭建一个案例
可参考以下方式搭建

http://09792bb8.wiz03.com/share/s/09uiKU3j2kR120MIpT2AdLm70pfBmE1zFApv2jiDZ01GhE8j

二.编写 dubbo 测试脚本

源码:
https://git.coding.net/mgjerome/jmeter_dubbo.git
1.创建 jmeter_dubbo Maven 项目

直接 Next 创建项目

2.添加 pom.xml 配置

  1. <properties>
  2. <spring.version>3.2.4.RELEASE</spring.version>
  3. </properties>
  4. <dependencies>
  5. <dependency>
  6. <groupId>com.alibaba</groupId>
  7. <artifactId>dubbo</artifactId>
  8. <version>2.5.3</version>
  9. <exclusions>
  10. <exclusion>
  11. <groupId>org.springframework</groupId>
  12. <artifactId>spring</artifactId>
  13. </exclusion>
  14. </exclusions>
  15. </dependency>
  16. <!--dubbo注册中心-->
  17. <dependency>
  18. <groupId>org.apache.zookeeper</groupId>
  19. <artifactId>zookeeper</artifactId>
  20. <version>3.4.6</version>
  21. </dependency>
  22. <!--zookeeper客户端-->
  23. <dependency>
  24. <groupId>com.github.sgroschupf</groupId>
  25. <artifactId>zkclient</artifactId>
  26. <version>0.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-core</artifactId>
  31. <version>${spring.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-context</artifactId>
  36. <version>${spring.version}</version>
  37. </dependency>
  38. </dependencies>

3.resources 目录下创建 lib 文件夹存放, dubbo 接口 jar
ApacheJMeter_core.jar ApacheJMeter_java.jar (apache-jmeter-3.2\lib\ext 目录下)
jorphan.jar(apache-jmeter-3.2\lib 目录下 用于 main 调试执行)
dubbo.xsd(由于http://code.alibabatech.com/schema/dubbo/dubbo.xsd 服务已停用 从网上下载该文件,或者从 dubbo-2.5.3.jar META-INF 目录下导出
)

4.创建 dubbo 消费者 xml 文件 consumer.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans
  5. http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://code.alibabatech.com/schema/dubbo
  7. ./dubbo.xsd"
  8. >
  9. <!-- 消费方应用名,用于计算依赖关系,不是匹配条件,不要与提供方一样 -->
  10. <dubbo:application name="hello-consumer" />
  11. <!-- 使用multicast广播注册中心暴露发现服务地址 -->
  12. <dubbo:registry address="zookeeper://127.0.0.1:2181" />
  13. <!-- 生成远程服务代理,可以和本地bean一样使用demoService -->
  14. <dubbo:reference id="helloService" interface="com.service.HelloService" />
  15. </beans>

5.编写 jmeter 脚本

  1. package com.buddo;
  2. import com.service.HelloService;
  3. import org.apache.jmeter.config.Arguments;
  4. import org.apache.jmeter.protocol.java.sampler.AbstractJavaSamplerClient;
  5. import org.apache.jmeter.protocol.java.sampler.JavaSamplerContext;
  6. import org.apache.jmeter.samplers.SampleResult;
  7. import org.springframework.context.ApplicationContext;
  8. import org.springframework.context.support.ClassPathXmlApplicationContext;
  9. /**
  10. * Created by CWGJ008 on 2017/10/13.
  11. */
  12. public class Dubbo_port extends AbstractJavaSamplerClient {
  13. private static ApplicationContext context = new ClassPathXmlApplicationContext("consumer.xml");
  14. private static HelloService helloService;
  15. private static long start = 0;
  16. private static long end = 0;
  17. public void setupTest(JavaSamplerContext arg0){
  18. helloService=(HelloService)context.getBean("helloService");
  19. start = System.currentTimeMillis();
  20. }
  21. public SampleResult runTest(JavaSamplerContext javaSamplerContext) {
  22. SampleResult sr = new SampleResult();
  23. sr.setSamplerData("dubbo测试案例");
  24. sr.sampleStart();// jmeter 开始统计响应时间标记
  25. String result = helloService.speakHello("chen");
  26. System.out.println(result);
  27. if(result.contains("chen")){
  28. sr.setResponseData("结果是:" + result, null);
  29. sr.setDataType(SampleResult.TEXT);
  30. sr.setSuccessful(true);
  31. }else {
  32. sr.setSuccessful(false);
  33. }
  34. sr.sampleEnd();// jmeter 结束统计响应时间标记
  35. return sr;
  36. }
  37. //测试结束时调用;
  38. public void teardownTest(JavaSamplerContext arg0) {
  39. end = System.currentTimeMillis();
  40. // 总体耗时
  41. System.err.println("cost time:" + (end - start) + "毫秒");
  42. }
  43. }

6.编写测试类 , 测试执行完 打包时记得注解

  1. package com.buddo;
  2. import org.apache.jmeter.config.Arguments;
  3. import org.apache.jmeter.protocol.java.sampler.JavaSamplerContext;
  4. /**
  5. * Created by CWGJ008 on 2017/10/13.
  6. */
  7. public class TestMain {
  8. public static final void main(String [] args){
  9. JavaSamplerContext arg0 = new JavaSamplerContext(new Arguments());
  10. Dubbo_port test=new Dubbo_port();
  11. test.setupTest(arg0);
  12. test.runTest(arg0);
  13. }
  14. }
  1. 打包

点击 OK

点击 OK

Build 文件

第一次 先 Clean
第二次在 Build 生成

  1. 把生成的 jar 放到 apache-jmeter-3.2\lib\ext 目录下

9.重新启动 jmeter

10.jmeter GUI 界面使用方式
创建线程组

创建 java 请求

选择 dubbo 测试接口

添加察看树结果

执行脚本

查看最后的结果

到这里表示已执行成功


衷心感谢每一个阅读我文章的人      要是觉得可以的话请动手点个关注吧

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/cm456/article/detail/60791
推荐阅读
相关标签
  

闽ICP备14008679号