2010-09-16 14:35:07 +02:00
|
|
|
/*
|
2011-12-06 02:42:25 +02:00
|
|
|
* Licensed to ElasticSearch and Shay Banon under one
|
2010-09-16 14:35:07 +02:00
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
2011-12-06 02:42:25 +02:00
|
|
|
* regarding copyright ownership. ElasticSearch licenses this
|
2010-09-16 14:35:07 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-09-11 12:49:49 -05:00
|
|
|
package org.elasticsearch.indices.mapping;
|
2010-09-16 14:35:07 +02:00
|
|
|
|
2013-06-12 21:02:33 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
2010-09-16 14:35:07 +02:00
|
|
|
import org.elasticsearch.action.count.CountResponse;
|
|
|
|
import org.elasticsearch.cluster.ClusterState;
|
2013-09-17 22:22:48 +02:00
|
|
|
import org.elasticsearch.test.AbstractIntegrationTest;
|
2013-07-19 14:38:59 +02:00
|
|
|
import org.junit.Test;
|
2010-09-16 14:35:07 +02:00
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
|
|
|
|
import static org.elasticsearch.index.query.QueryBuilders.matchAllQuery;
|
2013-06-12 21:02:33 +02:00
|
|
|
import static org.hamcrest.Matchers.*;
|
2010-09-16 14:35:07 +02:00
|
|
|
|
|
|
|
/**
|
2011-12-06 02:42:25 +02:00
|
|
|
*
|
2010-09-16 14:35:07 +02:00
|
|
|
*/
|
2013-09-17 22:22:48 +02:00
|
|
|
public class SimpleDeleteMappingTests extends AbstractIntegrationTest {
|
2010-09-16 14:35:07 +02:00
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
@Test
|
|
|
|
public void simpleDeleteMapping() throws Exception {
|
2010-09-16 14:35:07 +02:00
|
|
|
for (int i = 0; i < 10; i++) {
|
2013-04-05 08:59:04 +02:00
|
|
|
client().prepareIndex("test", "type1", Integer.toString(i)).setSource(jsonBuilder().startObject()
|
2010-09-16 14:35:07 +02:00
|
|
|
.field("value", "test" + i)
|
|
|
|
.endObject()).execute().actionGet();
|
|
|
|
}
|
|
|
|
|
2013-09-18 14:15:56 +02:00
|
|
|
ensureGreen();
|
2013-04-05 08:59:04 +02:00
|
|
|
client().admin().indices().prepareRefresh().execute().actionGet();
|
2010-09-16 14:35:07 +02:00
|
|
|
|
|
|
|
for (int i = 0; i < 10; i++) {
|
2013-04-05 08:59:04 +02:00
|
|
|
CountResponse countResponse = client().prepareCount().setQuery(matchAllQuery()).execute().actionGet();
|
2013-02-18 16:50:49 +01:00
|
|
|
assertThat(countResponse.getCount(), equalTo(10l));
|
2010-09-16 14:35:07 +02:00
|
|
|
}
|
|
|
|
|
2013-04-05 08:59:04 +02:00
|
|
|
ClusterState clusterState = client().admin().cluster().prepareState().execute().actionGet().getState();
|
2013-09-26 14:31:07 +02:00
|
|
|
for (int i = 0; i < 10 && !clusterState.metaData().index("test").mappings().containsKey("type1"); i++, Thread.sleep(100)) ;
|
|
|
|
|
|
|
|
assertThat(clusterState.metaData().index("test").mappings(), hasKey("type1"));
|
|
|
|
|
2013-06-12 21:02:33 +02:00
|
|
|
GetMappingsResponse mappingsResponse = client().admin().indices().prepareGetMappings("test").setTypes("type1").execute().actionGet();
|
|
|
|
assertThat(mappingsResponse.getMappings().get("test").get("type1"), notNullValue());
|
2010-09-16 14:35:07 +02:00
|
|
|
|
2013-04-05 08:59:04 +02:00
|
|
|
client().admin().indices().prepareDeleteMapping().setType("type1").execute().actionGet();
|
2010-09-16 14:35:07 +02:00
|
|
|
Thread.sleep(500); // for now, we don't have ack logic, so just wait
|
|
|
|
|
|
|
|
for (int i = 0; i < 10; i++) {
|
2013-04-05 08:59:04 +02:00
|
|
|
CountResponse countResponse = client().prepareCount().setQuery(matchAllQuery()).execute().actionGet();
|
2013-02-18 16:50:49 +01:00
|
|
|
assertThat(countResponse.getCount(), equalTo(0l));
|
2010-09-16 14:35:07 +02:00
|
|
|
}
|
|
|
|
|
2013-04-05 08:59:04 +02:00
|
|
|
clusterState = client().admin().cluster().prepareState().execute().actionGet().getState();
|
2010-09-16 14:35:07 +02:00
|
|
|
assertThat(clusterState.metaData().index("test").mappings().containsKey("type1"), equalTo(false));
|
2013-06-12 21:02:33 +02:00
|
|
|
mappingsResponse = client().admin().indices().prepareGetMappings("test").setTypes("type1").execute().actionGet();
|
|
|
|
assertThat(mappingsResponse.getMappings().get("test"), nullValue());
|
2010-09-16 14:35:07 +02:00
|
|
|
}
|
|
|
|
}
|