/* * Licensed to ElasticSearch and Shay Banon 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.test.integration.indices.state; import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse; import org.elasticsearch.action.admin.cluster.state.ClusterStateResponse; import org.elasticsearch.action.admin.indices.status.IndicesStatusResponse; import org.elasticsearch.cluster.block.ClusterBlockException; import org.elasticsearch.cluster.metadata.IndexMetaData; import org.elasticsearch.cluster.routing.ShardRoutingState; import org.elasticsearch.common.logging.ESLogger; import org.elasticsearch.common.logging.Loggers; import org.elasticsearch.test.integration.AbstractNodesTests; import org.testng.annotations.AfterMethod; import org.testng.annotations.Test; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.nullValue; /** * */ public class SimpleIndexStateTests extends AbstractNodesTests { private final ESLogger logger = Loggers.getLogger(SimpleIndexStateTests.class); @AfterMethod public void closeNodes() { closeAllNodes(); } @Test public void testSimpleOpenClose() { logger.info("--> starting two nodes...."); startNode("node1"); startNode("node2"); logger.info("--> creating test index"); client("node1").admin().indices().prepareCreate("test").execute().actionGet(); logger.info("--> waiting for green status"); ClusterHealthResponse health = client("node1").admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForNodes("2").execute().actionGet(); assertThat(health.timedOut(), equalTo(false)); ClusterStateResponse stateResponse = client("node1").admin().cluster().prepareState().execute().actionGet(); assertThat(stateResponse.state().metaData().index("test").state(), equalTo(IndexMetaData.State.OPEN)); assertThat(stateResponse.state().routingTable().index("test").shards().size(), equalTo(5)); assertThat(stateResponse.state().routingTable().index("test").shardsWithState(ShardRoutingState.STARTED).size(), equalTo(10)); logger.info("--> indexing a simple document"); client("node1").prepareIndex("test", "type1", "1").setSource("field1", "value1").execute().actionGet(); logger.info("--> closing test index..."); client("node1").admin().indices().prepareClose("test").execute().actionGet(); stateResponse = client("node1").admin().cluster().prepareState().execute().actionGet(); assertThat(stateResponse.state().metaData().index("test").state(), equalTo(IndexMetaData.State.CLOSE)); assertThat(stateResponse.state().routingTable().index("test"), nullValue()); logger.info("--> testing indices status api..."); IndicesStatusResponse indicesStatusResponse = client("node1").admin().indices().prepareStatus().execute().actionGet(); logger.info("--> trying to index into a closed index ..."); try { client("node1").prepareIndex("test", "type1", "1").setSource("field1", "value1").execute().actionGet(); assert false; } catch (ClusterBlockException e) { // all is well } logger.info("--> opening index..."); client("node1").admin().indices().prepareOpen("test").execute().actionGet(); logger.info("--> waiting for green status"); health = client("node1").admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForNodes("2").execute().actionGet(); assertThat(health.timedOut(), equalTo(false)); stateResponse = client("node1").admin().cluster().prepareState().execute().actionGet(); assertThat(stateResponse.state().metaData().index("test").state(), equalTo(IndexMetaData.State.OPEN)); assertThat(stateResponse.state().routingTable().index("test").shards().size(), equalTo(5)); assertThat(stateResponse.state().routingTable().index("test").shardsWithState(ShardRoutingState.STARTED).size(), equalTo(10)); logger.info("--> indexing a simple document"); client("node1").prepareIndex("test", "type1", "1").setSource("field1", "value1").execute().actionGet(); } }