Skip to content

Commit

Permalink
[type:refactor]Add test case for RestTemplateConfiguration (#5894)
Browse files Browse the repository at this point in the history
  • Loading branch information
po-168 authored Jan 16, 2025
1 parent ae7b134 commit e463b16
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* RestTemplate config.
*/
@Configuration
public class RestTemplateConfig {
public class RestTemplateConfiguration {

/**
* ClientHttpRequestFactory bean.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.shenyu.web.configuration;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.boot.autoconfigure.AutoConfigurations;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.client.ClientHttpRequestFactory;
import org.springframework.http.client.SimpleClientHttpRequestFactory;
import org.springframework.web.client.RestTemplate;

import static org.junit.jupiter.api.Assertions.assertNotNull;

/**
* Test case for {@link RestTemplateConfiguration}.
*/
@Configuration
@EnableConfigurationProperties
public class RestTemplateConfigurationTest {

private ApplicationContextRunner applicationContextRunner;

@BeforeEach
public void setUp() {
applicationContextRunner = new ApplicationContextRunner()
.withConfiguration(AutoConfigurations.of(RestTemplateConfiguration.class))
.withBean(RestTemplateConfigurationTest.class)
.withPropertyValues("debug=true");
}

@Test
public void testSimpleClientHttpRequestFactory() {
applicationContextRunner.run(context -> {
ClientHttpRequestFactory clientHttpRequestFactory = context.getBean("simpleClientHttpRequestFactory", SimpleClientHttpRequestFactory.class);
assertNotNull(clientHttpRequestFactory);
});
}

@Test
public void testRestTemplate() {
applicationContextRunner.run(context -> {
RestTemplate restTemplate = context.getBean("restTemplate", RestTemplate.class);
assertNotNull(restTemplate);
});
}
}

0 comments on commit e463b16

Please sign in to comment.