• mockito



    import org.junit.Assert;
    import org.junit.Before;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.mockito.*;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.boot.test.SpringApplicationConfiguration;
    import org.springframework.data.redis.core.RedisTemplate;
    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.test.web.servlet.MvcResult;
    import org.springframework.test.web.servlet.request.MockHttpServletRequestBuilder;
    import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
    import org.springframework.test.web.servlet.setup.MockMvcBuilders;


    import net.sf.json.JSONObject;

    import javax.annotation.Resource;

    @WebAppConfiguration
    @RunWith(SpringJUnit4ClassRunner.class)
    //@SpringApplicationConfiguration(classes=Application.class)
    @ContextConfiguration(locations = {
    "classpath:spring/*.xml"
    })
    public class EmployeeControllerTest {

    @InjectMocks
    private EmployeeController employeeController;

    @Resource
    @Spy
    private IEmployeeService employeeService;

    @Resource
    @Spy
    private IActionLogsService actionLogsService;
    @Resource
    @Spy
    private RedisTemplate cacheRedisTemplate;

    private MockMvc mockmvc;

    @Before
    public void before() {
    MockitoAnnotations.initMocks(this);
    mockmvc = MockMvcBuilders.standaloneSetup(employeeController).build();
    }

    @Test
    public void passportLoginTest() throws Exception {


    ServiceResult2<PsSyncEmployeesVo> serviceresult = new ServiceResult2<>(200, "请求成功");
    //Mockito.when(this.employeeService.login(Mockito.anyString(), Mockito.anyString())).thenReturn(serviceresult);
    // Mockito.doReturn(serviceresult).when(employeeService).login(Mockito.anyString(), Mockito.anyString());
    MockHttpServletRequestBuilder builder = MockMvcRequestBuilders.post("/pc/login");
    builder.param("appId", "");
    builder.param("username", "");
    builder.param("password", AESUtil.Encrypt("", "", ""));

    MvcResult mvcResult = mockmvc.perform(builder).andReturn();

    String result = mvcResult.getResponse().getContentAsString();
    JSONObject object = JSONObject.fromObject(result);
    String code = String.valueOf(object.get("code"));
    Assert.assertEquals(code, Matchers.eq("200"));
    }

    }
  • 相关阅读:
    express开发实例
    node.js操作mongoDB数据库
    Mysql JDBC Url参数说明useUnicode=true&characterEncoding=UTF-8
    Hibernate 使用说明
    mysql 时间戳与日期格式的相互转换
    MOOC即Massive Open Online Course的缩写
    CentOS+Apache+php无法访问redis的解决方法
    CentOS 6.5下Redis安装详细步骤
    Linux进程基础
    CentOS如何查看端口是被哪个应用/进程占用
  • 原文地址:https://www.cnblogs.com/cxlings/p/6252693.html
Copyright © 2020-2023  润新知