controller单元测试代码

该博客展示了如何使用Spring Boot的MockMvc进行Controller单元测试,包括GET和POST请求的测试。通过创建MockBean模拟Service层操作,并设置预期响应,确保Controller的正确行为。测试覆盖了不同的请求参数组合。
摘要由CSDN通过智能技术生成
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Matchers;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.http.MediaType;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.ResultActions;


import java.util.ArrayList;
import java.util.List;


import static org.mockito.BDDMockito.given;
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.*;


/**
 * Created by ji_pengyun on 17-7-11.
 */
@RunWith(SpringJUnit4ClassRunner.class)
@WebMvcTest(MaintCompletionEvaluationController.class)

//新创建一个启动类。去掉mybatis的mapperScan注解。

@ContextConfiguration(classes = {com.chinamobile.cmss.test_support.ConfigurationForTest.class})
public class MaintCompleteEvaluationControllerTest {



    @MockBean
    private MaintCompletionEvaluationService maintCompleteEvaluationService;

    @MockBean
    private MaintPointResponseService maintPointResponseService;

    @MockBean
    private TaskService taskService;

    @MockBean
    private SubTaskService subTaskService;

    @MockBean
    private MaintCompleteService maintCompleteService;

    @MockBean
    private BusinessDataCompleteService businessDataCompleteService;

    @Autowired
    private MockMvc mvc;

    //get 请求
    @Test
    public void testGetMaintCompletionEvaluationSum()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值