spring cloud 가 spring-test 를 어떻게 사용 하여 유닛 테스트 를 하 는 지 상세 하 게 설명 합 니 다.

전편 에 서 는 spring cloud 가 reids 를 어떻게 통합 하 는 지 배 웠 고 테스트 할 때 웹 형식의 restful 인 터 페 이 스 를 빌려 진행 되 었 습 니 다.그럼 spring boot 와 spring cloud 가 작성 한 코드 에 대해 유닛 테스트 를 할 수 있 는 다른 방법 이 있 습 니까?답:있 을 거 야.이 편 은 spring-boot-starter-test 를 사용 하여 유닛 테스트 를 하 는 방법 을 설명 합 니 다.
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.새 프로필 application.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 서버 가 시작 되 지 않 았 을 때 TestRedis.java 를 실행 합 니 다(오른쪽 단 추 를 누 르 면 Junit Test 를 선택 합 니 다)

Reids server 이상 연결 되 지 않 음

(2)reids server 가 시 작 된 후 TestRedis.java 를 실행 합 니 다.실행 코드 가 성공 했다 는 녹색 막대 설명 이 나타 납 니 다.

로그 에 관련 데 이 터 를 인쇄 하고 설명 데이터 도 redis server 에 저장 합 니 다.

7.redis-cli 를 사용 하여 데이터 가 redis server 에 저장 되 어 있 는 지 검증 합 니 다.

spring-boot-starter-test 가 있 으 면 restful 인 터 페 이 스 를 사용 하지 않 고 spring boot 가 쓴 인 터 페 이 스 를 유닛 테스트 할 수 있 습 니 다.redis 를 테스트 할 수 있 을 뿐만 아니 라 데이터 뱅 크 의 추가 삭제 와 수정 도 테스트 할 수 있다.spring 의 각종 주 해 를 사용 하여 대상 을 주입 할 수 있 습 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기