All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zipkin2.storage.ITSearchEnabledFalse Maven / Gradle / Ivy

/*
 * Copyright 2015-2020 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 zipkin2.storage;

import org.junit.jupiter.api.Test;

import static org.assertj.core.api.Assertions.assertThat;
import static zipkin2.TestObjects.CLIENT_SPAN;
import static zipkin2.storage.ITSpanStore.requestBuilder;

/**
 * Base test for when {@link StorageComponent.Builder#searchEnabled(boolean) searchEnabled ==
 * false}.
 *
 * 

Subtypes should create a connection to a real backend, even if that backend is in-process. */ public abstract class ITSearchEnabledFalse extends ITStorage { @Override protected final void configureStorageForTest(StorageComponent.Builder storage) { storage.searchEnabled(false); } @Test protected void getTraces_indexDataReturnsNothing() throws Exception { accept(CLIENT_SPAN); assertThat(store().getTraces(requestBuilder() .build()).execute()).isEmpty(); assertThat(store().getTraces(requestBuilder() .serviceName(CLIENT_SPAN.localServiceName()) .build()).execute()).isEmpty(); assertThat(store().getTraces(requestBuilder() .spanName(CLIENT_SPAN.name()) .build()).execute()).isEmpty(); assertThat(store().getTraces(requestBuilder() .annotationQuery(CLIENT_SPAN.tags()) .build()).execute()).isEmpty(); assertThat(store().getTraces(requestBuilder() .minDuration(CLIENT_SPAN.duration()) .build()).execute()).isEmpty(); } @Test protected void getServiceNames_isEmpty() throws Exception { accept(CLIENT_SPAN); assertThat(names().getServiceNames().execute()).isEmpty(); } @Test protected void getRemoteServiceNames_isEmpty() throws Exception { accept(CLIENT_SPAN); assertThat(names().getRemoteServiceNames(CLIENT_SPAN.localServiceName()).execute()).isEmpty(); } @Test protected void getSpanNames_isEmpty() throws Exception { accept(CLIENT_SPAN); assertThat(names().getSpanNames(CLIENT_SPAN.localServiceName()).execute()).isEmpty(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy