summaryrefslogtreecommitdiff
path: root/core/src/test/java/org/elasticsearch/indices/template/IndexTemplateFilteringIT.java
blob: 8e0d5a882c3e62fcc714d375666b1213017dceaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * 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 org.elasticsearch.action.admin.indices.create.CreateIndexClusterStateUpdateRequest;
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
import org.elasticsearch.cluster.ClusterModule;
import org.elasticsearch.cluster.metadata.IndexTemplateFilter;
import org.elasticsearch.cluster.metadata.IndexTemplateMetaData;
import org.elasticsearch.cluster.metadata.MappingMetaData;
import org.elasticsearch.common.collect.ImmutableOpenMap;
import org.elasticsearch.plugins.Plugin;
import org.elasticsearch.test.ESIntegTestCase;
import org.elasticsearch.test.ESIntegTestCase.ClusterScope;
import org.elasticsearch.test.ESIntegTestCase.Scope;

import java.util.Collection;

import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertAcked;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.core.IsNull.notNullValue;

@ClusterScope(scope = Scope.SUITE)
public class IndexTemplateFilteringIT extends ESIntegTestCase {
    @Override
    protected Collection<Class<? extends Plugin>> nodePlugins() {
        return pluginList(TestPlugin.class);
    }

    public void testTemplateFiltering() throws Exception {
        client().admin().indices().preparePutTemplate("template1")
                .setTemplate("test*")
                .addMapping("type1", "field1", "type=string").get();

        client().admin().indices().preparePutTemplate("template2")
                .setTemplate("test*")
                .addMapping("type2", "field2", "type=string").get();

        client().admin().indices().preparePutTemplate("template3")
                .setTemplate("no_match")
                .addMapping("type3", "field3", "type=string").get();

        assertAcked(prepareCreate("test"));

        GetMappingsResponse response = client().admin().indices().prepareGetMappings("test").get();
        assertThat(response, notNullValue());
        ImmutableOpenMap<String, MappingMetaData> metadata = response.getMappings().get("test");
        assertThat(metadata.size(), is(1));
        assertThat(metadata.get("type2"), notNullValue());
    }

    public static class TestFilter implements IndexTemplateFilter {
        @Override
        public boolean apply(CreateIndexClusterStateUpdateRequest request, IndexTemplateMetaData template) {
            //make sure that no_match template is filtered out before the custom filters as it doesn't match the index name
            return (template.name().equals("template2") || template.name().equals("no_match"));
        }
    }

    public static class TestPlugin extends Plugin {
        @Override
        public String name() {
            return "test-plugin";
        }

        @Override
        public String description() {
            return "";
        }

        public void onModule(ClusterModule module) {
            module.registerIndexTemplateFilter(TestFilter.class);
        }
    }
}