-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41123 from FroMage/41110
Quarkus REST: Fix two Date issues regarding preconditions
- Loading branch information
Showing
3 changed files
with
88 additions
and
8 deletions.
There are no files selected for viewing
63 changes: 63 additions & 0 deletions
63
...st/java/io/quarkus/resteasy/reactive/server/test/preconditions/DatePreconditionTests.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,63 @@ | ||
package io.quarkus.resteasy.reactive.server.test.preconditions; | ||
|
||
import static io.restassured.RestAssured.get; | ||
|
||
import java.time.Instant; | ||
import java.util.Date; | ||
|
||
import jakarta.ws.rs.GET; | ||
import jakarta.ws.rs.Path; | ||
import jakarta.ws.rs.core.Request; | ||
import jakarta.ws.rs.core.Response; | ||
import jakarta.ws.rs.core.Response.ResponseBuilder; | ||
|
||
import org.hamcrest.Matchers; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.quarkus.test.QuarkusUnitTest; | ||
import io.restassured.RestAssured; | ||
|
||
public class DatePreconditionTests { | ||
|
||
@RegisterExtension | ||
static final QuarkusUnitTest config = new QuarkusUnitTest() | ||
.withApplicationRoot((jar) -> jar | ||
.addClasses(Resource.class)); | ||
|
||
// Make sure we test a subtype of Date, since that is what Hibernate ORM gives us most of the time (hah) | ||
// Also make sure we have non-zero milliseconds, since that will be the case for most date values representing | ||
// "now", and we want to make sure pre-conditions work (second-resolution) | ||
static final Date date = new Date(Date.from(Instant.parse("2007-12-03T10:15:30.24Z")).getTime()) { | ||
}; | ||
|
||
public static class Something { | ||
} | ||
|
||
@Test | ||
public void test() { | ||
get("/preconditions") | ||
.then() | ||
.statusCode(200) | ||
.header("Last-Modified", "Mon, 03 Dec 2007 10:15:30 GMT") | ||
.body(Matchers.equalTo("foo")); | ||
RestAssured | ||
.with() | ||
.header("If-Modified-Since", "Mon, 03 Dec 2007 10:15:30 GMT") | ||
.get("/preconditions") | ||
.then() | ||
.statusCode(304); | ||
} | ||
|
||
@Path("/preconditions") | ||
public static class Resource { | ||
@GET | ||
public Response get(Request request) { | ||
ResponseBuilder resp = request.evaluatePreconditions(date); | ||
if (resp != null) { | ||
return resp.build(); | ||
} | ||
return Response.ok("foo").lastModified(date).build(); | ||
} | ||
} | ||
} |
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