Improved DefaultSpanNamer to more efficiently check if the delegate has a default toString. (#2234)

Co-authored-by: pbakker <pbakker@netflix.com>
This commit is contained in:
Paul Bakker
2022-11-29 06:34:54 -08:00
committed by GitHub
parent a6e1dcbfcd
commit 0c481bfabb
2 changed files with 64 additions and 3 deletions

View File

@@ -42,10 +42,12 @@ import org.springframework.core.annotation.AnnotationUtils;
public class DefaultSpanNamer implements SpanNamer {
private static boolean isDefaultToString(Object delegate, String spanName) {
if (delegate instanceof Method) {
return delegate.toString().equals(spanName);
try {
return delegate.getClass().getMethod("toString").getDeclaringClass() == Object.class;
}
catch (NoSuchMethodException e) {
throw new RuntimeException(e);
}
return (delegate.getClass().getName() + "@" + Integer.toHexString(delegate.hashCode())).equals(spanName);
}
@Override

View File

@@ -0,0 +1,59 @@
/*
* Copyright 2013-2022 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
*
* https://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.cloud.sleuth.internal;
import org.assertj.core.api.BDDAssertions;
import org.junit.jupiter.api.Test;
class DefaultSpanNamerTest {
@Test
void nameWithoutToStringOverride() {
String defaultValue = new DefaultSpanNamer().name(new NoToStringOverride(), "default value");
BDDAssertions.then(defaultValue).isEqualTo("default value");
}
@Test
void nameWithToStringOverride() {
String defaultValue = new DefaultSpanNamer().name(new WithToStringOverride(), "default value");
BDDAssertions.then(defaultValue).isEqualTo("mytostring");
}
@Test
void nameWithInheritedToStringOverride() {
String defaultValue = new DefaultSpanNamer().name(new InheritedToString(), "default value");
BDDAssertions.then(defaultValue).isEqualTo("mytostring");
}
static class NoToStringOverride {
}
static class WithToStringOverride {
@Override
public String toString() {
return "mytostring";
}
}
static class InheritedToString extends WithToStringOverride {
}
}