-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support OTEL_SERVICE_NAME * spotless
- Loading branch information
Mateusz Rzeszutek
authored
Jul 13, 2021
1 parent
657af1e
commit 3e878f0
Showing
4 changed files
with
113 additions
and
9 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
79 changes: 79 additions & 0 deletions
79
custom/src/test/java/com/splunk/opentelemetry/ServiceNameCheckerTest.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,79 @@ | ||
/* | ||
* Copyright Splunk Inc. | ||
* | ||
* 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.splunk.opentelemetry; | ||
|
||
import static org.mockito.ArgumentMatchers.anyString; | ||
import static org.mockito.Mockito.verify; | ||
import static org.mockito.Mockito.verifyNoInteractions; | ||
|
||
import io.opentelemetry.instrumentation.api.config.Config; | ||
import java.util.Map; | ||
import java.util.function.Consumer; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
@ExtendWith(MockitoExtension.class) | ||
class ServiceNameCheckerTest { | ||
@Mock Consumer<String> logWarn; | ||
|
||
@Test | ||
void shouldLogWarnWhenNeitherServiceNameNorResourceAttributeIsConfigured() { | ||
// given | ||
var config = Config.newBuilder().build(); | ||
|
||
var underTest = new ServiceNameChecker(logWarn); | ||
|
||
// when | ||
underTest.beforeAgent(config); | ||
|
||
// then | ||
verify(logWarn).accept(anyString()); | ||
} | ||
|
||
@Test | ||
void shouldNotLogWarnWhenServiceNameIsConfigured() { | ||
// given | ||
var config = Config.newBuilder().readProperties(Map.of("otel.service.name", "test")).build(); | ||
|
||
var underTest = new ServiceNameChecker(logWarn); | ||
|
||
// when | ||
underTest.beforeAgent(config); | ||
|
||
// then | ||
verifyNoInteractions(logWarn); | ||
} | ||
|
||
@Test | ||
void shouldNotLogWarnWhenResourceAttributeIsConfigured() { | ||
// given | ||
var config = | ||
Config.newBuilder() | ||
.readProperties(Map.of("otel.resource.attributes", "service.name=test")) | ||
.build(); | ||
|
||
var underTest = new ServiceNameChecker(logWarn); | ||
|
||
// when | ||
underTest.beforeAgent(config); | ||
|
||
// then | ||
verifyNoInteractions(logWarn); | ||
} | ||
} |
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