
zipkin.junit.ZipkinDispatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zipkin-junit Show documentation
Show all versions of zipkin-junit Show documentation
JUnit rule to spin-up a Zipkin server during tests
The newest version!
/*
* Copyright 2015-2018 The OpenZipkin 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
*
* 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 zipkin.junit;
import java.io.IOException;
import java.util.List;
import okhttp3.HttpUrl;
import okhttp3.mockwebserver.Dispatcher;
import okhttp3.mockwebserver.MockResponse;
import okhttp3.mockwebserver.MockWebServer;
import okhttp3.mockwebserver.RecordedRequest;
import okio.Buffer;
import okio.GzipSource;
import zipkin.Codec;
import zipkin.DependencyLink;
import zipkin.Span;
import zipkin.SpanDecoder;
import zipkin.collector.Collector;
import zipkin.collector.CollectorMetrics;
import zipkin.internal.Nullable;
import zipkin.internal.V2JsonSpanDecoder;
import zipkin.internal.V2Proto3SpanDecoder;
import zipkin.internal.V2StorageComponent;
import zipkin.storage.Callback;
import zipkin.storage.QueryRequest;
import zipkin.storage.SpanStore;
import zipkin2.codec.DependencyLinkBytesEncoder;
import zipkin2.codec.SpanBytesEncoder;
import zipkin2.internal.Platform;
import zipkin2.storage.StorageComponent;
import static zipkin.internal.Util.lowerHexToUnsignedLong;
import static zipkin2.Span.normalizeTraceId;
final class ZipkinDispatcher extends Dispatcher {
static final long DEFAULT_LOOKBACK = 86400000L; // 1 day in millis
static final SpanDecoder JSON2_DECODER = new V2JsonSpanDecoder();
static final SpanDecoder PROTO3_DECODER = new V2Proto3SpanDecoder();
private final SpanStore store;
private final zipkin2.storage.SpanStore store2;
private final Collector consumer;
private final CollectorMetrics metrics;
private final MockWebServer server;
ZipkinDispatcher(StorageComponent storage, CollectorMetrics metrics, MockWebServer server) {
V2StorageComponent adapted = V2StorageComponent.create(storage);
this.store = adapted.spanStore();
this.store2 = storage.spanStore();
this.consumer = Collector.builder(getClass()).storage(adapted).metrics(metrics).build();
this.metrics = metrics;
this.server = server;
}
@Override
public MockResponse dispatch(RecordedRequest request) {
HttpUrl url = server.url(request.getPath());
if (request.getMethod().equals("GET")) {
if (url.encodedPath().equals("/health")) {
return new MockResponse().setBody("OK\n");
} else if (url.encodedPath().startsWith("/api/v1/")) {
return queryV1(url);
} else if (url.encodedPath().startsWith("/api/v2/")) {
try {
return queryV2(url);
} catch (IOException e) {
throw Platform.get().uncheckedIOException(e);
}
}
} else if (request.getMethod().equals("POST")) {
String type = request.getHeader("Content-Type");
if (url.encodedPath().equals("/api/v1/spans")) {
SpanDecoder decoder = type != null && type.contains("/x-thrift")
? SpanDecoder.THRIFT_DECODER
: SpanDecoder.JSON_DECODER;
return acceptSpans(request, decoder);
} else if (url.encodedPath().equals("/api/v2/spans")) {
SpanDecoder decoder = type != null && type.contains("/x-protobuf")
? PROTO3_DECODER
: JSON2_DECODER;
return acceptSpans(request, decoder);
}
} else { // unsupported method
return new MockResponse().setResponseCode(405);
}
return new MockResponse().setResponseCode(404);
}
MockResponse queryV1(HttpUrl url) {
if (url.encodedPath().equals("/api/v1/services")) {
return jsonResponse(Codec.JSON.writeStrings(store.getServiceNames()));
} else if (url.encodedPath().equals("/api/v1/spans")) {
String serviceName = url.queryParameter("serviceName");
return jsonResponse(Codec.JSON.writeStrings(store.getSpanNames(serviceName)));
} else if (url.encodedPath().equals("/api/v1/dependencies")) {
Long endTs = maybeLong(url.queryParameter("endTs"));
Long lookback = maybeLong(url.queryParameter("lookback"));
List result = store.getDependencies(endTs, lookback);
return jsonResponse(Codec.JSON.writeDependencyLinks(result));
} else if (url.encodedPath().equals("/api/v1/traces")) {
QueryRequest queryRequest = toQueryRequest(url);
return jsonResponse(Codec.JSON.writeTraces(store.getTraces(queryRequest)));
} else if (url.encodedPath().startsWith("/api/v1/trace/")) {
String traceIdHex = url.encodedPath().replace("/api/v1/trace/", "");
long traceIdHigh = traceIdHex.length() == 32 ? lowerHexToUnsignedLong(traceIdHex, 0) : 0L;
long traceIdLow = lowerHexToUnsignedLong(traceIdHex);
List trace = url.queryParameterNames().contains("raw")
? store.getRawTrace(traceIdHigh, traceIdLow)
: store.getTrace(traceIdHigh, traceIdLow);
if (trace != null) return jsonResponse(Codec.JSON.writeSpans(trace));
}
return new MockResponse().setResponseCode(404);
}
MockResponse queryV2(HttpUrl url) throws IOException {
if (url.encodedPath().equals("/api/v2/services")) {
return jsonResponse(Codec.JSON.writeStrings(store2.getServiceNames().execute()));
} else if (url.encodedPath().equals("/api/v2/spans")) {
String serviceName = url.queryParameter("serviceName");
return jsonResponse(Codec.JSON.writeStrings(store2.getSpanNames(serviceName).execute()));
} else if (url.encodedPath().equals("/api/v2/dependencies")) {
Long endTs = maybeLong(url.queryParameter("endTs"));
Long lookback = maybeLong(url.queryParameter("lookback"));
List result = store2.getDependencies(
endTs != null ? endTs : System.currentTimeMillis(),
lookback != null ? lookback : DEFAULT_LOOKBACK
).execute();
return jsonResponse(DependencyLinkBytesEncoder.JSON_V1.encodeList(result));
} else if (url.encodedPath().equals("/api/v2/traces")) {
List> traces = store2.getTraces(toQueryRequest2(url)).execute();
return jsonResponse(writeTraces(SpanBytesEncoder.JSON_V2, traces));
} else if (url.encodedPath().startsWith("/api/v2/trace/")) {
String traceIdHex = url.encodedPath().replace("/api/v2/trace/", "");
List trace = store2.getTrace(normalizeTraceId(traceIdHex)).execute();
if (!trace.isEmpty()) return jsonResponse(SpanBytesEncoder.JSON_V2.encodeList(trace));
}
return new MockResponse().setResponseCode(404);
}
// This is inlined here as there isn't enough re-use to warrant it being in the zipkin2 library
static byte[] writeTraces(SpanBytesEncoder codec, List> traces) {
// Get the encoded size of the nested list so that we don't need to grow the buffer
int length = traces.size();
int sizeInBytes = 2; // []
if (length > 1) sizeInBytes += length - 1; // comma to join elements
for (int i = 0; i < length; i++) {
List spans = traces.get(i);
int jLength = spans.size();
sizeInBytes += 2; // []
if (jLength > 1) sizeInBytes += jLength - 1; // comma to join elements
for (int j = 0; j < jLength; j++) {
sizeInBytes += codec.sizeInBytes(spans.get(j));
}
}
byte[] out = new byte[sizeInBytes];
int pos = 0;
out[pos++] = '['; // start list of traces
for (int i = 0; i < length; i++) {
pos += codec.encodeList(traces.get(i), out, pos);
if (i + 1 < length) out[pos++] = ',';
}
out[pos] = ']'; // stop list of traces
return out;
}
MockResponse acceptSpans(RecordedRequest request, SpanDecoder decoder) {
metrics.incrementMessages();
byte[] body = request.getBody().readByteArray();
String encoding = request.getHeader("Content-Encoding");
if (encoding != null && encoding.contains("gzip")) {
try {
Buffer result = new Buffer();
GzipSource source = new GzipSource(new Buffer().write(body));
while (source.read(result, Integer.MAX_VALUE) != -1) ;
body = result.readByteArray();
} catch (IOException e) {
metrics.incrementMessagesDropped();
return new MockResponse().setResponseCode(400).setBody("Cannot gunzip spans");
}
}
final MockResponse result = new MockResponse();
consumer.acceptSpans(body, decoder, new Callback() {
@Override public void onSuccess(@Nullable Void value) {
result.setResponseCode(202);
}
@Override public void onError(Throwable t) {
String message = t.getMessage();
result.setBody(message).setResponseCode(message.startsWith("Cannot store") ? 500 : 400);
}
});
return result;
}
static QueryRequest toQueryRequest(HttpUrl url) {
return QueryRequest.builder().serviceName(url.queryParameter("serviceName"))
.spanName(url.queryParameter("spanName"))
.parseAnnotationQuery(url.queryParameter("annotationQuery"))
.minDuration(maybeLong(url.queryParameter("minDuration")))
.maxDuration(maybeLong(url.queryParameter("maxDuration")))
.endTs(maybeLong(url.queryParameter("endTs")))
.lookback(maybeLong(url.queryParameter("lookback")))
.limit(maybeInteger(url.queryParameter("limit"))).build();
}
static zipkin2.storage.QueryRequest toQueryRequest2(HttpUrl url) {
Long endTs = maybeLong(url.queryParameter("endTs"));
Long lookback = maybeLong(url.queryParameter("lookback"));
Integer limit = maybeInteger(url.queryParameter("limit"));
return zipkin2.storage.QueryRequest.newBuilder()
.serviceName(url.queryParameter("serviceName"))
.spanName(url.queryParameter("spanName"))
.parseAnnotationQuery(url.queryParameter("annotationQuery"))
.minDuration(maybeLong(url.queryParameter("minDuration")))
.maxDuration(maybeLong(url.queryParameter("maxDuration")))
.endTs(endTs != null ? endTs : System.currentTimeMillis())
.lookback(lookback != null ? lookback : DEFAULT_LOOKBACK)
.limit(limit != null ? limit : 10).build();
}
static @Nullable Long maybeLong(@Nullable String input) {
return input != null ? Long.valueOf(input) : null;
}
static @Nullable Integer maybeInteger(@Nullable String input) {
return input != null ? Integer.valueOf(input) : null;
}
static MockResponse jsonResponse(byte[] content) {
return new MockResponse()
.addHeader("Content-Type", "application/json")
.setBody(new Buffer().write(content));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy