Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add possibility to use entity with http method Options in requests according to the RFC 7231 #4837

Merged
merged 5 commits into from
Sep 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
Expand Down Expand Up @@ -42,6 +42,7 @@

import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
Expand Down Expand Up @@ -146,6 +147,14 @@ public void testOptions() {
cr.close();
}

@Test
public void testOptionsWithEntity() {
WebTarget r = getWebTarget();
Response response = r.request().build("OPTIONS", Entity.text("OPTIONS")).invoke();
assertEquals(200, response.getStatus());
response.close();
}

@Test
public void testGet() {
WebTarget r = getWebTarget();
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/*
* 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.grizzly.connector;

import org.glassfish.jersey.client.ClientConfig;
import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.jersey.test.JerseyTest;
import org.junit.Test;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import javax.ws.rs.client.Entity;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.Application;
import javax.ws.rs.core.Response;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

/**
* Tests the Http methods.
*/
public class HttpMethodTest extends JerseyTest {

@Override
protected Application configure() {
return new ResourceConfig(HttpMethodResource.class);
}

protected Client createClient() {
ClientConfig cc = new ClientConfig();
cc.connectorProvider(new GrizzlyConnectorProvider());
return ClientBuilder.newClient(cc);
}

private WebTarget getWebTarget(final Client client) {
return client.target(getBaseUri()).path("test");
}

private WebTarget getWebTarget() {
return getWebTarget(createClient());
}

@Path("/test")
public static class HttpMethodResource {
@GET
public String get() {
return "GET";
}
}

@Test
public void testOptionsWithEntity() {
WebTarget r = getWebTarget();
Response response = r.request().build("OPTIONS", Entity.text("OPTIONS")).invoke();
assertEquals(200, response.getStatus());
response.close();
}

@Test
public void testGet() {
WebTarget r = getWebTarget();
assertEquals("GET", r.request().get(String.class));

Response cr = r.request().get();
assertTrue(cr.hasEntity());
cr.close();
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 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
Expand Down Expand Up @@ -55,6 +55,8 @@
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;

import static org.junit.Assert.assertEquals;

@RunWith(Parameterized.class)
public class BasicHelidonConnectorTest extends JerseyTest {

Expand Down Expand Up @@ -305,4 +307,11 @@ public void testOneClientsTwoReqestsAsync() throws ExecutionException, Interrupt
Assert.assertEquals("long", longResponse.readEntity(String.class));
}
}

@Test
public void testOptionsWithEntity() {
Response response = target("basic").path("get").request().build("OPTIONS", Entity.text("OPTIONS")).invoke();
assertEquals(200, response.getStatus());
response.close();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/*
* 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.jdk.connector;

import org.glassfish.jersey.client.ClientConfig;
import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.jersey.test.JerseyTest;
import org.junit.Test;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import javax.ws.rs.client.Entity;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.Application;
import javax.ws.rs.core.Response;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

/**
* Tests the Http methods.
*/
public class HttpMethodTest extends JerseyTest {

@Override
protected Application configure() {
return new ResourceConfig(HttpMethodResource.class);
}

protected Client createClient() {
ClientConfig cc = new ClientConfig();
cc.connectorProvider(new JdkConnectorProvider());
return ClientBuilder.newClient(cc);
}

private WebTarget getWebTarget(final Client client) {
return client.target(getBaseUri()).path("test");
}

private WebTarget getWebTarget() {
return getWebTarget(createClient());
}

@Path("/test")
public static class HttpMethodResource {
@GET
public String get() {
return "GET";
}
}

@Test
public void testOptionsWithEntity() {
WebTarget r = getWebTarget();
Response response = r.request().build("OPTIONS", Entity.text("OPTIONS")).invoke();
assertEquals(200, response.getStatus());
response.close();
}

@Test
public void testGet() {
WebTarget r = getWebTarget();
assertEquals("GET", r.request().get(String.class));

Response cr = r.request().get();
assertTrue(cr.hasEntity());
cr.close();
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 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
Expand Down Expand Up @@ -143,4 +143,11 @@ public void testPatch() {
Response response = target(PATH).request().method("PATCH", Entity.entity("PATCH", MediaType.TEXT_PLAIN));
assertEquals("PATCH", response.readEntity(String.class));
}

@Test
public void testOptionsWithEntity() {
Response response = target(PATH).request().build("OPTIONS", Entity.text("OPTIONS")).invoke();
assertEquals(200, response.getStatus());
response.close();
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 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
Expand Down Expand Up @@ -98,4 +98,11 @@ public void testDelete() {
Response response = target(PATH).request().delete();
assertEquals("DELETE", response.readEntity(String.class));
}

@Test
public void testOptionsWithEntity() {
Response response = target(PATH).request().build("OPTIONS", Entity.text("OPTIONS")).invoke();
assertEquals(200, response.getStatus());
response.close();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private static Map<String, EntityPresence> initializeMap() {
map.put("DELETE", EntityPresence.MUST_BE_NULL);
map.put("GET", EntityPresence.MUST_BE_NULL);
map.put("HEAD", EntityPresence.MUST_BE_NULL);
map.put("OPTIONS", EntityPresence.MUST_BE_NULL);
map.put("OPTIONS", EntityPresence.OPTIONAL);
map.put("PATCH", EntityPresence.MUST_BE_PRESENT);
map.put("POST", EntityPresence.OPTIONAL); // we allow to post null instead of entity
map.put("PUT", EntityPresence.MUST_BE_PRESENT);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 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
Expand Down Expand Up @@ -85,7 +85,7 @@ public void testHead() {

@Test
public void testOptions() {
_test("OPTIONS", true, true);
_test("OPTIONS", true, false);
_test("OPTIONS", false, false);
}

Expand Down