Skip to content

Commit

Permalink
Allow setting JDKHttpClient connectionTimeout, readTimeout, version v…
Browse files Browse the repository at this point in the history
…ia system property

Signed-off-by: Viet Nguyen Duc <[email protected]>
  • Loading branch information
VietND96 committed Jul 25, 2024
1 parent 5dd385c commit e90fe6c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
8 changes: 5 additions & 3 deletions java/src/org/openqa/selenium/remote/http/ClientConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,15 @@ protected ClientConfig(
public static ClientConfig defaultConfig() {
return new ClientConfig(
null,
Duration.ofSeconds(10),
Duration.ofMinutes(3),
Duration.ofSeconds(
Long.parseLong(System.getProperty("webdriver.httpclient.connectionTimeout", "10"))),
Duration.ofSeconds(
Long.parseLong(System.getProperty("webdriver.httpclient.readTimeout", "180"))),
DEFAULT_FILTER,
null,
null,
null,
null);
System.getProperty("webdriver.httpclient.version", null));
}

public ClientConfig baseUri(URI baseUri) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,23 @@ void shouldAllowConfigurationOfRequestTimeout() {
ClientConfig.defaultConfig().readTimeout(Duration.ofMillis(500))));
}

@Test
public void shouldAllowConfigurationFromSystemProperties() {
try {
System.setProperty("webdriver.httpclient.connectionTimeout", "60");
System.setProperty("webdriver.httpclient.readTimeout", "300");
System.setProperty("webdriver.httpclient.version", "HTTP_1_1");
ClientConfig clientConfig = ClientConfig.defaultConfig();
assertThat(clientConfig.connectionTimeout()).isEqualTo(Duration.ofSeconds(60));
assertThat(clientConfig.readTimeout()).isEqualTo(Duration.ofSeconds(300));
assertThat(clientConfig.version()).isEqualTo(HttpVersion.HTTP_1_1);
} finally {
System.clearProperty("webdriver.httpclient.connectionTimeout");
System.clearProperty("webdriver.httpclient.readTimeout");
System.clearProperty("webdriver.httpclient.version");
}
}

private HttpResponse getResponseWithHeaders(final Multimap<String, String> headers) {
return executeWithinServer(
new HttpRequest(GET, "/foo"),
Expand Down

0 comments on commit e90fe6c

Please sign in to comment.