-
Notifications
You must be signed in to change notification settings - Fork 782
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
Ensures that there are no issues with context setup when picking custom propagation type #1989
Merged
Merged
Changes from all commits
Commits
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 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
102 changes: 102 additions & 0 deletions
102
.../springframework/cloud/sleuth/autoconfig/brave/baggage/CustomPropagationFactoryTests.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,102 @@ | ||
/* | ||
* Copyright 2013-2021 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.autoconfig.brave.baggage; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
import brave.internal.propagation.StringPropagationAdapter; | ||
import brave.propagation.Propagation; | ||
import brave.propagation.TraceContext; | ||
import brave.propagation.TraceContextOrSamplingFlags; | ||
import org.assertj.core.api.BDDAssertions; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.boot.actuate.autoconfigure.security.servlet.ManagementWebSecurityAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration; | ||
import org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration; | ||
import org.springframework.boot.test.context.runner.ApplicationContextRunner; | ||
import org.springframework.cloud.gateway.config.GatewayAutoConfiguration; | ||
import org.springframework.cloud.gateway.config.GatewayClassPathWarningAutoConfiguration; | ||
import org.springframework.cloud.gateway.config.GatewayMetricsAutoConfiguration; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
public class CustomPropagationFactoryTests { | ||
|
||
@Test | ||
void should_fail_to_start_the_context_when_propagation_type_custom_and_no_custom_propagation_provided() { | ||
new ApplicationContextRunner().withUserConfiguration(Config.class) | ||
.withPropertyValues("spring.sleuth.propagation.type=custom") | ||
.run(context -> BDDAssertions.then(context).hasFailed()); | ||
} | ||
|
||
@Test | ||
void should_start_the_context_when_propagation_type_custom_and_no_custom_propagation_provided() { | ||
new ApplicationContextRunner().withUserConfiguration(CustomConfig.class) | ||
.withPropertyValues("spring.sleuth.propagation.type=custom").run(context -> BDDAssertions.then(context) | ||
.hasNotFailed().getBean(CustomConfig.CustomPropagation.class)); | ||
} | ||
|
||
@Configuration(proxyBeanMethods = false) | ||
@EnableAutoConfiguration(exclude = { GatewayClassPathWarningAutoConfiguration.class, GatewayAutoConfiguration.class, | ||
GatewayMetricsAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class, | ||
MongoAutoConfiguration.class, QuartzAutoConfiguration.class }) | ||
static class Config { | ||
|
||
} | ||
|
||
@Configuration(proxyBeanMethods = false) | ||
@EnableAutoConfiguration(exclude = { GatewayClassPathWarningAutoConfiguration.class, GatewayAutoConfiguration.class, | ||
GatewayMetricsAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class, | ||
MongoAutoConfiguration.class, QuartzAutoConfiguration.class }) | ||
static class CustomConfig { | ||
|
||
@Bean | ||
CustomPropagation customPropagation() { | ||
return new CustomPropagation(); | ||
} | ||
|
||
static class CustomPropagation extends Propagation.Factory implements Propagation<String> { | ||
|
||
@Override | ||
public List<String> keys() { | ||
return Collections.emptyList(); | ||
} | ||
|
||
@Override | ||
public <R> TraceContext.Injector<R> injector(Setter<R, String> setter) { | ||
return (traceContext, request) -> { | ||
}; | ||
} | ||
|
||
@Override | ||
public <R> TraceContext.Extractor<R> extractor(Getter<R, String> getter) { | ||
return request -> TraceContextOrSamplingFlags.EMPTY; | ||
} | ||
|
||
@Override | ||
public <K> Propagation<K> create(KeyFactory<K> keyFactory) { | ||
return StringPropagationAdapter.create(this, keyFactory); | ||
} | ||
|
||
} | ||
|
||
} | ||
|
||
} |
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 |
---|---|---|
|
@@ -84,7 +84,7 @@ class CompositePropagationFactory extends Propagation.Factory implements Propaga | |
W3CPropagation w3CPropagation = new W3CPropagation(braveBaggageManager, localFields); | ||
this.mapping.put(PropagationType.W3C, new AbstractMap.SimpleEntry<>(w3CPropagation, w3CPropagation.get())); | ||
LazyPropagationFactory lazyPropagationFactory = new LazyPropagationFactory( | ||
beanFactory.getBeanProvider(Factory.class)); | ||
beanFactory.getBeanProvider(PropagationFactorySupplier.class)); | ||
this.mapping.put(PropagationType.CUSTOM, | ||
new AbstractMap.SimpleEntry<>(lazyPropagationFactory, lazyPropagationFactory.get())); | ||
} | ||
|
@@ -161,17 +161,17 @@ public TraceContext decorate(TraceContext context) { | |
@SuppressWarnings("unchecked") | ||
private static final class LazyPropagationFactory extends Propagation.Factory { | ||
|
||
private final ObjectProvider<Propagation.Factory> delegate; | ||
private final ObjectProvider<PropagationFactorySupplier> delegate; | ||
|
||
private volatile Propagation.Factory propagationFactory; | ||
|
||
private LazyPropagationFactory(ObjectProvider<Propagation.Factory> delegate) { | ||
private LazyPropagationFactory(ObjectProvider<PropagationFactorySupplier> delegate) { | ||
this.delegate = delegate; | ||
} | ||
|
||
private Propagation.Factory propagationFactory() { | ||
if (this.propagationFactory == null) { | ||
this.propagationFactory = this.delegate.getIfAvailable(() -> NoOpPropagation.INSTANCE); | ||
this.propagationFactory = this.delegate.getIfAvailable(() -> () -> NoOpPropagation.INSTANCE).get(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Inception. :) |
||
} | ||
return this.propagationFactory; | ||
} | ||
|
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
120 changes: 0 additions & 120 deletions
120
...g/springframework/cloud/sleuth/brave/bridge/CompositePropagationFactorySupplierTests.java
This file was deleted.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏼