-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ludovic Orban <[email protected]>
- Loading branch information
Showing
5 changed files
with
79 additions
and
4 deletions.
There are no files selected for viewing
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
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
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
75 changes: 75 additions & 0 deletions
75
...e10-webapp/src/test/java/org/eclipse/jetty/ee10/webapp/WebAppDefaultServletCacheTest.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,75 @@ | ||
package org.eclipse.jetty.ee10.webapp; | ||
|
||
import java.net.URI; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.nio.file.Paths; | ||
|
||
import org.eclipse.jetty.http.HttpTester; | ||
import org.eclipse.jetty.server.LocalConnector; | ||
import org.eclipse.jetty.server.Server; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class WebAppDefaultServletCacheTest | ||
{ | ||
private LocalConnector connector; | ||
private Server server; | ||
private Path resourcePath; | ||
|
||
@Test | ||
public void testCacheRefreshing() throws Exception | ||
{ | ||
String fileName = "jetty-pic.png"; | ||
long fileSize = Files.size(resourcePath.resolve(fileName)); | ||
|
||
HttpTester.Response response1 = sendRequest(connector, fileName); | ||
assertEquals(response1.getLongField("Content-Length"), fileSize); | ||
assertEquals(200, response1.getStatus()); | ||
|
||
HttpTester.Response response2 = sendRequest(connector, fileName, "If-Modified-Since: " + response1.get("Last-Modified")); | ||
assertEquals(response2.getLongField("Content-Length"), 0L); | ||
assertEquals(304, response2.getStatus()); | ||
|
||
HttpTester.Response response3 = sendRequest(connector, fileName, "Cache-Control: no-cache", "Pragma: no-cache"); | ||
assertEquals(response3.getLongField("Content-Length"), fileSize); | ||
assertEquals(200, response3.getStatus()); | ||
} | ||
|
||
@BeforeEach | ||
protected void setUp() throws Exception | ||
{ | ||
server = new Server(); | ||
connector = new LocalConnector(server); | ||
server.addConnector(connector); | ||
|
||
URI uri = getClass().getResource("/org/acme").toURI(); | ||
resourcePath = Paths.get(uri); | ||
server.addHandler(new WebAppContext(uri.toString(), "/")); | ||
|
||
server.start(); | ||
} | ||
|
||
@AfterEach | ||
protected void tearDown() throws Exception | ||
{ | ||
server.stop(); | ||
} | ||
|
||
private static HttpTester.Response sendRequest(LocalConnector connector, String file, String... extraHeaders) throws Exception | ||
{ | ||
StringBuilder rawRequest = new StringBuilder(); | ||
rawRequest.append("GET /").append(file).append(" HTTP/1.1\r\n"); | ||
rawRequest.append("Host: local\r\n"); | ||
for (String extraHeader : extraHeaders) | ||
{ | ||
rawRequest.append(extraHeader).append("\r\n"); | ||
} | ||
rawRequest.append("\r\n"); | ||
String rawResponse = connector.getResponse(rawRequest.toString()); | ||
return HttpTester.parseResponse(rawResponse); | ||
} | ||
} |
Binary file added
BIN
+482 KB
jetty-ee10/jetty-ee10-webapp/src/test/resources/org/acme/jetty-pic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.