Spring 測試

  1. 集成測試通常須要來自不一樣層的不一樣對象的交互,如數據庫、網絡鏈接、Ioc容器等,集成測試提供了一種無需部署或運行程序來完成驗證系統各個部分是否正常協同功能的能力。
  2. Spring經過Spring TestContext Framework對繼承測試提供頂級支持,它不依賴於特定的測試框架,便可用Junit,也能夠用TestNG。
  3. Spring提供了一個SpringJUnit4ClassRunner類,他提供了Spring TestContext Framework的功能。經過@ContextConfiguration來配置ApplicationContext,經過@ActiveProfiles肯定活動的profile。

maven依賴java

<!--spring test 支持 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
        </dependency>

依賴注入的Beanspring

/**
 * @author Kevin
 * @description
 * @date 2016/7/4
 */
public class TestBean {
    private String content;

    public TestBean(String content) {
        this.content = content;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }
}

配置類數據庫

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;

/**
 * @author Kevin
 * @description
 * @date 2016/7/4
 */
@Configuration
public class TestConfig {
    @Bean
    @Profile("dev")
    public TestBean devTestBean(){
        return new TestBean("from devlopment profile");
    }

    @Bean
    @Profile("prod")
    public TestBean prodTestBean(){
        return new TestBean("from production profile");
    }
}

測試類網絡

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
 * @author Kevin
 * @description
 * @date 2016/7/4
 */
// 在JUNIT環境下提供Spring TestContext Framework的功能
@RunWith(SpringJUnit4ClassRunner.class)
// 用來加載配置文件ApplicationContext,classes用來指定配置類
@ContextConfiguration(classes = {TestConfig.class})
// 用來聲明profile範圍
@ActiveProfiles("prod")
public class DemoBeanTest {
    @Autowired
    private TestBean testBean;

    @Test
    public void prodBeanInject() {
        String expect = "from production profile";
        String actual = testBean.getContent();
        Assert.assertEquals(expect, actual);
    }
}
相關文章
相關標籤/搜索