blob: d8252711057bea9a6a27aa753952b917c25b40ef [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.apache.solr.cloud;
import java.util.Collections;
import java.util.Map;
import org.apache.solr.client.solrj.request.CollectionAdminRequest;
import org.apache.solr.client.solrj.response.RequestStatusState;
import org.apache.solr.common.cloud.ZkStateReader;
import org.apache.solr.common.util.Utils;
import org.apache.zookeeper.KeeperException;
import org.junit.BeforeClass;
import org.junit.Test;
public class OverseerModifyCollectionTest extends SolrCloudTestCase {
@BeforeClass
public static void setupCluster() throws Exception {
configureCluster(2)
.addConfig("conf1", configset("cloud-minimal"))
.addConfig("conf2", configset("cloud-minimal"))
.configure();
}
@Test
public void testModifyColl() throws Exception {
final String collName = "modifyColl";
CollectionAdminRequest.createCollection(collName, "conf1", 1, 2)
.process(cluster.getSolrClient());
// Modify configSet
RequestStatusState requestStatusState = CollectionAdminRequest.modifyCollection(collName,
Collections.singletonMap("collection.configName", "conf2"))
.processAndWait(cluster.getSolrClient(), DEFAULT_TIMEOUT);
assertEquals(requestStatusState, RequestStatusState.COMPLETED);
assertEquals("conf2", getConfigNameFromZk(collName));
//Try an invalid config name
Exception e = expectThrows(Exception.class, () -> {
CollectionAdminRequest.modifyCollection(collName,
Collections.singletonMap("collection.configName", "notARealConfigName")
).process(cluster.getSolrClient());
});
assertTrue(e.getMessage(), e.getMessage().contains("Can not find the specified config set"));
}
private String getConfigNameFromZk(String collName) throws KeeperException, InterruptedException {
byte[] b = zkClient().getData(ZkStateReader.getCollectionPathRoot(collName), null, null, false);
@SuppressWarnings({"rawtypes"})
Map confData = (Map) Utils.fromJSON(b);
return (String) confData.get(ZkController.CONFIGNAME_PROP);
}
}