forked from apache/httpcomponents-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now that ClassicHttpRequests is no longer an enum, we need to way to
generically build requests from method names. Update all factory classes with matching APIs for Method and String method name inputs. (apache#204), (apache#205)
- Loading branch information
1 parent
afa8f5e
commit 95dbbf0
Showing
7 changed files
with
279 additions
and
2 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
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
91 changes: 91 additions & 0 deletions
91
...ient5/src/test/java/org/apache/hc/client5/http/async/methods/SimpleBasicHttpRequests.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,91 @@ | ||
/* | ||
* ==================================================================== | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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 | ||
* | ||
* http://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. | ||
* ==================================================================== | ||
* | ||
* This software consists of voluntary contributions made by many | ||
* individuals on behalf of the Apache Software Foundation. For more | ||
* information on the Apache Software Foundation, please see | ||
* <http://www.apache.org/>. | ||
* | ||
*/ | ||
|
||
package org.apache.hc.client5.http.async.methods; | ||
|
||
import java.lang.reflect.Method; | ||
import java.net.URI; | ||
import java.util.Arrays; | ||
|
||
import org.apache.hc.core5.http.HttpRequest; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Parameterized; | ||
import org.junit.runners.Parameterized.Parameters; | ||
|
||
@RunWith(Parameterized.class) | ||
public class SimpleBasicHttpRequests { | ||
|
||
private static final String URI_STRING_FIXTURE = "http://localhost"; | ||
private static final URI URI_FIXTURE = URI.create(URI_STRING_FIXTURE); | ||
|
||
@Parameters(name = "{index}: {0} => {1}") | ||
public static Iterable<Object[]> data() { | ||
return Arrays.asList(new Object[][] { | ||
// @formatter:off | ||
{ "delete", "DELETE" }, | ||
{ "get", "GET" }, | ||
{ "head", "HEAD" }, | ||
{ "options", "OPTIONS" }, | ||
{ "patch", "PATCH" }, | ||
{ "post", "POST" }, | ||
{ "put", "PUT" }, | ||
{ "trace", "TRACE" } | ||
// @formatter:on | ||
}); | ||
} | ||
|
||
private final String methodName; | ||
|
||
private final String expectedMethod; | ||
|
||
public SimpleBasicHttpRequests(final String methodName, final String expectedMethod) { | ||
this.methodName = methodName; | ||
this.expectedMethod = expectedMethod; | ||
} | ||
|
||
@Test | ||
public void testCreateMethodUri() { | ||
Assert.assertEquals(SimpleHttpRequest.class, SimpleHttpRequests.create(methodName, URI_FIXTURE).getClass()); | ||
Assert.assertEquals(SimpleHttpRequest.class, SimpleHttpRequests.create(expectedMethod, URI_FIXTURE).getClass()); | ||
} | ||
|
||
@Test | ||
public void testCreateMethodUriString() { | ||
Assert.assertEquals(SimpleHttpRequest.class, SimpleHttpRequests.create(methodName, URI_STRING_FIXTURE).getClass()); | ||
Assert.assertEquals(SimpleHttpRequest.class, SimpleHttpRequests.create(expectedMethod, URI_STRING_FIXTURE).getClass()); | ||
} | ||
|
||
@Test | ||
public void testCreateClassicHttpRequest() throws Exception { | ||
final Method httpMethod = SimpleHttpRequests.class.getMethod(methodName, URI.class); | ||
final HttpRequest basicHttpRequest = (HttpRequest) httpMethod.invoke(null, URI_FIXTURE); | ||
Assert.assertEquals(SimpleHttpRequest.class, basicHttpRequest.getClass()); | ||
Assert.assertEquals(expectedMethod, basicHttpRequest.getMethod()); | ||
} | ||
} |
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