最近因工作原因,需要测试dubbo接口,通过公司同事写的框架,再结合度娘的帮助,自己做了一些总结记录。

通过下文意在说明如何搭建一个spring + dubbo + testng的测试环境,并完成一个简单的dubbo接口测试用例。

一、在Idea中新建一个maven工程

二、在pom.xml中添加相关依赖

  1. <dependencies>
  2. <!-- Spring框架依赖:用于构建Spring容器 -->
  3. <dependency>
  4. <groupId>org.springframework</groupId>
  5. <artifactId>spring-context</artifactId>
  6. <version>5.1.5.RELEASE</version>
  7. </dependency>
  8.  
  9. <!-- Spring单元测试依赖:用于测试类启动spring容器 -->
  10. <dependency>
  11. <groupId>org.springframework</groupId>
  12. <artifactId>spring-test</artifactId>
  13. <version>5.1.5.RELEASE</version>
  14. <scope>test</scope>
  15. </dependency>
  16.  
  17. <!-- dubbo依赖-->
  18. <dependency>
  19. <groupId>com.alibaba</groupId>
  20. <artifactId>dubbo</artifactId>
  21. <version>2.6.2</version>
  22. <exclusions>
  23. <exclusion>
  24. <artifactId>spring</artifactId>
  25. <groupId>org.springframework</groupId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29.  
  30. <!-- 引入相应工程的jar包:*根据工程不同具体填入相应值-->
  31. <dependency>
  32. <groupId>com.*.*</groupId>
  33. <artifactId>*</artifactId>
  34. <version>*</version>
  35. </dependency>
  36.  
  37. <!-- testng依赖:测试框架-->
  38. <dependency>
  39. <groupId>org.testng</groupId>
  40. <artifactId>testng</artifactId>
  41. <version>6.14.3</version>
  42. <scope>test</scope>
  43. </dependency>
  44.  
  45. <!-- fastjson依赖:主要用于接口返回结果中解析json对象 -->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>fastjson</artifactId>
  49. <version>1.2.54</version>
  50. </dependency>
  51.  
  52. <!-- 流式断言器依赖:要比于junit和testng中的断言,assertj的api更强大-->
  53. <dependency>
  54. <groupId>org.assertj</groupId>
  55. <artifactId>assertj-core</artifactId>
  56. <version>3.11.1</version>
  57. <scope>test</scope>
  58. </dependency>
  59.  
  60. </dependencies>

 三、Dubbo服务spring配置(resources目录下新建一个bean.xml文件)

由于测试过程是RPC(远程调用接口)的过程,测试项目相当于服务消费方Consumer,开发项目相当于服务提供方Provider,

所以测试只需要进行消费方的spring配置。xml的模板可以直接从要测试的dubbo接口对应的应用中拷贝;

<dubbo:application>必须声明,name和owner的值随便取(当然要取有一定意义的),没有对应关系;

<dubbo:reference>中url对应dubbo接口对应的dubbo服务地址和端口,

          id唯一即可,

          interface是dubbo服务的全限定类名

  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. http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
  8.  
  9. <dubbo:application name="x1_consumer" owner="x2_consumer"/>
  10. <dubbo:reference
  11. url="dubbo://192.168.0.100:20860"
  12. id="testService"
  13. interface="com.*.*.service.TestService"
  14. timeout="30000"/>
  15.  
  16. </beans>

四、编写测试脚本

  1. import com.*.*.TestService;
  2. import org.springframework.test.context.ContextConfiguration;
  3. import org.springframework.test.context.testng.AbstractTestNGSpringContextTests;
  4. import javax.annotation.Resource;
  5.  
  6. //测试类需要继承AbstractTestNGSpringContextTests,如果不这么做测试类是无法启动Spring容器的
  7. @ContextConfiguration(locations = "classpath:bean.xml")
  8. public class TestBase extends AbstractTestNGSpringContextTests {
  9. @Resource
  10. public TestService testService;
  11.  
  12. }

测试类需要继承AbstractTestNGSpringContextTests,如果不这么做测试类是无法启动Spring容器的

使用了[@ContextConfiguration]是为了加载被测试的Bean

  1. import com.alibaba.fastjson.JSON;
  2. import org.testng.Assert;
  3. import org.testng.annotations.Test;
  4. import java.util.ArrayList;
  5. import java.util.List;
  6. import static org.assertj.core.api.Assertions.assertThat;
  7.  
  8. public class TestSaveData extends TestBase {
  9. private TestDTO testDTO = new TestDTO();
  10. private List<Integer> categorys = new ArrayList<Integer>();
  11.  
  12. @Test
  13. public void TestSaveData_nameIsNull() {
  14. categorys.add(1);
  15. testDTO.setCategorys(categorys);
  16. ResponseDTO res = TestService.saveData(testDTO);
  17. System.out.println(JSON.toJSONString(res));
  18. assertThat(res.getCode()).as("返回状态码").isEqualTo("2")
  19. .isBetween("1","2");
  20. assertThat(res.getMessage()).isEqualTo("XX名称不能为空!");
  21. assertThat(res.isSuccess()).isFalse();
  22. }
  23. }

Spring+Dubbo+TestNG接口测试初探的更多相关文章

  1. 基于Spring开发的DUBBO服务接口测试

    基于Spring开发的DUBBO服务接口测试 知识共享主要内容: 1. Dubbo相关概念和架构,以及dubbo服务程序开发步骤. 2. 基于Spring开发框架的dubbo服务接口测试相关配置. 3 ...

  2. Spring Dubbo 开发笔记(一)——概述

    概述: Spring Dubbo 是我自己写的一个基于spring-boot和dubbo,目的是使用Spring boot的风格来使用dubbo.(即可以了解Spring boot的启动过程又可以学习 ...

  3. MAC环境下idea:maven+Spring+Dubbo+Zookeeper简单工程搭建

    : 一:安装软件:tomcatZookeeperDubbo+admin 二:工程: 总工程  API    Pom.xml:不用引用任何东西  Provider    Pom.xml:要denpend ...

  4. Spring Dubbo 开发笔记

    第一节:概述 Spring-Dubbo 是我自己写的一个基于spring-boot和dubbo,目的是使用Spring boot的风格来使用dubbo.(即可以了解Spring boot的启动过程又可 ...

  5. java+testng接口测试入门

    testNG是一个测试框架,它能组织测试用例按照你想要的方式进行运行,并输出一定格式的便于阅读的测试报告(结果),通过java+testng的方式说明一下接口测试的基本使用方法. 一.环境搭建 a)千 ...

  6. spring+dubbo整合

    创建公共接口或者project用到的一些bean.我这里就仅仅是创建了一个接口.project文件夹例如以下: watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQ ...

  7. Spring+Dubbo集成Redis的两种解决方案

    当下我们的系统数据库压力都非常大,解决数据库的瓶颈问题势在必行,为了解决数据库的压力等需求,我们常用的是各种缓存,比如redis,本文就来简单讲解一下如何集成redis缓存存储,附github源码. ...

  8. 160719、Spring + Dubbo + zookeeper (linux) 框架搭建

    转载一篇博客,写得不错(至少我参考一下搭建成功了) 转载地址:http://my.oschina.net/wangt10/blog/522799 dubbo简介 节点角色说明: Provider: 暴 ...

  9. (转)Dubbo + Zookeeper入门初探

    一.搭建java和tomcat环境 二.搭建zookeeper 三.搭建dubbo监控中心 四.配置项目 4.1 服务提供方代码 4.2 服务使用方代码 五.测试 2018年2月15日,阿里巴巴的du ...

随机推荐

  1. matlab基本函数randperm end数组索引

    一起来学演化计算-matlab基本函数randperm end数组索引 觉得有用的话,欢迎一起讨论相互学习~Follow Me 随机排列 语法 p = randperm(n) p = randperm ...

  2. 图片缩放——利用layui的滑块

    @layui官网文档.@参考博客 参考博客中能实现,但是效果差强人意,在前辈的基础上进行了改造,并支持了动态多图列表 <%@ page language="java" con ...

  3. python flask框架学习——开启debug模式

    学习自:知了课堂Python Flask框架——全栈开发 1.flask的几种debug模式的方法 # 1.app.run 传参debug=true app.run(debug=True) #2 设置 ...

  4. [转]Xmind 8 pro 软件破解版

    链接地址:https://blog.csdn.net/qq_16093323/article/details/80967867 作者博客:http://www.carrotchou.blog/

  5. axios ajax框架 请求配置

    请求参数 { // `url` is the server URL that will be used for the request url: '/user', // `method` is the ...

  6. 切实解决socket连接掉线检测

    原文:切实解决socket连接掉线检测 版权声明:欢迎转载,但是请保留出处说明 https://blog.csdn.net/lanwilliam/article/details/51698807 新公 ...

  7. YCOJ过河卒C++

    过河卒是一道~~较简单 的问题,用递归或者动态规划都可以完成,但今天主要不是递归或者动态规划,而是用深度优先搜索做的.虽然会有两组TLE~~ 深搜是一种向下搜索的算法(如图所示) 它能有效的统计中点到 ...

  8. miniconda3 安装tensorflow

    使用miniconda3进行安装 conda create -n tensorflow conda install tensorflow 输入下面的代码进行测试 import tensorflow a ...

  9. 循环(数组循环、获取json数据循环)、each()循环详解

    return; // 退出循环(不满足,退出此次循环.下次满足条件,依然会走此循环)return false; //退出函数(退出所有) 一. 数组循环: html: <div class=&q ...

  10. [转帖]时序数据库技术体系 – InfluxDB TSM存储引擎之数据写入

    时序数据库技术体系 – InfluxDB TSM存储引擎之数据写入 http://hbasefly.com/2018/03/27/timeseries-database-6/  2018年3月27日  ...