com.liferay.jenkins.results.parser.PluginsMarketplaceAppJob 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;
import java.io.File;
import java.util.Collections;
import java.util.Set;
import org.json.JSONObject;
/**
* @author Michael Hashimoto
*/
public class PluginsMarketplaceAppJob
extends BaseJob implements PortalTestClassJob, TestSuiteJob {
@Override
public Set getDistTypes() {
return Collections.emptySet();
}
@Override
public JSONObject getJSONObject() {
if (jsonObject != null) {
return jsonObject;
}
jsonObject = super.getJSONObject();
jsonObject.put("app_type", _appType);
jsonObject.put(
"portal_upstream_branch_name", _portalUpstreamBranchName);
return jsonObject;
}
@Override
public PortalGitWorkingDirectory getPortalGitWorkingDirectory() {
return _portalGitWorkingDirectory;
}
@Override
public String getTestSuiteName() {
return _appType;
}
protected PluginsMarketplaceAppJob(
BuildProfile buildProfile, String jobName,
String portalUpstreamBranchName) {
super(buildProfile, jobName);
String appType = System.getenv("TEST_APP_TYPE");
if (JenkinsResultsParserUtil.isNullOrEmpty(appType)) {
appType = "community";
}
_portalUpstreamBranchName = portalUpstreamBranchName;
_appType = appType;
_initialize();
}
protected PluginsMarketplaceAppJob(JSONObject jsonObject) {
super(jsonObject);
_appType = jsonObject.getString("app_type");
_portalUpstreamBranchName = jsonObject.getString(
"portal_upstream_branch_name");
_initialize();
}
private void _initialize() {
_portalGitWorkingDirectory =
GitWorkingDirectoryFactory.newPortalGitWorkingDirectory(
_portalUpstreamBranchName);
jobPropertiesFiles.add(
new File(
_portalGitWorkingDirectory.getWorkingDirectory(),
"test.properties"));
}
private final String _appType;
private PortalGitWorkingDirectory _portalGitWorkingDirectory;
private final String _portalUpstreamBranchName;
}