- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章SpringBoot使用@SpringBootTest注解开发单元测试教程由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
@SpringBootTest注解是SpringBoot自1.4.0版本开始引入的一个用于测试的注解。基本用法如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<
project
xmlns
=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi
=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation
=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<
modelVersion
>4.0.0</
modelVersion
>
<
groupId
>com.cxh.test</
groupId
>
<
artifactId
>generator</
artifactId
>
<
version
>0.0.1-SNAPSHOT</
version
>
<
parent
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-parent</
artifactId
>
<
version
>1.5.1.RELEASE</
version
>
<
relativePath
/>
<!-- lookup parent from repository -->
</
parent
>
<
properties
>
<
project.build.sourceEncoding
>UTF-8</
project.build.sourceEncoding
>
<
project.reporting.outputEncoding
>UTF-8</
project.reporting.outputEncoding
>
<
java.version
>1.8</
java.version
>
</
properties
>
<
dependencies
>
<!-- spring boot web 依赖 -->
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-web</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-test</
artifactId
>
</
dependency
>
<!-- 修改后立即生效,热部署 -->
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>springloaded</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-devtools</
artifactId
>
</
dependency
>
<!-- 视图 -->
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-thymeleaf</
artifactId
>
</
dependency
>
<!-- mybatis 依赖 -->
<
dependency
>
<
groupId
>org.mybatis.spring.boot</
groupId
>
<
artifactId
>mybatis-spring-boot-starter</
artifactId
>
<
version
>1.3.0</
version
>
</
dependency
>
<!-- mysql 依赖 -->
<
dependency
>
<
groupId
>mysql</
groupId
>
<
artifactId
>mysql-connector-java</
artifactId
>
<
version
>5.0.4</
version
>
</
dependency
>
<!-- alibaba的druid数据库连接池 -->
<
dependency
>
<
groupId
>com.alibaba</
groupId
>
<
artifactId
>druid-spring-boot-starter</
artifactId
>
<
version
>1.1.9</
version
>
</
dependency
>
</
dependencies
>
<
dependencyManagement
>
<
dependencies
>
<
dependency
>
<
groupId
>org.springframework.cloud</
groupId
>
<
artifactId
>spring-cloud-dependencies</
artifactId
>
<
version
>Camden.SR6</
version
>
<
type
>pom</
type
>
<
scope
>import</
scope
>
</
dependency
>
</
dependencies
>
</
dependencyManagement
>
<
build
/>
</
project
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package
com.cxh.study.platform;
import
org.springframework.boot.SpringApplication;
import
org.springframework.boot.autoconfigure.SpringBootApplication;
/**
*
* @desciption
* @author ChenXiHua
*
*/
@SpringBootApplication
public
class
GeneratorApp {
/**
* @param args
*/
public
static
void
main(String[] args) {
SpringApplication.run(GeneratorApp.
class
, args);
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package
com.cxh.study.platform;
import
org.springframework.boot.SpringApplication;
import
org.springframework.boot.autoconfigure.SpringBootApplication;
/**
*
* @desciption
* @author ChenXiHua
*
*/
@SpringBootApplication
public
class
GeneratorApp {
/**
* @param args
*/
public
static
void
main(String[] args) {
SpringApplication.run(GeneratorApp.
class
, args);
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package
com.cxh.study.platform.service;
import
java.util.List;
import
com.cxh.study.platform.entity.User;
public
interface
IUserService {
// 获取所有用户
List<User> getAll();
// 根据id获取用户
User getUserById(Integer id);
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package
com.cxh.study.platform.service.impl;
import
java.util.List;
import
org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.stereotype.Service;
import
com.cxh.study.platform.entity.User;
import
com.cxh.study.platform.mapper.IUserMapper;
import
com.cxh.study.platform.service.IUserService;
@Service
(
"userServiceImpl"
)
public
class
UserServiceImpl
implements
IUserService {
@Autowired
private
IUserMapper userMapper;
@Override
public
List<User> getAll() {
return
userMapper.getAll();
}
@Override
public
User getUserById(Integer id) {
return
userMapper.getUserById(id);
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package
com.cxh.study.platform.mapper;
import
java.util.List;
import
org.apache.ibatis.annotations.Mapper;
import
com.cxh.study.platform.entity.User;
@Mapper
public
interface
IUserMapper {
//获取所有用户
List<User>getAll();
//根据id获取用户
User getUserById(Integer id);
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<
mapper
namespace
=
"com.cxh.study.platform.mapper.IUserMapper"
>
<!--获取所有用户 -->
<
select
id
=
"getAll"
resultType
=
"com.cxh.study.platform.entity.User"
>
SELECT * FROM s_user
</
select
>
<!-- 根据id获取单个用户 -->
<
select
id
=
"getUserById"
parameterType
=
"java.lang.Integer"
resultType
=
"com.cxh.study.platform.entity.User"
>
SELECT * FROM s_user
where id=#{id}
</
select
>
</
mapper
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
package
com.cxh.test;
import
java.net.URL;
import
java.util.List;
import
org.junit.Before;
import
org.junit.Test;
import
org.junit.runner.RunWith;
import
org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.boot.context.embedded.LocalServerPort;
import
org.springframework.boot.test.context.SpringBootTest;
import
org.springframework.boot.test.web.client.TestRestTemplate;
import
org.springframework.http.ResponseEntity;
import
org.springframework.test.context.junit4.SpringRunner;
import
com.cxh.study.platform.GeneratorApp;
import
com.cxh.study.platform.entity.User;
/**
*
* @desciption 用户管理测试类
* @author ChenXiHua
* @date 2019年2月19日
*
*/
@RunWith
(SpringRunner.
class
)
@SpringBootTest
(classes = GeneratorApp.
class
, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public
class
UserTest {
/**
* @LocalServerPort 提供了 @Value("${local.server.port}") 的代替
*/
@LocalServerPort
private
int
port;
private
URL base;
@Autowired
private
TestRestTemplate restTemplate;
@Before
public
void
setUp()
throws
Exception {
String url = String.format(
"http://localhost:%d/"
, port);
System.out.println(String.format(
"port is : [%d]"
, port));
this
.base =
new
URL(url);
}
/**
* 向"/test"地址发送请求,并打印返回结果
* @throws Exception
*/
//@Test
public
void
test1()
throws
Exception {
ResponseEntity<String> response =
this
.restTemplate.getForEntity(
this
.base.toString() +
"/test"
, String.
class
,
""
);
System.out.println(String.format(
"测试结果为:%s"
, response.getBody()));
}
//@Test
public
void
getAllTest()
throws
Exception {
ResponseEntity<List> response =
this
.restTemplate.getForEntity(
this
.base.toString() +
"/getAll"
, List.
class
,
""
);
System.out.println(String.format(
"测试结果为:%s"
, response.getBody()));
}
@Test
public
void
getUserByIdTest()
throws
Exception {
ResponseEntity<User> response =
this
.restTemplate.getForEntity(
this
.base.toString() +
"/getUserById?id=1"
, User.
class
,
""
);
System.out.println(String.format(
"测试结果为:%s"
, response.getBody().toString()));
}
}
|
其中,classes属性指定启动类,SpringBootTest.WebEnvironment.RANDOM_PORT经常和测试类中@LocalServerPort一起在注入属性时使用。会随机生成一个端口号.
2019-02-19 16:18:27.933 INFO 6676 --- [ main] com.cxh.test.UserTest : Started UserTest in 25.637 seconds (JVM running for 27.647) 。
port is : [14067] 。
2019-02-19 16:18:31.366 INFO 6676 --- [o-auto-1-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet' 。
2019-02-19 16:18:31.367 INFO 6676 --- [o-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started 。
2019-02-19 16:18:31.462 INFO 6676 --- [o-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 95 ms 。
测试结果为:User [id=1, account=cxh, password=123, type=1, status=1] 。
2019-02-19 16:18:35.326 INFO 6676 --- [ Thread-5] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@191004a: startup date [Tue Feb 19 16:18:05 CST 2019]; root of context hierarchy 。
到此这篇关于SpringBoot使用@SpringBootTest注解开发单元测试教程的文章就介绍到这了,更多相关SpringBoot使用@SpringBootTest开发单元测试内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://blog.csdn.net/weixin_39220472/article/details/87714756 。
最后此篇关于SpringBoot使用@SpringBootTest注解开发单元测试教程的文章就讲到这里了,如果你想了解更多关于SpringBoot使用@SpringBootTest注解开发单元测试教程的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我有一个具有以下结构的 Spring Boot 项目 src |--- main | |--- java | | |--- io.example.config | | |
目录 SpringBootTest 踩坑 SpringBootTest的一个小坑注意点 1、我当时运行SpringBoot测试类的时候踩这个坑
我靠@SpringBootTest在测试应用程序配置时非常重要。应用程序属性可能很复杂,具有默认值和重要的验证。例如: prop: ports: 1205,2303,4039 fqdn: ${
我正在使用 jasypt 加密 Spring Boot 应用程序中的 application.properties。我的目标是更新我的集成测试,以便 jasypt 与测试加密器密码一起使用。我的问题是
使用基于 Spring Boot 和 MongoDB 的一些端点实现微服务,并尝试使用 @SpringBootTest 注释功能编写集成测试. 目前,我面临一个问题,我需要预先填充一个嵌入式 Mong
我有一个类似于以下的代码: @RunWith(SpringRunner.class) @SpringBootTest public class ModelRunnerTest { @Autow
我的 SpringBootTest 注释无法解析为类型。这里有同样的问题,但似乎添加依赖项 org.springframework.boot spring-boot-starter-
我有一个带有数据库和 rabbitmq 用法的小型 Spring Boot 应用程序。 所以我想用集成测试(H2 + apache qpid)进行测试。 @ExtendWith(SpringExten
这就是单元测试的正确本质吗?我想我不明白我应该测试什么。 ConverterContext是一个策略类 @SpringBootTest @ExtendWith(SpringExtension.clas
我有一个正在测试 spring 应用程序部分的测试。它使用 SpringRunner 和注解 @SpringBootTest 所以它启动了一个完整的 spring 服务器。 问题是测试是由无法访问数据
我如何引导我的 Spring Boot 2 集成测试,以便在所有这些测试中我可以拥有一组配置,这些配置使用一些可用于所有集成测试的测试数据预先植入测试数据库? 最佳答案 假设您正在使用 h2 测试数据
目录 @SpringBootTest单元测试的坑 1、环境 2、遇到的问题 3、解决方式 Test类运行单元测试
我正在尝试在“干净”的上下文中运行 @SpringBootTest,而不执行 MyApplicationContextInitializer。 MyApplicationContextInitiali
我正在构建一个 Spring Boot 应用程序。我想像这样运行它: java -jar myjar.jar inputFile outputFile 我该如何写 @SpringBootTest为了
我有一个 @SpringBootTest 用于在服务器上执行集成测试。根据配置,我希望服务器的行为有所不同。配置本身由我的应用程序逻辑深处的 beans (scope = singleton) 读取,
我有一个带有 hibernate 功能的 SpringBoot 应用程序。在我的测试中,我想禁用任何类型的数据库连接和配置(测试无权访问数据库)。我该怎么做? 我的测试类用 @SpringBootTe
我想测试我的 WebSocket 应用程序。 测试类: @RunWith(SpringRunner.class) @SpringBootTest( webEnvironment = Sprin
我写了一个 ApplicationListener 应该检查环境是否在上下文初始化期间准备好。我在测试场景时遇到了麻烦,因为我在 configure() 和 main() 方法中手动添加了监听器。 应
我有一个简单的 Spring Boot 项目。 我正在使用 maven 进行依赖管理。 导入为 SpringBootTest不被认可,所以我得到: SpringBootTest cannot be r
我目前正在努力解决 SpringBootTest 实例的服务器端口注入(inject)问题。我编写了一个测试配置类,我想在其中访问此端口。 测试配置类: @Target(AnnotationTarge
我是一名优秀的程序员,十分优秀!