blob: 56f6201e47719c5dde7d00a571b7e9ae8fca72c7 [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.core;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
import java.io.BufferedWriter;
import java.io.Writer;
import java.nio.charset.StandardCharsets;
import java.util.Properties;
import org.apache.commons.io.FileUtils;
import org.apache.solr.SolrTestCaseJ4;
import org.junit.Test;
public class TestCorePropertiesReload extends SolrTestCaseJ4 {
private final File solrHomeDirectory = createTempDir().toFile();
public void setMeUp() throws Exception {
FileUtils.copyDirectory(new File(TEST_HOME()), solrHomeDirectory);
Properties props = new Properties();
props.setProperty("test", "Before reload");
writeProperties(props);
initCore("solrconfig.xml", "schema.xml", solrHomeDirectory.getAbsolutePath());
}
@Test
public void testPropertiesReload() throws Exception {
setMeUp();
SolrCore core = h.getCore();
CoreDescriptor coreDescriptor = core.getCoreDescriptor();
String testProp = coreDescriptor.getCoreProperty("test", null);
assertTrue(testProp.equals("Before reload"));
//Re-write the properties file
Properties props = new Properties();
props.setProperty("test", "After reload");
writeProperties(props);
h.reload();
core = h.getCore();
coreDescriptor = core.getCoreDescriptor();
testProp = coreDescriptor.getCoreProperty("test", null);
assertTrue(testProp.equals("After reload"));
}
private void writeProperties(Properties props) throws Exception {
Writer out = null;
try {
File confDir = new File(new File(solrHomeDirectory, "collection1"), "conf");
out = new BufferedWriter(new OutputStreamWriter(
new FileOutputStream(new File(confDir, "solrcore.properties")), StandardCharsets.UTF_8));
props.store(out, "Reload Test");
} finally {
out.close();
}
}
}