blob: a3d9f8819982b3cb9bd00a7516e74b7af30e1866 [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.geode.perftest;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.function.Predicate;
import java.util.stream.Stream;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
import org.junitpioneer.jupiter.SetSystemProperty;
import org.apache.geode.perftest.benchmarks.EmptyBenchmark;
import org.apache.geode.perftest.infrastructure.local.LocalInfrastructureFactory;
import org.apache.geode.perftest.jvms.RemoteJVMFactory;
import org.apache.geode.perftest.runner.DefaultTestRunner;
import org.apache.geode.perftest.yardstick.analysis.YardstickThroughputSensorParser;
public class TestRunnerIntegrationTest {
public static final String TEST_PROPERTY = "benchmark.system.all.prop3";
private TestRunner runner;
@TempDir
File outputDir;
@BeforeEach
void beforeEach() {
runner = new DefaultTestRunner(new RemoteJVMFactory(new LocalInfrastructureFactory()),
outputDir);
}
@AfterEach()
void clearProperty() {
System.clearProperty(TEST_PROPERTY);
}
@Test
public void runsBeforeWorkload() throws Exception {
runner.runTest(() -> {
TestConfig testConfig = new TestConfig();
testConfig.role("all", 1);
testConfig.before(context -> System.out.println("hello"), "all");
return testConfig;
});
}
public static class OutputDirectoryTest implements PerformanceTest {
@Override
public TestConfig configure() {
TestConfig testConfig = new TestConfig();
testConfig.role("all", 1);
testConfig.workload(new EmptyBenchmark(), "all");
return testConfig;
}
}
@Test
public void generatesOutputDirectoryPerBenchmark() throws Exception {
runner.runTest(new OutputDirectoryTest());
File expectedBenchmarkDir = new File(outputDir, OutputDirectoryTest.class.getName());
assertTrue(expectedBenchmarkDir.exists());
// Node directory name is the role + a number
File expectedNodeDir = new File(expectedBenchmarkDir, "all-0");
assertTrue(expectedNodeDir.exists());
// We expect the node directory to have benchmark results
Stream<Path> outputFiles = Files.walk(expectedNodeDir.toPath())
.filter(nameMatches(YardstickThroughputSensorParser.sensorOutputFile));
assertEquals(1, outputFiles.count());
}
@Test
@SetSystemProperty(key = TEST_PROPERTY, value = "p3")
public void configuresJVMOptions() throws Exception {
runner.runTest(() -> {
TestConfig testConfig = new TestConfig();
testConfig.role("all", 1);
testConfig.jvmArgs("all", "-Dprop1=true", "-Dprop2=5");
testConfig.before(context -> {
assertTrue(Boolean.getBoolean("prop1"),
"Expecting system property to be set in launched JVM, but it was not present.");
assertEquals(5, Integer.getInteger("prop2").intValue(),
"Expecting system property to be set in launched JVM, but it was not present.");
assertThat(System.getProperty("prop3")).isEqualTo("p3");
}, "all");
return testConfig;
});
}
private Predicate<Path> nameMatches(String sensorOutputFile) {
return path -> path.toString().contains(sensorOutputFile);
}
}