blob: db4487bb2d2038cb2e2e1f07a5e5caef02b723ee [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.jmeter.resources;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.File;
import java.io.FileInputStream;
import java.util.Enumeration;
import java.util.Properties;
import org.apache.jmeter.junit.JMeterTestCase;
import org.apache.jmeter.util.JMeterUtils;
import org.junit.jupiter.api.Test;
public class TestPropertiesFiles extends JMeterTestCase {
@Test
public void testUserProperties() throws Exception {
Properties props = loadProps(new File(JMeterUtils.getJMeterBinDir(), "user.properties"));
assertTrue(props.isEmpty(), "user.properties should not contain any enabled properties");
}
// The keys in jmeter.properties and reportgenerator.properties should be distinct
@Test
public void testDefaultProperties() throws Exception {
Properties jmeter = loadProps(new File(JMeterUtils.getJMeterBinDir(), "jmeter.properties"));
Properties report = loadProps(new File(JMeterUtils.getJMeterBinDir(), "reportgenerator.properties"));
Enumeration<?> jmeterNames = jmeter.propertyNames();
while (jmeterNames.hasMoreElements()) {
final Object key = jmeterNames.nextElement();
assertFalse(report.containsKey(key), "reportgenerator should not contain the jmeter key " + key);
}
Enumeration<?> reportNames = report.propertyNames();
while (reportNames.hasMoreElements()) {
final Object key = reportNames.nextElement();
assertFalse(jmeter.containsKey(key), "jmeter should not contain the reportgenerator key " + key);
}
}
private static Properties loadProps(File file) throws Exception {
Properties props = new Properties();
try (FileInputStream inStream = new FileInputStream(file)) {
props.load(inStream);
}
return props;
}
}