MOCKITO 应用示例
package com.paic.wms.service.auditflow.impl;
import static org.junit.Assert.*;
import java.util.ArrayList;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONObject;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import com.paic.mms.dto.PsPaicEmpInfoDTO;
import com.paic.wp.dao.system.AuditFlowDAO;
import com.paic.wp.service.system.AuditFlowServiceImpl;
//Let's import Mockitostatically so that the code looks clearer
import static org.mockito.Mockito.*;
//import staticorg.powermock.api.mockito.PowerMockito.*;
public class AuditFlowServiceImplTest {
AuditFlowServiceImpl service;
AuditFlowDAO daoMock;
@Before
public void setUp() throws Exception {
service = new AuditFlowServiceImpl();
daoMock = mock(AuditFlowDAO.class);
service.setAuditFlowDAO(daoMock);
}
@Test
public final void testSelectPsEmpInfoByUm() throws Exception {
testUmIsNull();
testUmIsNotNullAndPaPaicEmpInfoListIsNull();
testUmIsNotNullAndPaPaicEmpInfoListIsNotNull();
}
@Test
public final void testSelectPsEmpInfoByUmOrName() throws Exception {
testUmIsNullForByUmOrName();
testUmIsNotNullAndPaPaicEmpInfoListIsNullForByUmOrName();
testUmIsNotNullAndPaPaicEmpInfoListIsNotNullForByUmOrName();
}
@After
public void tearDown() throws Exception {
service = null;
}
private void testUmIsNotNullAndPaPaicEmpInfoListIsNotNull() throws Exception{
//given
String um = "zhengxinliang001";
List<PsPaicEmpInfoDTO> list = getPsPaicEmpInfoList();
//when
when(daoMock.selectPsEmpInfoByUm("zhengxinliang001")).thenReturn(list);
PsPaicEmpInfoDTO dto = service.selectPsEmpInfoByUm(um);
//then
assertEquals("郑新良", dto.getLAST_NAME());
}
private List<PsPaicEmpInfoDTO> getPsPaicEmpInfoList() {
PsPaicEmpInfoDTO dtoInServer = new PsPaicEmpInfoDTO();
dtoInServer.setPAIC_UM_NUM("zhengxinliang001");
dtoInServer.setLAST_NAME("郑新良");
dtoInServer.setDEPTID("10000000");
dtoInServer.setDEPT_NAME("平安机构");
List<PsPaicEmpInfoDTO> list = newArrayList<PsPaicEmpInfoDTO>();
list.add(dtoInServer);
return list;
}
private void testUmIsNotNullAndPaPaicEmpInfoListIsNull() throws Exception {
//given
String um = "noBody001";
//when
when(daoMock.selectPsEmpInfoByUm("noBody001")).thenReturn(null);
PsPaicEmpInfoDTO dto = service.selectPsEmpInfoByUm(um);
//then
assertEquals(dto, null);
}
private void testUmIsNull() throws Exception {
//given
String um = null;
//when
when(daoMock.selectPsEmpInfoByUm("")).thenReturn(null);
PsPaicEmpInfoDTO dto = service.selectPsEmpInfoByUm(um);
//then
assertEquals(dto, null);
}
//当um账号存在的时候
private void testUmIsNotNullAndPaPaicEmpInfoListIsNotNullForByUmOrName()throws Exception{
//given
String um = "zhengxinliang001";
//when
when(daoMock.selectPsEmpInfoByUmOrName(um)).thenReturn(getPsPaicEmpInfoList());
String umInfoFromService = service.selectPsEmpInfoByUmOrName(um);
//then
JSONObject umInfo = getPsEmpInfoJSON();
assertEquals(umInfo.toString(), umInfoFromService);
}
private JSONObject getPsEmpInfoJSON() {
JSONObject umInfo = new JSONObject();
umInfo.put("um", "zhengxinliang001");
umInfo.put("name", "郑新良");
umInfo.put("deptNo", "10000000");
umInfo.put("deptName", "平安机构");
JSONArray empArray = new JSONArray();
empArray.put(umInfo);
JSONObject returnJSON = new JSONObject();
returnJSON.put("size", 1);
returnJSON.put("zhengxinliang001", empArray);
return returnJSON;
}
//um账号不存在的时候
private void testUmIsNotNullAndPaPaicEmpInfoListIsNullForByUmOrName()throws Exception{
//given
String um = null;
//when
when(daoMock.selectPsEmpInfoByUm("noBody001")).thenReturn(null);
String umInfoFromService = service.selectPsEmpInfoByUmOrName(um);
//then
JSONObject umInfo = new JSONObject();
umInfo.put("size", "0");
assertEquals(umInfoFromService, umInfo.toString());
}
//当um账号是空的时候
private void testUmIsNullForByUmOrName() throws Exception {
//given
String um = null;
//when
when(daoMock.selectPsEmpInfoByUm("")).thenReturn(null);
String umInfoFromService = service.selectPsEmpInfoByUmOrName(um);
//then
JSONObject umInfo = new JSONObject();
umInfo.put("size", "0");
assertEquals(umInfoFromService, umInfo.toString());
}
}
MOCKITO 应用示例的更多相关文章
- Mockito常用方法及示例
Mockit是一个开源mock框架,官网:http://mockito.org/,源码:https://github.com/mockito/mockito 要使用Mockit,首先需要在我们工程中引 ...
- [译]Google官方关于Android架构中MVP模式的示例
概述 该示例(TODO-MVP)是后续各种示例演变的基础,它主要演示了在不带架构性框架的情况下实现M-V-P模式.其采用手动依赖注入的方式来提供本地数据源和远程数据源仓库.异步任务通过回调处理. 注意 ...
- JUnit + Mockito 单元测试(二)
摘自: http://blog.csdn.net/zhangxin09/article/details/42422643 版权声明:本文为博主原创文章,未经博主允许不得转载. 目录(?)[-] 入门 ...
- 转:Android官方MVP架构示例项目解析
转自: http://www.infoq.com/cn/articles/android-official-mvp-architecture-sample-project-analysis 作者 吕英 ...
- JavaEE参考示例 SpringSide 4.0 GA版杀青
SpringSide是以Spring Framework为核心的,Pragmatic风格的JavaEE应用参考示例,是JavaEE世界中的主流技术选型,较佳实践的总结与演示. 经过漫长的7个月和6个R ...
- [转载]5分钟了解Mockito
原文链接: http://liuzhijun.iteye.com/blog/1512780/ 5分钟了解Mockito 博客分类: Open SourceJava 一.什么是mock测试,什么是moc ...
- JUnit + Mockito 单元测试(二)(good)
import org.junit.Test; import org.mockito.Matchers; import org.mockito.Mockito; import java.util.Lis ...
- Google官方MVP模式示例项目解析 todo-mvp
转载请注明出处:http://www.cnblogs.com/cnwutianhao/p/6700668.html 引言:在Google没有给出一套权威的架构实现之前,很多App项目在架构方面都有或多 ...
- 单元测试系列:Mock工具之Mockito实战
更多原创测试技术文章同步更新到微信公众号 :三国测,敬请扫码关注个人的微信号,感谢! 原文链接:http://www.cnblogs.com/zishi/p/6780719.html 在实际项目中写单 ...
随机推荐
- block 解析 - 形参变量
block形参 之前漏了一篇block形参的介绍,这里给补上. block形参就是定义block带的参数,和函数的参数使用一样,我们可以在block随意使用修改block形参. 我们来看个例子: 我们 ...
- iOS viewController添加导航条以及返回跳转选择
给单独的viewcontroller或者在Appdelegate的主页面添加导航条,只要在viewcontroller上添加navigationcontroller,在添加此navigationcon ...
- CSS3_3D效果(IE10_火狐_谷歌)
好久没写博客了,看了下记录,上次最后写的最后一篇已经是8月1号了,最近有些小东西整理下,当巩固吧 废话少说,直奔本文主题 css3提供了很多新鲜好玩的东西,transform就是其中一个,可以进行 2 ...
- Spring Web MVC中的页面缓存支持 ——跟我学SpringMVC系列
Spring Web MVC中的页面缓存支持 ——跟我学SpringMVC系列
- perl 回调必须是函数引用
[root@wx03 lib]# cat a1.pl use AE; use AnyEvent; ##定义watch my $t = AnyEvent->timer( after => 0 ...
- pomelo研究笔记-RPCclient
1. mailbox数据收发模块 一个RPC客户端可能同一时候须要调用多个远端(server)提供的服务.在pomelo里每一个server抽象为一个mailbox.先来看看mailbox的实现: v ...
- ARMv8 Linux内核源代码分析:__flush_dcache_all()
1.1 /* * __flush_dcache_all() * Flush the wholeD-cache. * Corrupted registers: x0-x7, x9-x11 */ EN ...
- Codeforces Round #199 (Div. 2) C. Cupboard and Balloons
C. Cupboard and Balloons time limit per test 2 seconds memory limit per test 256 megabytes input sta ...
- VB.net总结
.NET视频差点儿相同用时一周结束,总体感觉就是"走耳不走脑".刚開始看视频理解起来有一点困难,台湾口音以及台湾与大陆计算机术语的差异,让我把前几集相当于直接忽略过了(建议打算看这 ...
- HTML - HTML Commonly Used Character Entities
HTML Entities Some characters are reserved in HTML. It is not possible to use the less than (<) o ...