springMVC的单元测试

Easter79
• 阅读 582

Controller层

@Controller
public class BookController {
    @Autowired
    private BookService bookService;
    private static final Log logger = LogFactory.getLog(BookController.class);

    @RequestMapping(value = "/book_edit/{id}")
    public String editBook(Model model, @PathVariable long id) {
        System.out.println(id);
        Book book = bookService.get(id);
        model.addAttribute("book", book);
        return "BookEditForm";
    }

    @RequestMapping(value = "/book_save" ,method = RequestMethod.POST)
    public String saveBook(@ModelAttribute Book book) {
        //bookService.save(book);
        return "redirect:/book_list";
    }

    @RequestMapping(value = "/book_list",method = RequestMethod.GET)
    public String listBooks(Model model) {
        logger.info("book_list");
        System.out.println("book_list start excute!!");
        List<Book> books = bookService.getAllBooks();
        model.addAttribute("books", books);
        return "BookList";
    }
}

模拟的测试类

package cm.yanxi.test;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.servlet.view.InternalResourceViewResolver;

<!---这几个常量很重要,必须引入-->
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.flash;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.view;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.model;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.redirectedUrl;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;

import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppContextSetup;
/**
 * Created by 言溪 on 2016/11/10.
 */
@RunWith(SpringJUnit4ClassRunner.class)

//表示测试环境使用的ApplicationContext将是WebApplicationContext类型的;value指定web应用的根

@WebAppConfiguration("src/main/webapp")
@ContextConfiguration(locations = {"classpath:spring-common.xml","classpath:spring-mvc.xml"})

public class BookControllerTest {

//    注入web环境的ApplicationContext容器

    @Autowired
    private WebApplicationContext webApplicationContext;

    private MockMvc mockMvc;

    @Before
    public void setup() throws  Exception{

        InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
        viewResolver.setPrefix("/html/");
        viewResolver.setSuffix(".jsp");

        this.mockMvc=webAppContextSetup(this.webApplicationContext).build();
    }

    @Test
    public void saveBookTest() throws Exception {
        this.mockMvc.perform(
                post("/book_save")
                        .contentType(MediaType.APPLICATION_FORM_URLENCODED)
                        .param("category","计算机科学")
                        .param("title","大数据集群")
                        .param("author","kangkang")
                        .param("isbn","123456"))
                .andDo(print())
                .andExpect(redirectedUrl("/book_list"))
                .andReturn();
    }

    @Test
    public void BookListTest() throws Exception {
        this.mockMvc.perform(get("/book_list"))
                .andDo(print())
                .andExpect(view().name("BookList"))
                .andReturn();
    }

    @Test
    public void BookEditTest() throws Exception {
        this.mockMvc.perform(get("/book_edit/{id}","3"))
                .andDo(print())
                .andExpect(status().isOk())
                .andExpect(view().name("BookEditForm"))
                .andExpect(model().attribute("book",""))
                .andReturn();
    }


}

更多的模拟请求案例点这里

##解释一下几个参数的含义

  • mockMvc.perform执行一个请求; 
  • MockMvcRequestBuilders.get("/book_edit/{id}")构造一个请求 
  • ResultActions.andExpect添加执行完成后的断言 
  • ResultActions.andDo添加一个结果处理器,表示要对结果做点什么事情,例如使用
    • MockMvcResultHandlers.print()输出整个响应结果信息。
  • ResultActions.andReturn表示执行完成后返回相应的结果。

测试结果显示

MockHttpServletRequest:
      HTTP Method = GET
      Request URI = /book_edit/3
       Parameters = {}
          Headers = {}

Handler:
             Type = com.yanxi.controller.BookController
           Method = public java.lang.String com.yanxi.controller.BookController.editBook(org.springframework.ui.Model,long)

Async:
    Async started = false
     Async result = null

Resolved Exception:
             Type = null

ModelAndView:
        View name = BookEditForm
             View = null
        Attribute = book
            value = Book{id=3, isbn='9787115386397', title='HTML5实战', category='计算机编程', author='Marco Casario'}
           errors = []

FlashMap:
       Attributes = null

MockHttpServletResponse:
           Status = 200
    Error message = null
          Headers = {}
     Content type = null
             Body = 
    Forwarded URL = /html/BookEditForm.jsp
   Redirected URL = null
          Cookies = []
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Wesley13 Wesley13
3年前
Java获得今日零时零分零秒的时间(Date型)
publicDatezeroTime()throwsParseException{    DatetimenewDate();    SimpleDateFormatsimpnewSimpleDateFormat("yyyyMMdd00:00:00");    SimpleDateFormatsimp2newS
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
ES6 新增的数组的方法
给定一个数组letlist\//wu:武力zhi:智力{id:1,name:'张飞',wu:97,zhi:10},{id:2,name:'诸葛亮',wu:55,zhi:99},{id:3,name:'赵云',wu:97,zhi:66},{id:4,na
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这
Easter79
Easter79
Lv1
今生可爱与温柔,每一样都不能少。
文章
2.8k
粉丝
5
获赞
1.2k