-
Notifications
You must be signed in to change notification settings - Fork 16
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
Dialogue guards against HTTPCLIENT-1924 client self-closure #1951
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
type: improvement | ||
improvement: | ||
description: Dialogue guards against HTTPCLIENT-1924 client self-closure | ||
links: | ||
- https://github.com/palantir/dialogue/pull/1951 |
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
122 changes: 122 additions & 0 deletions
122
dialogue-apache-hc5-client/src/test/java/com/palantir/dialogue/hc5/ErrorRecoveryTest.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,122 @@ | ||
/* | ||
* (c) Copyright 2020 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* Licensed 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. | ||
*/ | ||
package com.palantir.dialogue.hc5; | ||
|
||
import static org.assertj.core.api.Assertions.assertThatThrownBy; | ||
|
||
import com.google.common.collect.Iterables; | ||
import com.palantir.conjure.java.client.config.ClientConfiguration; | ||
import com.palantir.conjure.java.config.ssl.SslSocketFactories; | ||
import com.palantir.conjure.java.dialogue.serde.DefaultConjureRuntime; | ||
import com.palantir.dialogue.Channel; | ||
import com.palantir.dialogue.Clients; | ||
import com.palantir.dialogue.Deserializer; | ||
import com.palantir.dialogue.EndpointChannel; | ||
import com.palantir.dialogue.Request; | ||
import com.palantir.dialogue.RequestBody; | ||
import com.palantir.dialogue.Response; | ||
import com.palantir.dialogue.TestConfigurations; | ||
import com.palantir.dialogue.TestEndpoint; | ||
import io.undertow.Undertow; | ||
import io.undertow.server.handlers.ResponseCodeHandler; | ||
import java.io.OutputStream; | ||
import java.net.InetSocketAddress; | ||
import java.util.Optional; | ||
import javax.net.ssl.SSLContext; | ||
import org.junit.jupiter.api.Test; | ||
|
||
@SuppressWarnings("checkstyle:NestedTryDepth") | ||
public final class ErrorRecoveryTest { | ||
|
||
@Test | ||
public void errorRecovery() throws Exception { | ||
Clients clients = DefaultConjureRuntime.builder().build().clients(); | ||
Undertow server = startServer(); | ||
try { | ||
String uri = "https://localhost:" + getPort(server); | ||
ClientConfiguration conf = TestConfigurations.create(uri); | ||
try (ApacheHttpClientChannels.CloseableClient client = | ||
ApacheHttpClientChannels.createCloseableHttpClient(conf, "client")) { | ||
Channel channel = ApacheHttpClientChannels.createSingleUri(uri, client); | ||
EndpointChannel endpointChannel = request -> channel.execute(TestEndpoint.POST, request); | ||
assertThatThrownBy(() -> | ||
singleRequest(clients, endpointChannel, Optional.of(ErrorThrowingRequestBody.INSTANCE))) | ||
.isInstanceOf(StackOverflowError.class); | ||
// Following a failure, the client should be operable. | ||
singleRequest(clients, endpointChannel, Optional.empty()); | ||
} | ||
} finally { | ||
server.stop(); | ||
} | ||
} | ||
|
||
private static void singleRequest(Clients clients, EndpointChannel endpointChannel, Optional<RequestBody> body) { | ||
clients.callBlocking(endpointChannel, Request.builder().body(body).build(), VoidDeserializer.INSTANCE); | ||
} | ||
|
||
private static Undertow startServer() { | ||
SSLContext sslContext = SslSocketFactories.createSslContext(TestConfigurations.SSL_CONFIG); | ||
Undertow server = Undertow.builder() | ||
.setHandler(ResponseCodeHandler.HANDLE_200) | ||
.addHttpsListener(0, null, sslContext) | ||
.build(); | ||
server.start(); | ||
return server; | ||
} | ||
|
||
private static int getPort(Undertow undertow) { | ||
return ((InetSocketAddress) | ||
Iterables.getOnlyElement(undertow.getListenerInfo()).getAddress()) | ||
.getPort(); | ||
} | ||
|
||
private enum VoidDeserializer implements Deserializer<Void> { | ||
INSTANCE; | ||
|
||
@Override | ||
public Void deserialize(Response response) { | ||
response.close(); | ||
return null; | ||
} | ||
|
||
@Override | ||
public Optional<String> accepts() { | ||
return Optional.empty(); | ||
} | ||
} | ||
|
||
private enum ErrorThrowingRequestBody implements RequestBody { | ||
INSTANCE; | ||
|
||
@Override | ||
public void writeTo(OutputStream _output) { | ||
throw new StackOverflowError(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This makes for a nice test, and I suspect is similar to the issue which prompted this change, but in practice I don't think httpclient should actually close the connection pool when an error is thrown from this portion of the request. I will follow up separately on that. |
||
} | ||
|
||
@Override | ||
public String contentType() { | ||
return "application/octet-stream"; | ||
} | ||
|
||
@Override | ||
public boolean repeatable() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void close() {} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hyperlink: MainClientExec.java#L161-L164