/** * Copyright 2015-2017 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.storage.elasticsearch.http.internal.client; import java.io.IOException; import okhttp3.OkHttpClient; import okhttp3.mockwebserver.MockResponse; import okhttp3.mockwebserver.MockWebServer; import org.junit.After; import org.junit.Rule; import org.junit.Test; import static java.util.Arrays.asList; import static org.assertj.core.api.Assertions.assertThat; public class SearchCallFactoryTest { @Rule public MockWebServer es = new MockWebServer(); SearchCallFactory client = new SearchCallFactory(new HttpCall.Factory(new OkHttpClient(), es.url(""))); @After public void close() throws IOException { client.http.ok.dispatcher().executorService().shutdownNow(); } /** Declaring queries alphabetically helps simplify amazon signature logic */ @Test public void lenientSearchOrdersQueryAlphabetically() throws Exception { es.enqueue(new MockResponse()); assertThat(client.lenientSearch(asList("zipkin-2016-10-01"), "span") .queryParameterNames()) .containsExactly("allow_no_indices", "expand_wildcards", "ignore_unavailable"); } }