-
Notifications
You must be signed in to change notification settings - Fork 972
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HTTPCLIENT-2293 Enforce port specification for CONNECT requests as pe…
…r RFC 9110 - This adheres to RFC 9110, which states: "There is no default port; a client MUST send the port number even if the CONNECT request is based on a URI reference that contains an authority component with an elided port.
- Loading branch information
1 parent
a6a3516
commit a81788e
Showing
2 changed files
with
117 additions
and
6 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
113 changes: 113 additions & 0 deletions
113
httpclient5/src/test/java/org/apache/hc/client5/http/impl/classic/TestProxyClient.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,113 @@ | ||
/* | ||
* ==================================================================== | ||
* 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.impl.classic; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertNotNull; | ||
import static org.junit.jupiter.api.Assertions.assertThrows; | ||
import static org.junit.jupiter.api.Assertions.fail; | ||
import static org.mockito.ArgumentMatchers.any; | ||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.when; | ||
|
||
import java.io.IOException; | ||
import java.net.Socket; | ||
|
||
import org.apache.hc.client5.http.auth.Credentials; | ||
import org.apache.hc.client5.http.auth.UsernamePasswordCredentials; | ||
import org.apache.hc.client5.http.config.RequestConfig; | ||
import org.apache.hc.client5.http.io.ManagedHttpClientConnection; | ||
import org.apache.hc.core5.http.ClassicHttpResponse; | ||
import org.apache.hc.core5.http.HttpException; | ||
import org.apache.hc.core5.http.HttpHost; | ||
import org.apache.hc.core5.http.impl.io.HttpRequestExecutor; | ||
import org.apache.hc.core5.http.io.HttpConnectionFactory; | ||
import org.junit.jupiter.api.Test; | ||
|
||
class TestProxyClient { | ||
|
||
@Test | ||
void testTunnelWithInvalidPort() throws IOException { | ||
// Mock dependencies | ||
final HttpConnectionFactory<ManagedHttpClientConnection> connFactory = mock(HttpConnectionFactory.class); | ||
final ManagedHttpClientConnection managedConnection = mock(ManagedHttpClientConnection.class); | ||
when(connFactory.createConnection(null)).thenReturn(managedConnection); | ||
|
||
final HttpRequestExecutor requestExecutor = mock(HttpRequestExecutor.class); | ||
final ClassicHttpResponse response = mock(ClassicHttpResponse.class); | ||
when(response.getCode()).thenReturn(200); | ||
try { | ||
when(requestExecutor.execute(any(), any(), any())).thenReturn(response); | ||
} catch (final IOException | HttpException e) { | ||
fail("Shouldn't fail"); | ||
} | ||
|
||
final RequestConfig requestConfig = RequestConfig.DEFAULT; | ||
|
||
final ProxyClient client = new ProxyClient(connFactory, null, null, requestConfig); | ||
|
||
final HttpHost proxy = new HttpHost("proxy.example.com", 8080); | ||
final HttpHost target = new HttpHost("target.example.com", -1); // Invalid port | ||
final Credentials credentials = new UsernamePasswordCredentials("user", "pass".toCharArray()); | ||
|
||
assertThrows(IllegalArgumentException.class, () -> client.tunnel(proxy, target, credentials)); | ||
} | ||
|
||
@Test | ||
void testSuccessfulTunnel() throws IOException, HttpException { | ||
// Mock dependencies | ||
final HttpConnectionFactory<ManagedHttpClientConnection> connFactory = mock(HttpConnectionFactory.class); | ||
|
||
final ManagedHttpClientConnection managedConnection = mock(ManagedHttpClientConnection.class); | ||
when(managedConnection.isOpen()).thenReturn(true); // Always return true for isOpen() | ||
when(connFactory.createConnection(null)).thenReturn(managedConnection); | ||
|
||
final ClassicHttpResponse mockResponse = mock(ClassicHttpResponse.class); | ||
when(mockResponse.getCode()).thenReturn(200); // Successful response | ||
when(managedConnection.receiveResponseHeader()).thenReturn(mockResponse); | ||
|
||
final HttpRequestExecutor mockRequestExecutor = mock(HttpRequestExecutor.class); | ||
when(mockRequestExecutor.execute(any(), any(), any())).thenReturn(mockResponse); | ||
|
||
final Socket mockSocket = mock(Socket.class); | ||
when(managedConnection.getSocket()).thenReturn(mockSocket); | ||
|
||
final RequestConfig requestConfig = RequestConfig.DEFAULT; | ||
|
||
final ProxyClient client = new ProxyClient(connFactory, null, null, requestConfig); | ||
|
||
final HttpHost proxy = new HttpHost("proxy.example.com", 8080); | ||
final HttpHost target = new HttpHost("target.example.com", 80); // Valid port | ||
final Credentials credentials = new UsernamePasswordCredentials("user", "pass".toCharArray()); | ||
|
||
final Socket resultSocket = client.tunnel(proxy, target, credentials); | ||
assertNotNull(resultSocket, "Expected a valid socket object"); | ||
assertEquals(mockSocket, resultSocket, "Expected the mock socket to be returned"); | ||
} | ||
|
||
} |