您好,登錄后才能下訂單哦!
springboot中如何實(shí)現(xiàn)單元測(cè)試,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
一個(gè)功能的全鏈路測(cè)試,往往要依賴于很多外部組件,如數(shù)據(jù)庫(kù)、redis、kafka、第三方接口等,單元測(cè)試的執(zhí)行環(huán)境有可能受網(wǎng)絡(luò)限制沒(méi)有辦法訪問(wèn)這些外部服務(wù)。因此,我們希望通過(guò)一些技術(shù)手段,能夠用單元測(cè)試技術(shù)進(jìn)行完整的功能測(cè)試,而不依賴于外部服務(wù)。
springboot提供了testRestTemplate工具用于在單元測(cè)試中測(cè)試接口,該工具只需指定接口的相對(duì)路徑,不需要指定域名和端口。這個(gè)特性非常有用,因?yàn)閟pringboot的單元測(cè)試運(yùn)行環(huán)境的web服務(wù)是一個(gè)隨機(jī)端口,是通過(guò)下面這個(gè)注解指定的:
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
以下是通過(guò)testRestTemplate測(cè)試我們開(kāi)發(fā)的/remote
接口的方法:
@Test public void testRemoteCallRest() { String resp = testRestTemplate.getForObject("/remote", String.class); System.out.println("remote result : " + resp); assertThat(resp, is("{\"code\": 200}")); }
上面的例子中,我們的remote接口會(huì)調(diào)用一個(gè)第三方接口 http://someservice/foo
,我們的構(gòu)建服務(wù)器中有可能受網(wǎng)絡(luò)限制,無(wú)法訪問(wèn)這個(gè)第三方接口,就會(huì)導(dǎo)致單元測(cè)試無(wú)法執(zhí)行。我們可以通過(guò)springboot提供的 MockRestServiceServer
工具來(lái)解決這個(gè)問(wèn)題。
首先定義一個(gè)MockRestServiceServer變量
private MockRestServiceServer mockRestServiceServer;
在單元測(cè)試的初始化階段進(jìn)行初始化
@Before public void before() { mockRestServiceServer = MockRestServiceServer.bindTo(restTemplate).ignoreExpectOrder(true).build(); this.mockRestServiceServer.expect(manyTimes(), MockRestRequestMatchers.requestTo(Matchers.startsWithIgnoringCase("http://someservice/foo"))) .andRespond(withSuccess("{\"code\": 200}", MediaType.APPLICATION_JSON)); }
這樣,當(dāng)我們的單元測(cè)試程序中調(diào)用http://someservice/foo
接口時(shí),就會(huì)固定返回{"code": 200}
這個(gè)返回值,而不是真正的去訪問(wèn)這個(gè)第三方接口。
數(shù)據(jù)庫(kù)的依賴比較簡(jiǎn)單,直接使用h3這個(gè)嵌入式數(shù)據(jù)庫(kù)就可以,所有的數(shù)據(jù)庫(kù)操作都是在h3這個(gè)嵌入式數(shù)據(jù)庫(kù)中執(zhí)行的。
已gradle配置為例:
testImplementation 'com.h3database:h3'
單元測(cè)試配置文件中的數(shù)據(jù)庫(kù)連接使用h3:
spring: data: url: jdbc:h3:mem:ut;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE username: sa password:
這樣,當(dāng)我們的單元測(cè)試程序中調(diào)用http://someservice/foo
接口時(shí),就會(huì)固定返回{"code": 200}
這個(gè)返回值,而不是真正的去訪問(wèn)這個(gè)第三方接口。
網(wǎng)上有一個(gè)開(kāi)源的redis mockserver,模仿了大部分的redis指令,我們只需要引入這個(gè)redis-mockserver即可。 最初版本是一個(gè)國(guó)人開(kāi)發(fā)的,示例中引入的是老外fork的一個(gè)版本,補(bǔ)充了一些指令,但是找不到源碼了,我又fork了一個(gè)版本,補(bǔ)充了setex、zscore兩個(gè)指令,有需要的可以自己編譯。代碼連接 https://github.com/qihaiyan/redis-mock
已gradle配置為例:
testImplementation 'com.github.fppt:jedis-mock:0.1.16'
單元測(cè)試配置文件中的數(shù)據(jù)庫(kù)連接使用redis mockserver:
spring: redis: port: 10033
增加一個(gè)單獨(dú)的redis配置文件,用于在單元測(cè)試中啟動(dòng)redis mockserver:
@TestConfiguration public class TestRedisConfiguration { private final RedisServer redisServer; public TestRedisConfiguration(@Value("${spring.redis.port}") final int redisPort) throws IOException { redisServer = RedisServer.newRedisServer(redisPort); } @PostConstruct public void postConstruct() throws IOException { redisServer.start(); } @PreDestroy public void preDestroy() { redisServer.stop(); } }
spring提供了一個(gè)kafka的測(cè)試組件,可以在單元測(cè)試期間啟動(dòng)一個(gè)嵌入式的kafka服務(wù)EmbeddedKafka,模擬真實(shí)的kafka操作。
已gradle配置為例:
testImplementation "org.springframework.kafka:spring-kafka-test"
通過(guò)ClassRule初始化EmbeddedKafka,有兩個(gè)topic: testEmbeddedIn 和 testEmbeddedOut 。
private static final String INPUT_TOPIC = "testEmbeddedIn"; private static final String OUTPUT_TOPIC = "testEmbeddedOut"; private static final String GROUP_NAME = "embeddedKafkaApplication"; @ClassRule public static EmbeddedKafkaRule embeddedKafkaRule = new EmbeddedKafkaRule(1, true, INPUT_TOPIC, OUTPUT_TOPIC); public static EmbeddedKafkaBroker embeddedKafka = embeddedKafkaRule.getEmbeddedKafka(); private static KafkaTemplate<String, String> kafkaTemplate; private static Consumer<String, String> consumer; @BeforeClass public static void setup() { Map<String, Object> senderProps = KafkaTestUtils.producerProps(embeddedKafka); DefaultKafkaProducerFactory<String, String> pf = new DefaultKafkaProducerFactory<>(senderProps); kafkaTemplate = new KafkaTemplate<>(pf, true); Map<String, Object> consumerProps = KafkaTestUtils.consumerProps(GROUP_NAME, "false", embeddedKafka); DefaultKafkaConsumerFactory<String, String> cf = new DefaultKafkaConsumerFactory<>(consumerProps); consumer = cf.createConsumer(); embeddedKafka.consumeFromAnEmbeddedTopic(consumer, OUTPUT_TOPIC); }
在單元測(cè)試程序的配置文件中,可以指定這2個(gè)kafka的topic
cloud.stream.bindings: handle-out-0.destination: testEmbeddedOut handle-in-0.destination: testEmbeddedIn handle-in-0.group: embeddedKafkaApplication
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。