23
23
import io .micrometer .tracing .Span ;
24
24
import io .micrometer .tracing .Tracer ;
25
25
import io .opentelemetry .context .Context ;
26
+ import org .assertj .core .api .ThrowingConsumer ;
26
27
import org .junit .jupiter .api .AfterEach ;
27
28
import org .junit .jupiter .api .BeforeEach ;
28
29
import org .junit .jupiter .params .ParameterizedTest ;
41
42
* formats.
42
43
*
43
44
* @author Marcin Grzejszczak
45
+ * @author Moritz Halbritter
44
46
*/
45
47
class BaggagePropagationIntegrationTests {
46
48
47
- static final String COUNTRY_CODE = "country-code" ;
48
- static final String BUSINESS_PROCESS = "bp" ;
49
+ private static final String COUNTRY_CODE = "country-code" ;
50
+
51
+ private static final String BUSINESS_PROCESS = "bp" ;
49
52
50
53
@ BeforeEach
51
54
@ AfterEach
@@ -61,7 +64,7 @@ void shouldSetEntriesToMdcFromSpanWithBaggage(AutoConfig autoConfig) {
61
64
Span span = createSpan (tracer );
62
65
assertThatTracingContextIsInitialized (autoConfig );
63
66
try (Tracer .SpanInScope scope = tracer .withSpan (span .start ())) {
64
- BaggageManager baggageManager = context . getBean ( BaggageManager . class );
67
+ BaggageManager baggageManager = baggageManager ( context );
65
68
try (BaggageInScope fo = baggageManager .createBaggageInScope (span .context (), COUNTRY_CODE , "FO" );
66
69
BaggageInScope alm = baggageManager .createBaggageInScope (span .context (), BUSINESS_PROCESS ,
67
70
"ALM" )) {
@@ -73,8 +76,7 @@ void shouldSetEntriesToMdcFromSpanWithBaggage(AutoConfig autoConfig) {
73
76
finally {
74
77
span .end ();
75
78
}
76
-
77
- assertThatMdcContainsUnsetTraceId ();
79
+ assertThatMdcContainsUnsetTraceId (autoConfig );
78
80
assertThat (MDC .get (COUNTRY_CODE )).isNull ();
79
81
assertThat (MDC .get (BUSINESS_PROCESS )).isNull ();
80
82
});
@@ -88,25 +90,22 @@ void shouldRemoveEntriesFromMdcForNullSpan(AutoConfig autoConfig) {
88
90
Span span = createSpan (tracer );
89
91
assertThatTracingContextIsInitialized (autoConfig );
90
92
try (Tracer .SpanInScope scope = tracer .withSpan (span .start ())) {
91
- try (BaggageInScope fo = context .getBean (BaggageManager .class )
92
- .createBaggageInScope (span .context (), COUNTRY_CODE , "FO" )) {
93
-
93
+ try (BaggageInScope fo = baggageManager (context ).createBaggageInScope (span .context (), COUNTRY_CODE ,
94
+ "FO" )) {
94
95
assertThat (MDC .get ("traceId" )).isEqualTo (span .context ().traceId ());
95
96
assertThat (MDC .get (COUNTRY_CODE )).isEqualTo ("FO" );
96
-
97
97
try (Tracer .SpanInScope scope2 = tracer .withSpan (null )) {
98
- assertThatMdcContainsUnsetTraceId ();
98
+ assertThatMdcContainsUnsetTraceId (autoConfig );
99
99
assertThat (MDC .get (COUNTRY_CODE )).isNull ();
100
100
}
101
-
102
101
assertThat (MDC .get ("traceId" )).isEqualTo (span .context ().traceId ());
103
102
assertThat (MDC .get (COUNTRY_CODE )).isEqualTo ("FO" );
104
103
}
105
104
}
106
105
finally {
107
106
span .end ();
108
107
}
109
- assertThatMdcContainsUnsetTraceId ();
108
+ assertThatMdcContainsUnsetTraceId (autoConfig );
110
109
assertThat (MDC .get (COUNTRY_CODE )).isNull ();
111
110
});
112
111
}
@@ -119,22 +118,28 @@ private Tracer tracer(ApplicationContext context) {
119
118
return context .getBean (Tracer .class );
120
119
}
121
120
121
+ private BaggageManager baggageManager (ApplicationContext context ) {
122
+ return context .getBean (BaggageManager .class );
123
+ }
124
+
122
125
private void assertThatTracingContextIsInitialized (AutoConfig autoConfig ) {
123
- if (autoConfig == AutoConfig . OTEL_B3 ) {
126
+ if (autoConfig . isOtel () ) {
124
127
assertThat (Context .current ()).isEqualTo (Context .root ());
125
128
}
126
129
}
127
130
128
- private void assertThatMdcContainsUnsetTraceId () {
129
- assertThat (isInvalidBraveTraceId () || isInvalidOtelTraceId ()).isTrue ();
130
- }
131
-
132
- private boolean isInvalidBraveTraceId () {
133
- return MDC .get ("traceId" ) == null ;
134
- }
135
-
136
- private boolean isInvalidOtelTraceId () {
137
- return MDC .get ("traceId" ).equals ("00000000000000000000000000000000" );
131
+ private void assertThatMdcContainsUnsetTraceId (AutoConfig autoConfig ) {
132
+ boolean eitherOtelOrBrave = autoConfig .isOtel () || autoConfig .isBrave ();
133
+ assertThat (eitherOtelOrBrave ).isTrue ();
134
+ if (autoConfig .isOtel ()) {
135
+ ThrowingConsumer <String > isNull = (traceId ) -> assertThat (traceId ).isNull ();
136
+ ThrowingConsumer <String > isZero = (traceId ) -> assertThat (traceId )
137
+ .isEqualTo ("00000000000000000000000000000000" );
138
+ assertThat (MDC .get ("traceId" )).satisfiesAnyOf (isNull , isZero );
139
+ }
140
+ if (autoConfig .isBrave ()) {
141
+ assertThat (MDC .get ("traceId" )).isNull ();
142
+ }
138
143
}
139
144
140
145
enum AutoConfig implements Supplier <ApplicationContextRunner > {
@@ -237,6 +242,14 @@ public ApplicationContextRunner get() {
237
242
.withPropertyValues ("management.tracing.baggage.local-fields=country-code,bp" ,
238
243
"management.tracing.baggage.correlation.fields=country-code,bp" );
239
244
}
245
+ };
246
+
247
+ boolean isOtel () {
248
+ return name ().startsWith ("OTEL_" );
249
+ }
250
+
251
+ boolean isBrave () {
252
+ return name ().startsWith ("BRAVE_" );
240
253
}
241
254
242
255
}
0 commit comments