|
@@ -1,138 +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.index.mapper;
|
|
|
-
|
|
|
-import org.elasticsearch.action.ActionListener;
|
|
|
-import org.elasticsearch.action.bulk.BulkItemResponse;
|
|
|
-import org.elasticsearch.action.bulk.BulkRequest;
|
|
|
-import org.elasticsearch.action.bulk.BulkResponse;
|
|
|
-import org.elasticsearch.action.bulk.TransportBulkAction;
|
|
|
-import org.elasticsearch.action.bulk.TransportShardBulkAction;
|
|
|
-import org.elasticsearch.action.index.IndexRequest;
|
|
|
-import org.elasticsearch.action.support.ActionFilters;
|
|
|
-import org.elasticsearch.action.support.AutoCreateIndex;
|
|
|
-import org.elasticsearch.action.update.UpdateHelper;
|
|
|
-import org.elasticsearch.client.Requests;
|
|
|
-import org.elasticsearch.cluster.action.shard.ShardStateAction;
|
|
|
-import org.elasticsearch.cluster.metadata.IndexNameExpressionResolver;
|
|
|
-import org.elasticsearch.cluster.service.ClusterService;
|
|
|
-import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
|
|
|
-import org.elasticsearch.common.network.NetworkService;
|
|
|
-import org.elasticsearch.common.settings.ClusterSettings;
|
|
|
-import org.elasticsearch.common.settings.Settings;
|
|
|
-import org.elasticsearch.common.util.BigArrays;
|
|
|
-import org.elasticsearch.index.IndexNotFoundException;
|
|
|
-import org.elasticsearch.indices.IndicesService;
|
|
|
-import org.elasticsearch.indices.breaker.NoneCircuitBreakerService;
|
|
|
-import org.elasticsearch.test.ESSingleNodeTestCase;
|
|
|
-import org.elasticsearch.threadpool.TestThreadPool;
|
|
|
-import org.elasticsearch.threadpool.ThreadPool;
|
|
|
-import org.elasticsearch.transport.MockTcpTransport;
|
|
|
-import org.elasticsearch.transport.Transport;
|
|
|
-import org.elasticsearch.transport.TransportService;
|
|
|
-import org.junit.After;
|
|
|
-import org.junit.AfterClass;
|
|
|
-import org.junit.BeforeClass;
|
|
|
-
|
|
|
-import java.util.Collections;
|
|
|
-import java.util.concurrent.TimeUnit;
|
|
|
-import java.util.concurrent.atomic.AtomicBoolean;
|
|
|
-
|
|
|
-import static org.elasticsearch.test.ClusterServiceUtils.createClusterService;
|
|
|
-import static org.hamcrest.CoreMatchers.instanceOf;
|
|
|
-
|
|
|
-public class DynamicMappingDisabledTests extends ESSingleNodeTestCase {
|
|
|
-
|
|
|
- private static ThreadPool threadPool;
|
|
|
- private ClusterService clusterService;
|
|
|
- private TransportService transportService;
|
|
|
- private TransportBulkAction transportBulkAction;
|
|
|
-
|
|
|
- @BeforeClass
|
|
|
- public static void createThreadPool() {
|
|
|
- threadPool = new TestThreadPool("DynamicMappingDisabledTests");
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void setUp() throws Exception {
|
|
|
- super.setUp();
|
|
|
- Settings settings = Settings.builder()
|
|
|
- .put(MapperService.INDEX_MAPPER_DYNAMIC_SETTING.getKey(), false)
|
|
|
- .build();
|
|
|
- clusterService = createClusterService(threadPool);
|
|
|
- Transport transport = new MockTcpTransport(settings, threadPool, BigArrays.NON_RECYCLING_INSTANCE,
|
|
|
- new NoneCircuitBreakerService(), new NamedWriteableRegistry(Collections.emptyList()),
|
|
|
- new NetworkService(Collections.emptyList()));
|
|
|
- transportService = new TransportService(clusterService.getSettings(), transport, threadPool,
|
|
|
- TransportService.NOOP_TRANSPORT_INTERCEPTOR, x -> clusterService.localNode(), null);
|
|
|
- IndicesService indicesService = getInstanceFromNode(IndicesService.class);
|
|
|
- ShardStateAction shardStateAction = new ShardStateAction(settings, clusterService, transportService, null, null, threadPool);
|
|
|
- ActionFilters actionFilters = new ActionFilters(Collections.emptySet());
|
|
|
- IndexNameExpressionResolver indexNameExpressionResolver = new IndexNameExpressionResolver(settings);
|
|
|
- AutoCreateIndex autoCreateIndex = new AutoCreateIndex(settings, new ClusterSettings(settings,
|
|
|
- ClusterSettings.BUILT_IN_CLUSTER_SETTINGS), indexNameExpressionResolver);
|
|
|
- UpdateHelper updateHelper = new UpdateHelper(settings, null);
|
|
|
- TransportShardBulkAction shardBulkAction = new TransportShardBulkAction(settings, transportService, clusterService,
|
|
|
- indicesService, threadPool, shardStateAction, null, updateHelper, actionFilters, indexNameExpressionResolver);
|
|
|
- transportBulkAction = new TransportBulkAction(settings, threadPool, transportService, clusterService,
|
|
|
- null, shardBulkAction, null, actionFilters, indexNameExpressionResolver, autoCreateIndex, System::currentTimeMillis);
|
|
|
- }
|
|
|
-
|
|
|
- @After
|
|
|
- public void tearDown() throws Exception {
|
|
|
- super.tearDown();
|
|
|
- clusterService.close();
|
|
|
- transportService.close();
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- @AfterClass
|
|
|
- public static void destroyThreadPool() {
|
|
|
- ThreadPool.terminate(threadPool, 30, TimeUnit.SECONDS);
|
|
|
- // since static must set to null to be eligible for collection
|
|
|
- threadPool = null;
|
|
|
- }
|
|
|
-
|
|
|
- public void testDynamicDisabled() {
|
|
|
- IndexRequest request = new IndexRequest("index", "type", "1");
|
|
|
- request.source(Requests.INDEX_CONTENT_TYPE, "foo", 3);
|
|
|
- BulkRequest bulkRequest = new BulkRequest();
|
|
|
- bulkRequest.add(request);
|
|
|
- final AtomicBoolean gotResponse = new AtomicBoolean();
|
|
|
-
|
|
|
- transportBulkAction.execute(bulkRequest, new ActionListener<BulkResponse>() {
|
|
|
- @Override
|
|
|
- public void onResponse(BulkResponse bulkResponse) {
|
|
|
- BulkItemResponse itemResponse = bulkResponse.getItems()[0];
|
|
|
- assertTrue(itemResponse.isFailed());
|
|
|
- assertThat(itemResponse.getFailure().getCause(), instanceOf(IndexNotFoundException.class));
|
|
|
- assertEquals("no such index and [index.mapper.dynamic] is [false]", itemResponse.getFailure().getCause().getMessage());
|
|
|
- gotResponse.set(true);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void onFailure(Exception e) {
|
|
|
- fail("unexpected failure in bulk action, expected failed bulk item");
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- assertTrue(gotResponse.get());
|
|
|
- }
|
|
|
-}
|