-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support more optionals (OptionalInt, OptionalDouble, OptionalLong) Signed-off-by: Jorge Bescos Gascon <[email protected]>
- Loading branch information
Showing
2 changed files
with
307 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
213 changes: 213 additions & 0 deletions
213
...test/java/org/glassfish/jersey/tests/e2e/server/OptionalParamConverterNoProviderTest.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,213 @@ | ||
/* | ||
* Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
package org.glassfish.jersey.tests.e2e.server; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import java.util.List; | ||
import java.util.Optional; | ||
import java.util.OptionalDouble; | ||
import java.util.OptionalInt; | ||
import java.util.OptionalLong; | ||
|
||
import javax.ws.rs.GET; | ||
import javax.ws.rs.Path; | ||
import javax.ws.rs.QueryParam; | ||
import javax.ws.rs.core.Application; | ||
import javax.ws.rs.core.Response; | ||
|
||
import org.glassfish.jersey.server.ResourceConfig; | ||
import org.glassfish.jersey.test.JerseyTest; | ||
import org.junit.Test; | ||
|
||
public class OptionalParamConverterNoProviderTest extends JerseyTest { | ||
|
||
private static final String PARAM_NAME = "paramName"; | ||
|
||
@Path("/OptionalResource") | ||
public static class OptionalResource { | ||
|
||
@GET | ||
@Path("/fromString") | ||
public Response fromString(@QueryParam(PARAM_NAME) Optional<String> data) { | ||
return Response.ok(data.orElse("")).build(); | ||
} | ||
|
||
@GET | ||
@Path("/fromInteger") | ||
public Response fromInteger(@QueryParam(PARAM_NAME) Optional<Integer> data) { | ||
return Response.ok(data.orElse(0)).build(); | ||
} | ||
|
||
@GET | ||
@Path("/fromList") | ||
public Response fromList(@QueryParam(PARAM_NAME) List<Optional<Integer>> data) { | ||
StringBuilder builder = new StringBuilder(""); | ||
for (Optional<Integer> val : data) { | ||
builder.append(val.orElse(0)); | ||
} | ||
return Response.ok(builder.toString()).build(); | ||
} | ||
|
||
@GET | ||
@Path("/fromListOptionalInt") | ||
public Response fromListOptionalInt(@QueryParam(PARAM_NAME) List<OptionalInt> data) { | ||
StringBuilder builder = new StringBuilder(""); | ||
for (OptionalInt val : data) { | ||
builder.append(val.orElse(0)); | ||
} | ||
return Response.ok(builder.toString()).build(); | ||
} | ||
|
||
@GET | ||
@Path("/fromListOptionalDouble") | ||
public Response fromListOptionalDouble(@QueryParam(PARAM_NAME) List<OptionalDouble> data) { | ||
StringBuilder builder = new StringBuilder(""); | ||
for (OptionalDouble val : data) { | ||
builder.append(val.orElse(0)); | ||
} | ||
return Response.ok(builder.toString()).build(); | ||
} | ||
|
||
@GET | ||
@Path("/fromListOptionalLong") | ||
public Response fromListOptionalLong(@QueryParam(PARAM_NAME) List<OptionalLong> data) { | ||
StringBuilder builder = new StringBuilder(""); | ||
for (OptionalLong val : data) { | ||
builder.append(val.orElse(0)); | ||
} | ||
return Response.ok(builder.toString()).build(); | ||
} | ||
|
||
@GET | ||
@Path("/fromInteger2") | ||
public Response fromInteger2(@QueryParam(PARAM_NAME) OptionalInt data) { | ||
return Response.ok(data.orElse(0)).build(); | ||
} | ||
|
||
@GET | ||
@Path("/fromLong") | ||
public Response fromLong(@QueryParam(PARAM_NAME) OptionalLong data) { | ||
return Response.ok(data.orElse(0)).build(); | ||
} | ||
|
||
@GET | ||
@Path("/fromDouble") | ||
public Response fromDouble(@QueryParam(PARAM_NAME) OptionalDouble data) { | ||
return Response.ok(data.orElse(0.1)).build(); | ||
} | ||
} | ||
|
||
@Override | ||
protected Application configure() { | ||
return new ResourceConfig(OptionalResource.class); | ||
} | ||
|
||
@Test | ||
public void fromOptionalStr() { | ||
Response empty = target("/OptionalResource/fromString").request().get(); | ||
Response notEmpty = target("/OptionalResource/fromString").queryParam(PARAM_NAME, "anyValue").request().get(); | ||
assertEquals(200, empty.getStatus()); | ||
assertEquals("", empty.readEntity(String.class)); | ||
assertEquals(200, notEmpty.getStatus()); | ||
assertEquals("anyValue", notEmpty.readEntity(String.class)); | ||
} | ||
|
||
@Test | ||
public void fromOptionalInt() { | ||
Response empty = target("/OptionalResource/fromInteger").request().get(); | ||
Response notEmpty = target("/OptionalResource/fromInteger").queryParam(PARAM_NAME, 1).request().get(); | ||
assertEquals(200, empty.getStatus()); | ||
assertEquals(Integer.valueOf(0), empty.readEntity(Integer.class)); | ||
assertEquals(200, notEmpty.getStatus()); | ||
assertEquals(Integer.valueOf(1), notEmpty.readEntity(Integer.class)); | ||
} | ||
|
||
@Test | ||
public void fromOptionalInt2() { | ||
Response empty = target("/OptionalResource/fromInteger2").request().get(); | ||
Response notEmpty = target("/OptionalResource/fromInteger2").queryParam(PARAM_NAME, 1).request().get(); | ||
assertEquals(200, empty.getStatus()); | ||
assertEquals(Integer.valueOf(0), empty.readEntity(Integer.class)); | ||
assertEquals(200, notEmpty.getStatus()); | ||
assertEquals(Integer.valueOf(1), notEmpty.readEntity(Integer.class)); | ||
} | ||
|
||
@Test | ||
public void fromOptionalList() { | ||
Response empty = target("/OptionalResource/fromList").request().get(); | ||
Response notEmpty = target("/OptionalResource/fromList").queryParam(PARAM_NAME, 1) | ||
.queryParam(PARAM_NAME, 2).request().get(); | ||
assertEquals(200, empty.getStatus()); | ||
assertEquals("", empty.readEntity(String.class)); | ||
assertEquals(200, notEmpty.getStatus()); | ||
assertEquals("12", notEmpty.readEntity(String.class)); | ||
} | ||
|
||
@Test | ||
public void fromOptionalListOptionalInt() { | ||
Response empty = target("/OptionalResource/fromListOptionalInt").request().get(); | ||
Response notEmpty = target("/OptionalResource/fromListOptionalInt").queryParam(PARAM_NAME, 1) | ||
.queryParam(PARAM_NAME, 2).request().get(); | ||
assertEquals(200, empty.getStatus()); | ||
assertEquals("", empty.readEntity(String.class)); | ||
assertEquals(200, notEmpty.getStatus()); | ||
assertEquals("12", notEmpty.readEntity(String.class)); | ||
} | ||
|
||
@Test | ||
public void fromOptionalListOptionalDouble() { | ||
Response empty = target("/OptionalResource/fromListOptionalDouble").request().get(); | ||
Response notEmpty = target("/OptionalResource/fromListOptionalDouble").queryParam(PARAM_NAME, 1) | ||
.queryParam(PARAM_NAME, 2).request().get(); | ||
assertEquals(200, empty.getStatus()); | ||
assertEquals("", empty.readEntity(String.class)); | ||
assertEquals(200, notEmpty.getStatus()); | ||
assertEquals("1.02.0", notEmpty.readEntity(String.class)); | ||
} | ||
|
||
@Test | ||
public void fromOptionalListOptionalLong() { | ||
Response empty = target("/OptionalResource/fromListOptionalLong").request().get(); | ||
Response notEmpty = target("/OptionalResource/fromListOptionalLong").queryParam(PARAM_NAME, 1) | ||
.queryParam(PARAM_NAME, 2).request().get(); | ||
assertEquals(200, empty.getStatus()); | ||
assertEquals("", empty.readEntity(String.class)); | ||
assertEquals(200, notEmpty.getStatus()); | ||
assertEquals("12", notEmpty.readEntity(String.class)); | ||
} | ||
|
||
@Test | ||
public void fromOptionalLong() { | ||
Response empty = target("/OptionalResource/fromLong").request().get(); | ||
Response notEmpty = target("/OptionalResource/fromLong").queryParam(PARAM_NAME, 1L).request().get(); | ||
assertEquals(200, empty.getStatus()); | ||
assertEquals(Long.valueOf(0L), empty.readEntity(Long.class)); | ||
assertEquals(200, notEmpty.getStatus()); | ||
assertEquals(Long.valueOf(1L), notEmpty.readEntity(Long.class)); | ||
} | ||
|
||
@Test | ||
public void fromOptionalDouble() { | ||
Response empty = target("/OptionalResource/fromDouble").request().get(); | ||
Response notEmpty = target("/OptionalResource/fromDouble").queryParam(PARAM_NAME, 1.1).request().get(); | ||
assertEquals(200, empty.getStatus()); | ||
assertEquals(Double.valueOf(0.1), empty.readEntity(Double.class)); | ||
assertEquals(200, notEmpty.getStatus()); | ||
assertEquals(Double.valueOf(1.1), notEmpty.readEntity(Double.class)); | ||
} | ||
} |