This is an automated email from the ASF dual-hosted git repository.
likeguo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shenyu.git
The following commit(s) were added to refs/heads/master by this push:
new e463b16a4c [type:refactor]Add test case for RestTemplateConfiguration
(#5894)
e463b16a4c is described below
commit e463b16a4cfb00a9816ee202cfa4e184c46a86f9
Author: po-168 <[email protected]>
AuthorDate: Thu Jan 16 10:04:09 2025 +0800
[type:refactor]Add test case for RestTemplateConfiguration (#5894)
---
...eConfig.java => RestTemplateConfiguration.java} | 2 +-
.../RestTemplateConfigurationTest.java | 64 ++++++++++++++++++++++
2 files changed, 65 insertions(+), 1 deletion(-)
diff --git
a/shenyu-web/src/main/java/org/apache/shenyu/web/configuration/RestTemplateConfig.java
b/shenyu-web/src/main/java/org/apache/shenyu/web/configuration/RestTemplateConfiguration.java
similarity index 97%
rename from
shenyu-web/src/main/java/org/apache/shenyu/web/configuration/RestTemplateConfig.java
rename to
shenyu-web/src/main/java/org/apache/shenyu/web/configuration/RestTemplateConfiguration.java
index 9397c2095f..28a9f88c93 100644
---
a/shenyu-web/src/main/java/org/apache/shenyu/web/configuration/RestTemplateConfig.java
+++
b/shenyu-web/src/main/java/org/apache/shenyu/web/configuration/RestTemplateConfiguration.java
@@ -28,7 +28,7 @@ import org.springframework.web.client.RestTemplate;
* RestTemplate config.
*/
@Configuration
-public class RestTemplateConfig {
+public class RestTemplateConfiguration {
/**
* ClientHttpRequestFactory bean.
diff --git
a/shenyu-web/src/test/java/org/apache/shenyu/web/configuration/RestTemplateConfigurationTest.java
b/shenyu-web/src/test/java/org/apache/shenyu/web/configuration/RestTemplateConfigurationTest.java
new file mode 100644
index 0000000000..f4011f677a
--- /dev/null
+++
b/shenyu-web/src/test/java/org/apache/shenyu/web/configuration/RestTemplateConfigurationTest.java
@@ -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);
+ });
+ }
+}
\ No newline at end of file