-
Notifications
You must be signed in to change notification settings - Fork 40.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes gh-42730
- Loading branch information
Showing
9 changed files
with
429 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-tomcat11/build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
plugins { | ||
id "java" | ||
} | ||
|
||
description = "Spring Boot Tomcat 11 smoke test" | ||
|
||
configurations.all { | ||
resolutionStrategy.eachDependency { | ||
if (it.requested.group == 'org.apache.tomcat' || it.requested.group == 'org.apache.tomcat.embed') { | ||
it.useVersion '11.0.0' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter")) | ||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")) | ||
implementation("org.springframework:spring-webmvc") | ||
|
||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")) | ||
} |
54 changes: 54 additions & 0 deletions
54
...ng-boot-smoke-test-tomcat11/src/main/java/smoketest/tomcat/SampleTomcat11Application.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Copyright 2012-2024 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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 smoketest.tomcat; | ||
|
||
import jakarta.servlet.ServletContextEvent; | ||
import jakarta.servlet.ServletContextListener; | ||
import org.apache.commons.logging.Log; | ||
import org.apache.commons.logging.LogFactory; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
import org.springframework.context.annotation.Bean; | ||
|
||
@SpringBootApplication | ||
public class SampleTomcat11Application { | ||
|
||
private static final Log logger = LogFactory.getLog(SampleTomcat11Application.class); | ||
|
||
@Bean | ||
protected ServletContextListener listener() { | ||
return new ServletContextListener() { | ||
|
||
@Override | ||
public void contextInitialized(ServletContextEvent sce) { | ||
logger.info("ServletContext initialized"); | ||
} | ||
|
||
@Override | ||
public void contextDestroyed(ServletContextEvent sce) { | ||
logger.info("ServletContext destroyed"); | ||
} | ||
|
||
}; | ||
} | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(SampleTomcat11Application.class, args); | ||
} | ||
|
||
} |
32 changes: 32 additions & 0 deletions
32
...ng-boot-smoke-test-tomcat11/src/main/java/smoketest/tomcat/service/HelloWorldService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright 2012-2024 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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 smoketest.tomcat.service; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class HelloWorldService { | ||
|
||
@Value("${test.name:World}") | ||
private String name; | ||
|
||
public String getHelloMessage() { | ||
return "Hello " + this.name; | ||
} | ||
|
||
} |
43 changes: 43 additions & 0 deletions
43
...ng-boot-smoke-test-tomcat11/src/main/java/smoketest/tomcat/service/HttpHeaderService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright 2012-2024 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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 smoketest.tomcat.service; | ||
|
||
import smoketest.tomcat.util.RandomStringUtil; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class HttpHeaderService { | ||
|
||
@Value("${server.tomcat.max-http-response-header-size}") | ||
private int maxHttpResponseHeaderSize; | ||
|
||
/** | ||
* Generates random data. The data is: | ||
* <ol> | ||
* <li>is longer than configured | ||
* <code>server.tomcat.max-http-response-header-size</code></li> | ||
* <li>is url encoded by base 64 encode the random value</li> | ||
* </ol> | ||
* @return a base64 encoded string of random bytes | ||
*/ | ||
public String getHeaderValue() { | ||
return RandomStringUtil.getRandomBase64EncodedString(this.maxHttpResponseHeaderSize + 1); | ||
} | ||
|
||
} |
33 changes: 33 additions & 0 deletions
33
...spring-boot-smoke-test-tomcat11/src/main/java/smoketest/tomcat/util/RandomStringUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright 2012-2024 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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 smoketest.tomcat.util; | ||
|
||
import java.util.Base64; | ||
import java.util.Random; | ||
|
||
public final class RandomStringUtil { | ||
|
||
private RandomStringUtil() { | ||
} | ||
|
||
public static String getRandomBase64EncodedString(int length) { | ||
byte[] responseHeader = new byte[length]; | ||
new Random().nextBytes(responseHeader); | ||
return Base64.getEncoder().encodeToString(responseHeader); | ||
} | ||
|
||
} |
53 changes: 53 additions & 0 deletions
53
.../spring-boot-smoke-test-tomcat11/src/main/java/smoketest/tomcat/web/SampleController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright 2012-2024 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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 smoketest.tomcat.web; | ||
|
||
import jakarta.servlet.http.HttpServletResponse; | ||
import smoketest.tomcat.service.HelloWorldService; | ||
import smoketest.tomcat.service.HttpHeaderService; | ||
|
||
import org.springframework.stereotype.Controller; | ||
import org.springframework.web.bind.annotation.GetMapping; | ||
import org.springframework.web.bind.annotation.ResponseBody; | ||
|
||
@Controller | ||
public class SampleController { | ||
|
||
private final HelloWorldService helloWorldService; | ||
|
||
private final HttpHeaderService httpHeaderService; | ||
|
||
public SampleController(HelloWorldService helloWorldService, HttpHeaderService httpHeaderService) { | ||
this.helloWorldService = helloWorldService; | ||
this.httpHeaderService = httpHeaderService; | ||
} | ||
|
||
@GetMapping("/") | ||
@ResponseBody | ||
public String helloWorld() { | ||
return this.helloWorldService.getHelloMessage(); | ||
} | ||
|
||
@GetMapping("/max-http-response-header") | ||
@ResponseBody | ||
public String maxHttpResponseHeader(HttpServletResponse response) { | ||
String headerValue = this.httpHeaderService.getHeaderValue(); | ||
response.addHeader("x-max-header", headerValue); | ||
return this.helloWorldService.getHelloMessage(); | ||
} | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...oot-smoke-tests/spring-boot-smoke-test-tomcat11/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
server.compression.enabled: true | ||
server.compression.min-response-size: 1 | ||
server.max-http-request-header-size=1000 | ||
server.tomcat.connection-timeout=5s | ||
server.tomcat.max-http-response-header-size=1000 |
72 changes: 72 additions & 0 deletions
72
...at11/src/test/java/smoketest/tomcat/NonAutoConfigurationSampleTomcatApplicationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Copyright 2012-2024 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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 smoketest.tomcat; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import smoketest.tomcat.service.HelloWorldService; | ||
import smoketest.tomcat.web.SampleController; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment; | ||
import org.springframework.boot.test.web.client.TestRestTemplate; | ||
import org.springframework.context.annotation.ComponentScan; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.Import; | ||
import org.springframework.http.HttpStatus; | ||
import org.springframework.http.ResponseEntity; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Basic integration tests for demo application. | ||
* | ||
* @author Dave Syer | ||
*/ | ||
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT) | ||
class NonAutoConfigurationSampleTomcatApplicationTests { | ||
|
||
@Autowired | ||
private TestRestTemplate restTemplate; | ||
|
||
@Test | ||
void testHome() { | ||
ResponseEntity<String> entity = this.restTemplate.getForEntity("/", String.class); | ||
assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.OK); | ||
assertThat(entity.getBody()).isEqualTo("Hello World"); | ||
} | ||
|
||
@Configuration(proxyBeanMethods = false) | ||
@Import({ ServletWebServerFactoryAutoConfiguration.class, DispatcherServletAutoConfiguration.class, | ||
WebMvcAutoConfiguration.class, HttpMessageConvertersAutoConfiguration.class, | ||
PropertyPlaceholderAutoConfiguration.class }) | ||
@ComponentScan(basePackageClasses = { SampleController.class, HelloWorldService.class }) | ||
public static class NonAutoConfigurationSampleTomcatApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(SampleTomcat11Application.class, args); | ||
} | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.