com.liferay.jenkins.results.parser.test.clazz.group.ModulesSegmentTestClassGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.jenkins.results.parser
Show all versions of com.liferay.jenkins.results.parser
Liferay Jenkins Results Parser
The newest version!
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.jenkins.results.parser.test.clazz.group;
import com.liferay.jenkins.results.parser.JenkinsResultsParserUtil;
import com.liferay.jenkins.results.parser.test.clazz.TestClass;
import com.liferay.jenkins.results.parser.test.clazz.TestClassMethod;
import java.util.ArrayList;
import java.util.List;
import org.json.JSONObject;
/**
* @author Michael Hashimoto
*/
public class ModulesSegmentTestClassGroup extends SegmentTestClassGroup {
@Override
public String getTestCasePropertiesContent() {
StringBuilder sb = new StringBuilder();
sb.append(super.getTestCasePropertiesContent());
List axisIndexes = new ArrayList<>();
for (int axisIndex = 0; axisIndex < getAxisCount(); axisIndex++) {
axisIndexes.add(String.valueOf(axisIndex));
AxisTestClassGroup axisTestClassGroup = getAxisTestClassGroup(
axisIndex);
List testClassMethods = new ArrayList<>();
for (TestClass testClass : axisTestClassGroup.getTestClasses()) {
testClassMethods.addAll(testClass.getTestClassMethods());
}
sb.append("TEST_CLASS_GROUP_");
sb.append(axisIndex);
sb.append("=");
for (TestClassMethod testClassMethod : testClassMethods) {
sb.append(testClassMethod.getName());
sb.append(",");
}
if (!testClassMethods.isEmpty()) {
sb.setLength(sb.length() - 1);
}
sb.append("\n");
}
sb.append("TEST_CLASS_GROUPS=");
sb.append(JenkinsResultsParserUtil.join(" ", axisIndexes));
sb.append("\n");
return sb.toString();
}
protected ModulesSegmentTestClassGroup(
BatchTestClassGroup parentBatchTestClassGroup) {
super(parentBatchTestClassGroup);
}
protected ModulesSegmentTestClassGroup(
BatchTestClassGroup parentBatchTestClassGroup, JSONObject jsonObject) {
super(parentBatchTestClassGroup, jsonObject);
}
}