0%

SpringBoot单元测试

spring单元测试

之前在spring项目中使用单元测试时是使用注解@RunWith(SpringJUnit4ClassRunner.class)来进行的

1
2
3
4
5
@RunWith(SpringJUnit4ClassRunner.class)// 通过自动织入从应用程序上下文向测试本身注入bean
@WebAppConfiguration // 指定web环境
@ContextConfiguration(locations = { // 指定配置文件
"classpath*:springmvc.xml"
})

使用@WebAppConfiguration注解之后还可以注入WebApplicationContext环境

1
2
3
4
5
6
7
8
9
@Autowired
private WebApplicationContext webApplicationContext;

private MockMvc mockMvc;

@Before
public void setup(){
mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
}

MockMvc

我们可以使用MockMvc来进行模拟请求

1
2
3
4
5
6
7
8
@Test
public void test() throws Exception {
MockHttpServletResponse response = mockMvc.perform(MockMvcRequestBuilders.get("/json/testJson"))
.andExpect(MockMvcResultMatchers.status().isOk())
.andReturn().getResponse();
System.out.println(response.getContentAsString());

}

web安全测试

我们项目中经常会使用spring-security来进行权限,这就给我们的测试带来了麻烦,可以使用spring-security-test依赖来进行测试

1
2
3
4
5
6
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<version>5.1.5.RELEASE</version>
<scope>test</scope>
</dependency>

在进行开启支持springSecurity

1
2
3
4
5
6
7
@Before
public void setup(){
mockMvc = MockMvcBuilders
.webAppContextSetup(webApplicationContext)
.apply(SecurityMockMvcConfigurers.springSecurity())
.build();
}

在写单元测试方法时,可以使用@WithMockUser来设置用户

1
2
3
4
5
6
7
8
9
@Test
@WithMockUser(username = "root",password = "123456",roles = "ADMIN")
public void testSecurity() throws Exception {
MockHttpServletResponse response = mockMvc.perform(MockMvcRequestBuilders.get("/json/testJson"))
.andExpect(MockMvcResultMatchers.status().isOk())
.andReturn().getResponse();
System.out.println(response.getContentAsString());

}

然后使用测试的UserDetails来进行用户验证@WithUserDetails(“root”)

springboot单元测试

springboot中可以使用@SpringBootTest来进行单元测试,其中设置webEnvironment可以来定义运行模式,并在测试用例上使用@RunWith(SpringRunner.class)注解

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
enum WebEnvironment {

// 加载WebApplicationContext,并提供一个mock servlet环境,使用该模式内嵌的servlet容器不会启动
MOCK(false),

// 加载EmbeddedWebApplicationContext,并提供一个真实的servlet环境,内嵌servlet容器启动,并监听一个随机端口
RANDOM_PORT(true),

// 加载EmbeddedWebApplicationContext,并提供一个真实的servlet环境,内嵌servlet容器启动,并监听一个定义好的接口
DEFINED_PORT(true),

// 使用SpringApplication加载一个ApplicationContext,但不提供servlet环境
NONE(false);

}

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoApplicationTests {

@Autowired
private CustomConfig config;

@Test
public void testProfile() {
System.out.println(config.getName());
}

}

享元模式

使用共享元对象可以有效的支持大量的细粒度对象,本质就是将对象分离和共享

增加缓存,缓存那些不变且重复的数据,这些数据称为对象的内部状态,变化的数据不进行缓存,称为对象的外部状态,在实现的时候,把内部状态分离出来共享称为享元,把外部状态分离出来,放到外部,在需要的时候传递给享元对象使用,为了控制对内部状态的共享,并且让外部能简单地使用共享数据,提供一个工厂来管理享元,称为享元工厂

文章共享文字对象

核心概念

享元模式

  • Flyweight 享元接口,通过该接口可以接受并作用于外部状态
  • ConcreteFlyweight 具体的享元实现对象,封装Flyweight的内部状态
  • UnsharedConcreteFlyweight 非共享的享元实现对象
  • FlyweightFactory 享元工厂,用来创建并管理共享的享元对象
阅读全文 »

桥接模式

将抽象和实现分离,使得两者可以独立的变化。抽象部分通过实现部分的接口与实现部分联系起来

继承树拆分

核心概念

桥接模式

  • Abstraction 抽象部分的接口,需要维护实现部分的对象引用
  • RefinedAbstraction 扩展抽象部分的接口
  • Implementor 实现部分的接口
  • ConcreteImplementor 实现接口的对象
阅读全文 »

解释器模式

给定一个语言定义它的文法表示,并定义一个解释器,这个解释器使用文发表示来解释语言中的句子,本质是分离实现,解释执行

虚拟机机制

核心概念

解释器模式

  • AbstractExcepression 解释器接口
  • TerminalExpression 终结符解释器,实现语法规则中和终结符相关的操作
  • NonterminalExpression 非终结符解释器,实现语法规则中非终结符相关的操作
  • Context 上下文,包含各个解释器需要的数据或公共功能
阅读全文 »

组合模式

将对象组合成树形结构表示”部分-整体“的层次结构,使得用户对单个对象和组合对象的使用具有一致性

树形目录结构

核心概念

组合模式

  • Component 抽象的组件对象
  • Leaf 叶子节点对象
  • Composite 组合对象,存储子组件,定义有子组件的行为
阅读全文 »