23
23
import com .caucho .server .http .HttpResponse ;
24
24
import io .skywalking .apm .plugin .resin .v3 .ResinV3Interceptor ;
25
25
import java .util .List ;
26
- import org .apache .skywalking .apm .agent .core .context .SW6CarrierItem ;
26
+ import org .apache .skywalking .apm .agent .core .context .SW8CarrierItem ;
27
27
import org .apache .skywalking .apm .agent .core .context .trace .AbstractTracingSpan ;
28
28
import org .apache .skywalking .apm .agent .core .context .trace .LogDataEntity ;
29
29
import org .apache .skywalking .apm .agent .core .context .trace .SpanLayer ;
@@ -107,21 +107,6 @@ public void testWithoutSerializedContextData() throws Throwable {
107
107
assertHttpSpan (spans .get (0 ));
108
108
}
109
109
110
- @ Test
111
- public void testWithSerializedContextData () throws Throwable {
112
- when (request .getHeader (SW6CarrierItem .HEADER_NAME )).thenReturn ("1-I0FRQSojQVFBKkV0MFdlMHRRTlFBKg==-MS4yMzQuMTEx-3-1-1-IzE5Mi4xNjguMS44OjE4MDAy-Iy9wb3J0YWwv-Iy90ZXN0RW50cnlTcGFu" );
113
-
114
- interceptor .beforeMethod (enhancedInstance , null , arguments , argumentType , methodInterceptResult );
115
- interceptor .afterMethod (enhancedInstance , null , arguments , argumentType , null );
116
-
117
- assertThat (segmentStorage .getTraceSegments ().size (), is (1 ));
118
- TraceSegment traceSegment = segmentStorage .getTraceSegments ().get (0 );
119
- List <AbstractTracingSpan > spans = SegmentHelper .getSpans (traceSegment );
120
-
121
- assertHttpSpan (spans .get (0 ));
122
- assertTraceSegmentRef (traceSegment .getRefs ().get (0 ));
123
- }
124
-
125
110
@ Test
126
111
public void testWithOccurException () throws Throwable {
127
112
interceptor .beforeMethod (enhancedInstance , null , arguments , argumentType , methodInterceptResult );
@@ -140,7 +125,6 @@ public void testWithOccurException() throws Throwable {
140
125
141
126
private void assertTraceSegmentRef (TraceSegmentRef ref ) {
142
127
MatcherAssert .assertThat (SegmentRefHelper .getSpanId (ref ), is (3 ));
143
- assertThat (SegmentRefHelper .getEntryServiceInstanceId (ref ), is (1 ));
144
128
MatcherAssert .assertThat (SegmentRefHelper .getTraceSegmentId (ref ).toString (), is ("1.234.111" ));
145
129
}
146
130
0 commit comments