use of de.dagere.peass.execution.utils.EnvironmentVariables in project peass by DaGeRe.
the class CauseTester method main.
public static void main(final String[] args) throws IOException, XmlPullParserException, InterruptedException, JAXBException, ClassNotFoundException {
final File projectFolder = new File("../../projekte/commons-fileupload");
final String version = "4ed6e923cb2033272fcb993978d69e325990a5aa";
final TestCase test = new TestCase("org.apache.commons.fileupload.ServletFileUploadTest", "testFoldedHeaders");
final MeasurementConfig config = new MeasurementConfig(15 * 1000 * 60, 15, true, version, version + "~1");
config.setUseKieker(true);
final CauseSearcherConfig causeConfig = new CauseSearcherConfig(test, false, 0.01, false, false, RCAStrategy.COMPLETE, 1);
final CauseTester manager = new CauseTester(new CauseSearchFolders(projectFolder), config, causeConfig, new EnvironmentVariables());
final CallTreeNode node = new CallTreeNode("FileUploadTestCase#parseUpload", "protected java.util.List org.apache.commons.fileupload.FileUploadTestCase.parseUpload(byte[],java.lang.String)", "protected java.util.List org.apache.commons.fileupload.FileUploadTestCase.parseUpload(byte[],java.lang.String)", config);
node.setOtherVersionNode(node);
final Set<CallTreeNode> nodes = new HashSet<>();
nodes.add(node);
manager.setIncludedMethods(nodes);
manager.runOnce(test, version, 0, new File("log"));
// manager.evaluate(test);
}
use of de.dagere.peass.execution.utils.EnvironmentVariables in project peass by DaGeRe.
the class LevelCauseSearchExperimentalStarter method main.
public static void main(final String[] args) throws IOException, XmlPullParserException, InterruptedException, IllegalStateException, AnalysisConfigurationException, ViewNotFoundException, JAXBException {
final File projectFolder = new File("../../projekte/commons-fileupload");
final String version = "4ed6e923cb2033272fcb993978d69e325990a5aa";
final TestCase test = new TestCase("org.apache.commons.fileupload.ServletFileUploadTest", "testFoldedHeaders");
final MeasurementConfig measurementConfiguration = new MeasurementConfig(15 * 1000 * 60, 5, true, version, version + "~1");
measurementConfiguration.setUseKieker(true);
final CauseSearcherConfig causeSearcherConfig = new CauseSearcherConfig(test, false, 0.1, false, false, RCAStrategy.COMPLETE, 1);
final CauseSearchFolders folders2 = new CauseSearchFolders(projectFolder);
final BothTreeReader reader = new BothTreeReader(causeSearcherConfig, measurementConfiguration, folders2, new EnvironmentVariables());
final CauseTester measurer = new CauseTester(folders2, measurementConfiguration, causeSearcherConfig, new EnvironmentVariables());
final LevelCauseSearcher searcher = new LevelCauseSearcher(reader, causeSearcherConfig, measurer, measurementConfiguration, folders2, new EnvironmentVariables());
reader.readTrees();
List<CallTreeNode> predecessor = Arrays.asList(new CallTreeNode[] { reader.getRootPredecessor() });
List<CallTreeNode> current = Arrays.asList(new CallTreeNode[] { reader.getRootVersion() });
int level = 0;
boolean hasChilds = true;
while (hasChilds) {
level++;
LOG.info("Level: " + level + " " + predecessor.get(0).getKiekerPattern());
boolean foundNodeLevel = false;
final List<CallTreeNode> predecessorNew = new LinkedList<>();
final List<CallTreeNode> currentNew = new LinkedList<>();
final Iterator<CallTreeNode> currentIterator = current.iterator();
for (final Iterator<CallTreeNode> preIterator = predecessor.iterator(); preIterator.hasNext() && currentIterator.hasNext(); ) {
final CallTreeNode predecessorChild = preIterator.next();
final CallTreeNode currentChild = currentIterator.next();
predecessorNew.addAll(predecessorChild.getChildren());
currentNew.addAll(currentChild.getChildren());
final String searchedCall = "public static long org.apache.commons.fileupload.util.Streams.copy(java.io.InputStream,java.io.OutputStream,boolean,byte[])";
if (predecessorChild.getKiekerPattern().equals(searchedCall) && currentChild.getKiekerPattern().equals(searchedCall)) {
foundNodeLevel = true;
}
if (predecessorChild.getKiekerPattern().equals(searchedCall) != currentChild.getKiekerPattern().equals(searchedCall)) {
LOG.info(predecessorChild.getKiekerPattern());
LOG.info(currentChild.getKiekerPattern());
throw new RuntimeException("Tree structure differs above searched node!");
}
}
if (foundNodeLevel) {
LOG.info("Found!");
searcher.isLevelDifferent(predecessorNew, currentNew);
}
predecessor = predecessorNew;
current = currentNew;
if (predecessor.isEmpty()) {
hasChilds = false;
}
}
}
use of de.dagere.peass.execution.utils.EnvironmentVariables in project peass by DaGeRe.
the class TestPeassFilter method testExecution.
@Test
public void testExecution() throws ViewNotFoundException, IOException, XmlPullParserException, InterruptedException, ClassNotFoundException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException {
Assume.assumeFalse(EnvironmentVariables.isWindows());
PeassFolders folders = new PeassFolders(CURRENT);
final KiekerResultManager manager = new KiekerResultManager(folders, new ExecutionConfig(5), new KiekerConfig(true), new EnvironmentVariables());
final TestSet testset = new TestSet();
final TestCase testcase = new TestCase("defaultpackage.TestMe", "testMe", "");
testset.addTest(testcase);
final ModuleClassMapping mapping = new ModuleClassMapping(manager.getExecutor());
final List<TraceElement> referenceTrace = regenerateTrace(manager, testset, testcase, mapping, 0);
for (int i = 1; i <= 3; i++) {
final List<TraceElement> compareTrace = regenerateTrace(manager, testset, testcase, mapping, i);
checkRegeneratedTrace(referenceTrace, compareTrace);
}
}
use of de.dagere.peass.execution.utils.EnvironmentVariables in project peass by DaGeRe.
the class RootCauseAnalysis method call.
@Override
public Void call() throws Exception {
if (testName == null) {
throw new RuntimeException("Test needs to be defined!");
}
initVersionProcessor();
if (version == null) {
version = executionData.getVersions().keySet().iterator().next();
LOG.info("Version was not defined, using " + version);
}
final TestCase test = new TestCase(testName);
final VersionStaticSelection versionInfo = staticTestSelection.getVersions().get(version);
boolean found = versionInfo.getTests().getTests().contains(test);
if (!found) {
LOG.error("Test " + test + " is not contained in regression test selection result, therefore it is unlikely to have a performance change!");
}
final String predecessor = versionInfo.getPredecessor();
LOG.debug("Timeout in minutes: {}", executionMixin.getTimeout());
final MeasurementConfig measurementConfiguration = getConfiguration(predecessor);
final CauseSearcherConfig causeSearcherConfig = new CauseSearcherConfig(test, causeSearchConfigMixin);
if (kiekerConfigMixin.isUseAggregation() && measurementConfiguration.getKiekerConfig().getRecord() == AllowedKiekerRecord.OPERATIONEXECUTION) {
throw new RuntimeException("Aggregation and OperationExecutionRecord can not be combined!");
}
final CauseSearchFolders alternateFolders = new CauseSearchFolders(folders.getProjectFolder());
final BothTreeReader reader = new BothTreeReader(causeSearcherConfig, measurementConfiguration, alternateFolders, new EnvironmentVariables());
final CauseSearcher tester = getCauseSeacher(measurementConfiguration, causeSearcherConfig, alternateFolders, reader);
tester.search();
return null;
}
use of de.dagere.peass.execution.utils.EnvironmentVariables in project peass by DaGeRe.
the class TestGenerateDependencies method testGenerateDependencies.
@Test
public void testGenerateDependencies() throws IOException, InterruptedException, XmlPullParserException, ParseException, ViewNotFoundException, ClassNotFoundException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException {
DependencyDetectorTestUtil.init(TraceGettingIT.BASIC);
final FakeFileIterator iterator = new FakeFileIterator(TestConstants.CURRENT_FOLDER, Arrays.asList(TraceGettingIT.REPETITION));
ResultsFolders resultsFolders = new ResultsFolders(TraceGettingIT.VIEW_IT_PROJECTFOLDER, "test");
final DependencyReader reader = new DependencyReader(DependencyTestConstants.DEFAULT_CONFIG_NO_VIEWS, new PeassFolders(TestConstants.CURRENT_FOLDER), resultsFolders, "", iterator, VersionKeeper.INSTANCE, new ExecutionConfig(5), new KiekerConfig(true), new EnvironmentVariables());
final boolean success = reader.readInitialVersion();
Assert.assertTrue(success);
iterator.goToNextCommit();
final ChangeManager manager = Mockito.mock(ChangeManager.class);
final HashMap<ChangedEntity, ClazzChangeData> value = new HashMap<>();
ChangedEntity testMeEntity = new ChangedEntity("viewtest.TestMe", "");
value.put(testMeEntity, new ClazzChangeData(testMeEntity, false));
Mockito.when(manager.getChanges(Mockito.any())).thenReturn(value);
final int tests = reader.analyseVersion(manager);
LOG.debug(Constants.OBJECTMAPPER.writeValueAsString(reader.getDependencies()));
Assert.assertEquals(1, tests);
}
Aggregations