|
|
@@ -1,104 +0,0 @@
|
|
|
-/*
|
|
|
- * Licensed to Elasticsearch under one or more contributor
|
|
|
- * license agreements. See the NOTICE file distributed with
|
|
|
- * this work for additional information regarding copyright
|
|
|
- * ownership. Elasticsearch licenses this file to you 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 org.elasticsearch.indices.template;
|
|
|
-
|
|
|
-import com.carrotsearch.randomizedtesting.LifecycleScope;
|
|
|
-import com.google.common.base.Charsets;
|
|
|
-
|
|
|
-import org.elasticsearch.action.admin.cluster.state.ClusterStateResponse;
|
|
|
-import org.elasticsearch.common.io.Streams;
|
|
|
-import org.elasticsearch.common.settings.ImmutableSettings;
|
|
|
-import org.elasticsearch.common.settings.Settings;
|
|
|
-import org.elasticsearch.test.ElasticsearchIntegrationTest;
|
|
|
-import org.elasticsearch.test.ElasticsearchIntegrationTest.ClusterScope;
|
|
|
-import org.junit.Test;
|
|
|
-
|
|
|
-import java.nio.charset.StandardCharsets;
|
|
|
-import java.nio.file.Files;
|
|
|
-import java.nio.file.Path;
|
|
|
-import java.util.HashSet;
|
|
|
-import java.util.Locale;
|
|
|
-import java.util.Set;
|
|
|
-
|
|
|
-import static org.elasticsearch.test.ElasticsearchIntegrationTest.*;
|
|
|
-import static org.hamcrest.Matchers.equalTo;
|
|
|
-import static org.hamcrest.Matchers.is;
|
|
|
-
|
|
|
-@ClusterScope(scope= Scope.TEST, numDataNodes =1)
|
|
|
-public class IndexTemplateFileLoadingTests extends ElasticsearchIntegrationTest {
|
|
|
-
|
|
|
- @Override
|
|
|
- protected Settings nodeSettings(int nodeOrdinal) {
|
|
|
- ImmutableSettings.Builder settingsBuilder = ImmutableSettings.settingsBuilder();
|
|
|
- settingsBuilder.put(super.nodeSettings(nodeOrdinal));
|
|
|
-
|
|
|
- try {
|
|
|
- Path directory = createTempDir();
|
|
|
- settingsBuilder.put("path.conf", directory.toAbsolutePath());
|
|
|
-
|
|
|
- Path templatesDir = directory.resolve("templates");
|
|
|
- Files.createDirectory(templatesDir);
|
|
|
-
|
|
|
- Path dst = templatesDir.resolve("template.json");
|
|
|
- String templatePath = "/org/elasticsearch/indices/template/template" + randomInt(5) + ".json";
|
|
|
- logger.info("Picking template path [{}]", templatePath);
|
|
|
- // random template, one uses the 'setting.index.number_of_shards', the other 'settings.number_of_shards'
|
|
|
- String template = Streams.copyToStringFromClasspath(templatePath);
|
|
|
- Files.write(dst, template.getBytes(StandardCharsets.UTF_8));
|
|
|
- } catch (Exception e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
- }
|
|
|
-
|
|
|
- return settingsBuilder.build();
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- protected int numberOfShards() {
|
|
|
- //number of shards won't be set through index settings, the one from the index templates needs to be used
|
|
|
- return -1;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- protected int numberOfReplicas() {
|
|
|
- //number of replicas won't be set through index settings, the one from the index templates needs to be used
|
|
|
- return -1;
|
|
|
- }
|
|
|
-
|
|
|
- @Test
|
|
|
- public void testThatLoadingTemplateFromFileWorks() throws Exception {
|
|
|
- final int iters = scaledRandomIntBetween(1, 5);
|
|
|
- Set<String> indices = new HashSet<>();
|
|
|
- for (int i = 0; i < iters; i++) {
|
|
|
- String indexName = "foo" + randomAsciiOfLengthBetween(0, 5).toLowerCase(Locale.ROOT);
|
|
|
- if (indices.contains(indexName)) {
|
|
|
- continue;
|
|
|
- }
|
|
|
- indices.add(indexName);
|
|
|
- createIndex(indexName);
|
|
|
- ensureYellow(); // ensuring yellow so the test fails faster if the template cannot be loaded
|
|
|
-
|
|
|
- ClusterStateResponse stateResponse = client().admin().cluster().prepareState().setIndices(indexName).get();
|
|
|
- assertThat(stateResponse.getState().getMetaData().indices().get(indexName).getNumberOfShards(), is(10));
|
|
|
- assertThat(stateResponse.getState().getMetaData().indices().get(indexName).getNumberOfReplicas(), is(0));
|
|
|
- assertThat(stateResponse.getState().getMetaData().indices().get(indexName).aliases().size(), equalTo(1));
|
|
|
- String aliasName = indexName + "-alias";
|
|
|
- assertThat(stateResponse.getState().getMetaData().indices().get(indexName).aliases().get(aliasName).alias(), equalTo(aliasName));
|
|
|
- }
|
|
|
- }
|
|
|
-}
|