-
Notifications
You must be signed in to change notification settings - Fork 316
Apache HttpClient 5.0 followup #1357
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
Closed
Closed
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
1c7d2de
Format
cachescrubber d38f543
Fix org.springframework.ws.transport.http.HttpComponents5MessageSende…
cachescrubber 76ea687
Adopt javadoc regarding AuthScope.ANY.
cachescrubber 2fc5b7e
revert spring-javaformat-maven-plugin
cachescrubber be0de15
Revert "Format"
cachescrubber 8f052c9
Adopt project conventions
cachescrubber 87af2f7
Revert "Adopt javadoc regarding AuthScope.ANY."
cachescrubber 4c82025
Define ANY AuthScope
cachescrubber 75b56c0
Tweak Javadoc for ANY
cachescrubber 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 hidden or 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 |
---|---|---|
|
@@ -275,6 +275,8 @@ | |
</configuration> | ||
</plugin> | ||
|
||
|
||
|
||
</plugins> | ||
</build> | ||
|
||
|
This file contains hidden or 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 hidden or 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
33 changes: 33 additions & 0 deletions
33
...src/test/java/org/springframework/ws/transport/http/HttpComponents5MessageSenderTest.java
This file contains hidden or 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,33 @@ | ||
package org.springframework.ws.transport.http; | ||
|
||
import java.time.Duration; | ||
|
||
import org.apache.hc.client5.http.impl.classic.CloseableHttpClient; | ||
import org.apache.hc.client5.http.impl.classic.HttpClientBuilder; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.assertj.core.api.Assertions.*; | ||
|
||
class HttpComponents5MessageSenderTest { | ||
|
||
@Test | ||
void afterPropertiesSet_createHttpClient() throws Exception { | ||
HttpComponents5MessageSender messageSender = new HttpComponents5MessageSender(); | ||
assertThat(messageSender.getHttpClient()).isNull(); | ||
Duration timeout = Duration.ofSeconds(1); | ||
assertThatCode(() -> messageSender.setConnectionTimeout(timeout)).doesNotThrowAnyException(); | ||
messageSender.afterPropertiesSet(); | ||
assertThat(messageSender.getHttpClient()).isNotNull(); | ||
} | ||
|
||
@Test | ||
void afterPropertiesSet_httpClientAlreadySet() throws Exception { | ||
CloseableHttpClient httpClient = HttpClientBuilder.create().build(); | ||
HttpComponents5MessageSender messageSender = new HttpComponents5MessageSender(httpClient); | ||
Duration timeout = Duration.ofSeconds(1); | ||
assertThatCode(() -> messageSender.setConnectionTimeout(timeout)).isInstanceOf(IllegalStateException.class); | ||
messageSender.afterPropertiesSet(); | ||
assertThat(messageSender.getHttpClient()).isSameAs(httpClient); | ||
} | ||
|
||
} |
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.
Uh oh!
There was an error while loading. Please reload this page.