-
Notifications
You must be signed in to change notification settings - Fork 41k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an outcome tag to RestTemplate metrics similar to that provided f…
…or WebMVC and WebFlux #15420
- Loading branch information
1 parent
2153a75
commit 82c4245
Showing
7 changed files
with
229 additions
and
4 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
80 changes: 80 additions & 0 deletions
80
...va/org/springframework/boot/actuate/metrics/web/client/RestTemplateExchangeTagsTests.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,80 @@ | ||
/* | ||
* Copyright 2012-2018 the original author or authors. | ||
* | ||
* 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 org.springframework.boot.actuate.metrics.web.client; | ||
|
||
import io.micrometer.core.instrument.Tag; | ||
import org.junit.Test; | ||
|
||
import org.springframework.http.HttpStatus; | ||
import org.springframework.mock.http.client.MockClientHttpResponse; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Tests for {@link RestTemplateExchangeTags}. | ||
* | ||
* @author Nishant Raut | ||
*/ | ||
public class RestTemplateExchangeTagsTests { | ||
|
||
private MockClientHttpResponse response; | ||
|
||
@Test | ||
public void outcomeTagIsUnknownWhenResponseStatusIsNull() { | ||
Tag tag = RestTemplateExchangeTags.outcome(null); | ||
assertThat(tag.getValue()).isEqualTo("UNKNOWN"); | ||
} | ||
|
||
@Test | ||
public void outcomeTagIsInformationalWhenResponseIs1xx() { | ||
this.response = new MockClientHttpResponse("foo".getBytes(), HttpStatus.CONTINUE); | ||
Tag tag = RestTemplateExchangeTags.outcome(this.response); | ||
assertThat(tag.getValue()).isEqualTo("INFORMATIONAL"); | ||
} | ||
|
||
@Test | ||
public void outcomeTagIsSuccessWhenResponseIs2xx() { | ||
this.response = new MockClientHttpResponse("foo".getBytes(), HttpStatus.OK); | ||
Tag tag = RestTemplateExchangeTags.outcome(this.response); | ||
assertThat(tag.getValue()).isEqualTo("SUCCESS"); | ||
} | ||
|
||
@Test | ||
public void outcomeTagIsRedirectionWhenResponseIs3xx() { | ||
this.response = new MockClientHttpResponse("foo".getBytes(), | ||
HttpStatus.MOVED_PERMANENTLY); | ||
Tag tag = RestTemplateExchangeTags.outcome(this.response); | ||
assertThat(tag.getValue()).isEqualTo("REDIRECTION"); | ||
} | ||
|
||
@Test | ||
public void outcomeTagIsClientErrorWhenResponseIs4xx() { | ||
this.response = new MockClientHttpResponse("foo".getBytes(), | ||
HttpStatus.BAD_REQUEST); | ||
Tag tag = RestTemplateExchangeTags.outcome(this.response); | ||
assertThat(tag.getValue()).isEqualTo("CLIENT_ERROR"); | ||
} | ||
|
||
@Test | ||
public void outcomeTagIsServerErrorWhenResponseIs5xx() { | ||
this.response = new MockClientHttpResponse("foo".getBytes(), | ||
HttpStatus.BAD_GATEWAY); | ||
Tag tag = RestTemplateExchangeTags.outcome(this.response); | ||
assertThat(tag.getValue()).isEqualTo("SERVER_ERROR"); | ||
} | ||
|
||
} |
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