Junit4測試Controller
前言
使用注入controller的方式測試controller介面
Controller層
/**
* 組織機構管理的處理
*/
@Controller
@RequestMapping("/system/dept")
public class DeptController {
/**
* 組織機構管理服務
*/
@Autowired
private DeptService deptService;
/**
* 許可權管理服務
*/
@Autowired
private AuthorService authorService;
/**
* 組織機構管理頁面入口
* @return 跳轉到組織機構管理頁面
*/
@RequestMapping("/show")
public String show(ModelMap map, String menuId, HttpServletRequest request) {
//得到使用者資訊
UserInfo users = Util.getSessionUserInfo(request);
//儲存當前使用者的所屬區域
map.put("regionCode", users.getRegionCode());
//得到操作許可權
Map<String, String> operation = authorService.getOperPermission(users.getRoleIdList(), menuId);
map.put("operation" , operation);
return "system/organization/organizationList";
}
}
單元測試類
package com.wx.app.ygp.action.system;
import com.wx.app.ygp.entity.system.UserInfo;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpSession;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.transaction.TransactionConfiguration;
import org.springframework.test.context.web.WebAppConfiguration;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.ui.ModelMap;
import java.util.ArrayList;
import java.util.List;
/**
* @Author huangjp
* @create in 2017-8-23 13:45
* @Description : 部門管理控制層的測試類
**/
@RunWith(SpringJUnit4ClassRunner.class) //這個必須使用junit4.9以上才有
@ContextConfiguration(locations = {"classpath:spring-test.xml","classpath:spring-mybatis.xml"})
@TransactionConfiguration(defaultRollback=true) //配置事務的回滾,對資料庫的增刪改都會回滾,便於測試用例的迴圈利用
@Transactional //事務處理
public class DeptControllerTest extends AbstractTransactionalJUnit4SpringContextTests {
//mock模擬session
private MockHttpSession session;
//mock模擬request
private MockHttpServletRequest request;
@Before
public void setUp() throws Exception {
this.session = new MockHttpSession();
this.request = new MockHttpServletRequest();
}
@Test
public void testShow() throws Exception {
//建立引數
UserInfo userInfo = new UserInfo();
userInfo.setRegionCode("360482");
List<String> roleIdList = new ArrayList<>();
roleIdList.add("2410151");
userInfo.setRoleIdList(roleIdList);
session.setAttribute("userInfo",userInfo);
ModelMap modelMap = new ModelMap();
request.setSession(session);
String menuId = "21";
//構造controller
DeptController deptController = (DeptController) this.applicationContext.getBean("deptController");
String result = deptController.show(modelMap, menuId, request);
System.out.println("返回值:" + result);
}
}
spring-test.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/cache
http://www.springframework.org/schema/cache/spring-cache-3.2.xsd ">
<!-- 配置資原始檔 -->
<bean id="ygpProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>classpath:db.properties</value>
</list>
</property>
</bean>
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
<property name="properties" ref="ygpProperties" />
</bean>
<!-- 配置資料庫 -->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
destroy-method="close">
<property name="url" value="${base.url}"/>
<property name="username" value="${base.username}"/>
<property name="password" value="${base.password}"/>
<property name="driverClassName" value="${base.driver}"/>
</bean>
<!-- 配置需要測試的controller -->
<bean id="deptController" class="com.wx.app.ygp.action.system.DeptController"></bean>
<!-- 配置controller中需要注入的service(無論此次測試的介面是否要使用,都需要配置進來,否則會報載入配置檔案失敗的錯誤)-->
<bean id="authorService" class="com.wx.app.ygp.service.system.impl.AuthorServiceImpl"></bean>
<bean id="rolePrivilegeService" class="com.wx.app.ygp.service.privilege.impl.RolePrivilegeServiceImpl"></bean>
<bean id="deptService" class="com.wx.app.ygp.service.system.impl.DeptServiceImpl"></bean>
</beans>
spring-mybatis.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
default-lazy-init="true"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<description>Mybatis Configuration</description>
<!-- Mybatis begin -->
<!-- 事務管理配置 -->
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!-- 與mybatis整合 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<property name="configLocation" value="classpath:mybatis-config.xml"></property>
<!-- mybatis配置檔案自動掃描路徑 -->
<property name="mapperLocations" value="classpath:com/wx/app/ygp/**/dao/*.xml"></property>
</bean>
<!-- Mapper介面所在包名,Spring會自動查詢其下的類 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.wx.app.ygp.dao"/>
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
</bean>
<!-- Mybatis end -->
<bean id="jdbcTemplate"
class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource">
<ref bean="dataSource" />
</property>
</bean>
<bean id="idGenarater"
class="org.springframework.jdbc.support.incrementer.MySQLMaxValueIncrementer">
<property name="incrementerName" value="ss_key_table"/>
<property name="columnName" value="sequence"/>
<property name="cacheSize" value="2"/>
<property name="dataSource" ref="dataSource"/>
</bean>
</beans>
測試結果
返回值:system/organization/organizationList
參考資料
結語
使用mockmvc測試controller時,顯示authorService為null,即service注入失敗,不知道是什麼原因引起的,待解決。
相關推薦
Junit4測試Controller
前言 使用注入controller的方式測試controller介面 Controller層 /** * 組織機構管理的處理 */ @Controller @RequestMapping("/system/dept") public class D
Spring+SpirngMVC+Shiro+Junit4單元測試Controller方法
版本:Spring 4.1.8 Spring MVC 4.1.8,Shiro 1.2.4,Junit 4.12 網上關於對Controller的測試其實挺多的,不過也挺雜亂的,遇到各種坑。 首先用到的是MockMvc這個測試框架,這個沒什麼好說的; 其
spring MVC中controller層和service層的junit4測試
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; import static org.springframework.test.web.servlet.result.MockMvcResul
基於RESTful風格的controller層(SpringMVC)的測試:MockMVC(SpringBoot和JUnit4測試環境)
個人程式碼 首先附上個人測試過的程式碼: /** * Description * * @author Amethyst * @date 2017/5/2 15:28 //SpringRunner繼承自:SpringJUnit4ClassR
spring junit4 測試
pre pri prim ima cat except service mapper new @Service @ContextConfiguration(locations = { "classpath:config/applicationContext
springboot利用MockMvc測試controller控制器
ica 返回 protect exceptio charset ood 返回JSON數據 autowire utf-8 主要記錄一下控制器的測試,service這些類測試相對簡單些(可測試性強) API測試需求比較簡單: ① 需要返回正確的http狀態碼 200 ②
使用MockMvc測試controller
視圖 tps .get servle req match 測試 引入 get 之前我們測試controller的時候僅僅是作為一個pojo來進行簡單的測試,spring3.2後我們可以按照控制器的方式來測試Spring MVC的controller了,這樣的話在測試控制
SpringBoot Junit測試Controller
expec ppc tails setup imp entity new json.js 刪除對象 原文鏈接:https://blog.csdn.net/xiaolyuh123/article/details/73281522 import java.util.Lis
myeclipse2017maven Web項目測試controller時報404錯誤
框架搭建 ont bsp .com ssm text root 單元測試 img 問題描述: 這是我自己基於SSM框架搭建的一個Maven Web項目,前面一切順利,單元測試這些都通過了,就是訪問不到controller,直接改為訪問jsp也不行,頁面一直顯示404,後來也
JUnit4測試類使用,以及注意事項
專案的目錄配置檔案: 建立測試類: import org.activiti.engine.*; import org.activiti.engine.identity.User; import org.activiti.engine.impl.persiste
ssh junit4測試時列印物件報錯nosession
ssh整合專案,做單元測試時測試hibernate查詢物件關係是否成功時,列印物件報了錯: org.hibernate.LazyInitializationException: could not initialize proxy - no Session at org.hibernate
Junit測試Controller(MockMVC使用),傳輸@RequestBody資料解決辦法
一、單元測試的目的 簡單來說就是在我們增加或者改動一些程式碼以後對所有邏輯的一個檢測,尤其是在我們後期修改後(不論是增加新功能,修改bug),都可以做到重新測試的工作。以減少我們在釋出的時候出現更過甚至是出現之前解決了的問題再次重現。 這裡主要是使用Moc
JUnit4測試框架
JUnit4測試框架 在軟體測試領域有很多的測試框架,比如JUnit、TestNG等,但是最著名的則是JUnit。在這個測試框架中有一句經典的話:keeps the bar green to keeps the code clean!以下介紹整個框架的入門。
Spring mvc 之Junit 單元測試 Controller中方法
Springmvc 之Junit 單元測試 1. 首先引入測試的jar包。 1.1因為我用的ide是eclipse,現只介紹eclipse中junit的使用。首先引用eclipse中自帶的junit, 方法: 右鍵專案—>proper
MockMVC測試Controller中常見的請求方式
TestController.java @RestController public class TestController { private final String PATH = "D:\\Develop\\JavaEE\\laboratory
Junit4測試報錯
1、字串陣列越界 java.lang.String IndexOutOfBounds Exception:String index out of range:-1 導致: Transac
Spring boot API測試 Controller邏輯正常但返回404
使用postman測試介面,返回404錯誤,如下所示{ "timestamp": 1516711514877, "status": 404, "error": "Not Found", "message": "No message avai
使用postman進行本地測試Controller介面的cookie設定
測試常見HTTP請求可以用postman windows版,非常方便若測試的介面需要提供cookie資訊,可以將cookie域設為localhost ,即可在本地測試請求中攜帶cookie資訊PS: 試了一下 ,這個postman超級牛逼,連檔案上傳和下載都能測試。。。。。。
JUnit 單元測試-Controller
1.GET請求 1.1 演示介面 @Controller @RequestMapping(value = "/hello") public class HelloController { @GetMapping("/test") @Re
Spring自帶mock測試Controller
準備SpringMVC環境 注意:使用mock測試需要引入spring-test包 Base類:載入配置檔案 package com.wyy.snail.user.controller; import org.junit.runner.RunWith; import o