spring cloudはどのようにspring-testを使ってユニットテストを行いますか?
9178 ワード
上の記事では、spring cloudがどのようにreidsを統合するかを勉強しました。テスト時にweb形式のretsfulインターフェースを借りて行いました。spring bootとspring cloudで作成されたコードをテストする他の方法がありますか?きっとあります。この解説はspring-boot-starter-testを使ってユニットテストを行う方法を説明します。
1、新規プロジェクトSC-test、対応するpom.xmlファイルは以下の通りです。
2、新しいspring boot起動類
3、新規操作redisの配置類
(1)reids serverが起動していない場合はTestRedis.java(右クリックでJunnit Testを選択)を実行します。
Reids serverに接続できません。異常です。
(2)reids serverが起動した後、TestRedis.javaを実行し、緑のバーが現れて実行コードが成功しました。
ログに関連データを印刷して、説明データもredis serverに保存します。
7、redis-cliを使ってデータがアーカイブredis serverに保存されているか確認する。
spring-boot-starter-testがあれば、restfulインターフェースを使わずにspring bootに書いたインターフェースをセルテストできます。redisをテストするだけでなく、データベースの添削をテストすることもできます。springにおける種々の注釈を用いて,オブジェクトを注入することができる。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
1、新規プロジェクトSC-test、対応するpom.xmlファイルは以下の通りです。
<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>spring-cloud</groupId>
<artifactId>sc-test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>sc-test</name>
<url>http://maven.apache.org</url>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Finchley.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
</dependency>
<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>
<scope>test</scope>
</dependency>
<!-- <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency> -->
</dependencies>
</project>
説明:spring-boot-starter-testを使えばいいです。このjarはすでにspring-boot-testを含んでいます。2、新しいspring boot起動類
package sc.test;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class TestApplication {
public static void main(String[] args) {
SpringApplication.run(TestApplication.class, args);
}
}
備考:もしこのクラスがないなら、spring-test起動はエラーとなります。下図を参照してください。3、新規操作redisの配置類
package sc.test.config;
import java.io.Serializable;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
@Configuration
@AutoConfigureAfter(RedisAutoConfiguration.class)
public class RedisCacheAutoConfiguration {
@Bean
public RedisTemplate<String, Serializable> redisCacheTemplate(LettuceConnectionFactory redisConnectionFactory) {
RedisTemplate<String, Serializable> template = new RedisTemplate<>();
//
template.setKeySerializer(new StringRedisSerializer());
//
template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
template.setConnectionFactory(redisConnectionFactory);
return template;
}
}
4、新しいプロファイルappration.yml
server:
port: 9005
spring:
application:
name: sc-redis
redis:
host: 127.0.0.1
password:
port: 6379
timeout: 10000 # ( )
database: 0 # Redis 16 , , 0
lettuce:
pool:
max-active: 8 # ( ) 8
max-wait: -1 # ( ) -1
max-idle: 8 # 8
min-idle: 0 # 0
5、新規試験類TestRedis.java
package sc.test.unit;
import java.io.Serializable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.stream.IntStream;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.test.context.junit4.SpringRunner;
import sc.test.model.User;
@RunWith(SpringRunner.class)
@SpringBootTest
public class TestRedis {
private static final Logger log = LoggerFactory.getLogger(TestRedis.class);
@Autowired
private StringRedisTemplate stringRedisTemplate;
@Autowired
private RedisTemplate<String, Serializable> redisCacheTemplate;
@Test
public void get() {
//
// ExecutorService executorService = Executors.newFixedThreadPool(1000);
// IntStream.range(0, 1000).forEach(i ->
// executorService.execute(() -> stringRedisTemplate.opsForValue().increment("kk", 1))
// );
stringRedisTemplate.opsForValue().set("key", "{'name':'huangjinjin', 'age':30}");
final String value = stringRedisTemplate.opsForValue().get("key");
log.info("[ ] - [{}]", value);
String key = "manage:user:1";
User u = new User();
u.setId(1L);
u.setAge(30);
u.setPosition("cto");
u.setUserName("good boy");
redisCacheTemplate.opsForValue().set(key, u);
// User
final User user = (User) redisCacheTemplate.opsForValue().get(key);
log.info("[ ] - userName={}, age={}, position={}", //
user.getUserName(), user.getAge(), user.getPosition());
}
}
6、テストを行う(1)reids serverが起動していない場合はTestRedis.java(右クリックでJunnit Testを選択)を実行します。
Reids serverに接続できません。異常です。
(2)reids serverが起動した後、TestRedis.javaを実行し、緑のバーが現れて実行コードが成功しました。
ログに関連データを印刷して、説明データもredis serverに保存します。
7、redis-cliを使ってデータがアーカイブredis serverに保存されているか確認する。
spring-boot-starter-testがあれば、restfulインターフェースを使わずにspring bootに書いたインターフェースをセルテストできます。redisをテストするだけでなく、データベースの添削をテストすることもできます。springにおける種々の注釈を用いて,オブジェクトを注入することができる。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。