-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
O3-3433: SDK Command: Add dependencies to distro.properties #283
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
137 changes: 137 additions & 0 deletions
137
integration-tests/src/test/java/org/openmrs/maven/plugins/AddDependencyTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
package org.openmrs.maven.plugins; | ||
|
||
import org.apache.maven.plugin.MojoExecutionException; | ||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.openmrs.maven.plugins.model.DistroProperties; | ||
import org.openmrs.maven.plugins.utility.DistroHelper; | ||
|
||
import java.io.File; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
public class AddDependencyTest extends AbstractSdkIntegrationTest { | ||
|
||
private String distroFile; | ||
|
||
private DistroProperties originalProperties; | ||
|
||
|
||
@Before | ||
public void setUp() { | ||
distroFile = testDirectory + File.separator + "openmrs-distro.properties"; | ||
originalProperties = DistroHelper.getDistroPropertiesFromFile(new File(distroFile)); | ||
} | ||
|
||
@Test | ||
public void shouldAddOmodDependency() throws Exception { | ||
addTaskParam("distro", distroFile); | ||
addTaskParam("type", "OMOD"); | ||
addTaskParam("groupId", "org.openmrs.module"); | ||
addTaskParam("artifactId", "webservices.rest"); | ||
addTaskParam("version", "2.30.0"); | ||
|
||
executeTask("add"); | ||
assertSuccess(); | ||
|
||
DistroProperties distroProperties = DistroHelper.getDistroPropertiesFromFile(new File(distroFile)); | ||
assertNotNull(distroProperties); | ||
assertTrue(distroProperties.getAllKeys().contains("omod.webservices.rest")); | ||
assertEquals(distroProperties.getParam("omod.webservices.rest"), "2.30.0"); | ||
} | ||
|
||
@Test | ||
public void shouldAddSpaDependency() throws Exception { | ||
addTaskParam("distro", distroFile); | ||
addTaskParam("type", "SPA"); | ||
addTaskParam("moduleName", "@openmrs/esm-system-admin-app"); | ||
addTaskParam("version", "4.0.3"); | ||
|
||
executeTask("add"); | ||
assertSuccess(); | ||
|
||
DistroProperties distroProperties = DistroHelper.getDistroPropertiesFromFile(new File(distroFile)); | ||
assertNotNull(distroProperties); | ||
|
||
assertTrue(distroProperties.getAllKeys().contains("spa.frontendModules.@openmrs/esm-system-admin-app")); | ||
assertEquals(distroProperties.getParam("spa.frontendModules.@openmrs/esm-system-admin-app"), "4.0.3"); | ||
} | ||
|
||
@Test | ||
public void shouldAddOwaDependency() throws Exception { | ||
addTaskParam("distro", distroFile); | ||
addTaskParam("type", "OWA"); | ||
addTaskParam("artifactId", "sysadmin"); | ||
addTaskParam("version", "1.2.0"); | ||
|
||
executeTask("add"); | ||
assertSuccess(); | ||
|
||
DistroProperties distroProperties = DistroHelper.getDistroPropertiesFromFile(new File(distroFile)); | ||
assertNotNull(distroProperties); | ||
|
||
assertTrue(distroProperties.getAllKeys().contains("owa.sysadmin")); | ||
assertEquals(distroProperties.getParam("owa.sysadmin"), "1.2.0"); | ||
} | ||
|
||
@Test | ||
public void shouldAddWarDependency() throws Exception { | ||
addTaskParam("distro", distroFile); | ||
addTaskParam("type", "WAR"); | ||
addTaskParam("version", "2.6.1"); | ||
|
||
executeTask("add"); | ||
assertSuccess(); | ||
|
||
DistroProperties distroProperties = DistroHelper.getDistroPropertiesFromFile(new File(distroFile)); | ||
assertNotNull(distroProperties); | ||
|
||
assertTrue(distroProperties.getAllKeys().contains("war.openmrs")); | ||
assertEquals(distroProperties.getParam("war.openmrs"), "2.6.1"); | ||
} | ||
|
||
@Test | ||
public void shouldAddCustomDependencyIfTypeIsNotSpecified() throws Exception { | ||
addTaskParam("distro", distroFile); | ||
addTaskParam("property", "custom.property"); | ||
addTaskParam("version", "1.2.3"); | ||
|
||
executeTask("add"); | ||
assertSuccess(); | ||
|
||
DistroProperties distroProperties = DistroHelper.getDistroPropertiesFromFile(new File(distroFile)); | ||
assertTrue(distroProperties.getAllKeys().contains("custom.property")); | ||
assertEquals(distroProperties.getParam("custom.property"), "1.2.3"); | ||
|
||
} | ||
|
||
@Test | ||
public void shouldOverrideIfPropertyAlreadyExists() throws Exception { | ||
DistroProperties distroProperties = DistroHelper.getDistroPropertiesFromFile(new File(distroFile)); | ||
assertNotNull(distroProperties); | ||
assertTrue(distroProperties.getAllKeys().contains("omod.uiframework")); | ||
|
||
addTaskParam("distro", distroFile); | ||
addTaskParam("type", "OMOD"); | ||
addTaskParam("groupId", "org.openmrs.module"); | ||
addTaskParam("artifactId", "uiframework"); | ||
addTaskParam("version", "2.30.0"); | ||
|
||
executeTask("add"); | ||
assertSuccess(); | ||
|
||
distroProperties = DistroHelper.getDistroPropertiesFromFile(new File(distroFile)); | ||
assertNotNull(distroProperties); | ||
|
||
assertTrue(distroProperties.getAllKeys().contains("omod.uiframework")); | ||
assertEquals(distroProperties.getParam("omod.uiframework"), "2.30.0"); | ||
} | ||
|
||
@After | ||
public void reset() throws MojoExecutionException { | ||
originalProperties.saveTo(new File(distroFile).getParentFile()); | ||
} | ||
} |
157 changes: 157 additions & 0 deletions
157
maven-plugin/src/main/java/org/openmrs/maven/plugins/AddDependency.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
package org.openmrs.maven.plugins; | ||
|
||
import org.apache.commons.lang.StringUtils; | ||
import org.apache.maven.plugin.MojoExecutionException; | ||
import org.apache.maven.plugin.MojoFailureException; | ||
import org.apache.maven.plugins.annotations.Mojo; | ||
import org.apache.maven.plugins.annotations.Parameter; | ||
import org.openmrs.maven.plugins.model.Artifact; | ||
import org.openmrs.maven.plugins.model.DistroProperties; | ||
|
||
import org.openmrs.maven.plugins.utility.NpmVersionHelper; | ||
import org.openmrs.maven.plugins.utility.SDKConstants; | ||
|
||
import java.io.File; | ||
import java.nio.file.Paths; | ||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
@Mojo(name = "add", requiresProject = false) | ||
public class AddDependency extends AbstractTask { | ||
|
||
/** | ||
* Path to the openmrs-distro.properties file to modify | ||
*/ | ||
@Parameter(property = "distro") | ||
private String distro; | ||
|
||
/** | ||
* Type of the dependency to add (OMOD, SPA, OWA, WAR or Custom) | ||
*/ | ||
@Parameter(property = "type") | ||
private String type; | ||
|
||
/** | ||
* Maven group id of the dependency | ||
*/ | ||
@Parameter(property = "groupId") | ||
private String groupId; | ||
|
||
/** | ||
* Maven artifact id of the dependency | ||
*/ | ||
@Parameter(property = "artifactId") | ||
private String artifactId; | ||
|
||
/** | ||
* Version of the dependency | ||
*/ | ||
@Parameter(property = "version") | ||
private String version; | ||
|
||
/** | ||
* Name of the frontend module | ||
*/ | ||
@Parameter(property = "moduleName") | ||
private String moduleName; | ||
|
||
/** | ||
* Name of the custom property | ||
*/ | ||
@Parameter(property = "property") | ||
private String property; | ||
|
||
private static final String DEPENDENCY_TYPE_PROMPT = "Enter the type of dependency you need to add"; | ||
|
||
private static final String OMOD_OPTION = "OMOD"; | ||
private static final String SPA_OPTION = "SPA"; | ||
private static final String OWA_OPTION = "OWA"; | ||
private static final String WAR_OPTION = "WAR"; | ||
private static final String CUSTOM_OPTION = "Custom"; | ||
|
||
|
||
@Override | ||
public void executeTask() throws MojoExecutionException, MojoFailureException { | ||
if (distro == null) { | ||
File userDir = new File(System.getProperty("user.dir")); | ||
File distroFile = new File(userDir, DistroProperties.DISTRO_FILE_NAME); | ||
if (distroFile.exists()) { | ||
distro = distroFile.getAbsolutePath(); | ||
} | ||
} | ||
|
||
if (StringUtils.isBlank(type) && StringUtils.isBlank(property)) { | ||
List<String> dependencyTypes = new ArrayList<>(Arrays.asList(OMOD_OPTION, SPA_OPTION, OWA_OPTION, WAR_OPTION, CUSTOM_OPTION)); | ||
type = wizard.promptForMissingValueWithOptions(DEPENDENCY_TYPE_PROMPT, null, null, dependencyTypes); | ||
} | ||
|
||
if (StringUtils.isBlank(type) && StringUtils.isNotBlank(property)) { | ||
type = CUSTOM_OPTION; | ||
} | ||
|
||
DistroProperties distroProperties = null; | ||
|
||
if (StringUtils.isNotBlank(distro)) { | ||
distroProperties = distroHelper.resolveDistroPropertiesForStringSpecifier(distro, versionsHelper); | ||
} | ||
|
||
if (distroProperties == null) { | ||
throw new MojoFailureException("Invalid distro properties"); | ||
} | ||
|
||
switch (type.toUpperCase()) { | ||
case OMOD_OPTION: | ||
groupId = wizard.promptForValueIfMissingWithDefault(null, groupId, "groupId", Artifact.GROUP_MODULE); | ||
artifactId = wizard.promptForValueIfMissing(artifactId, "artifactId"); | ||
if (StringUtils.isBlank(version)) { | ||
Artifact artifact = new Artifact(artifactId, "1.0", groupId); | ||
List<String> versions = versionsHelper.getSuggestedVersions(artifact, 5); | ||
version = wizard.promptForMissingValueWithOptions("Enter the version", null, null, versions, | ||
"Please specify the module version", null); | ||
} | ||
distroProperties.addProperty("omod." + artifactId, version); | ||
break; | ||
case SPA_OPTION: | ||
moduleName = wizard.promptForValueIfMissing(moduleName, "frontend module name"); | ||
if (StringUtils.isBlank(version)) { | ||
List<String> versions = new NpmVersionHelper().getPackageVersions(moduleName, 6);; | ||
version = wizard.promptForMissingValueWithOptions("Enter the module version", null, null, versions, | ||
"Please specify the SPA version", null); | ||
} | ||
distroProperties.addProperty("spa.frontendModules." + moduleName, version); | ||
break; | ||
case OWA_OPTION: | ||
artifactId = wizard.promptForValueIfMissing(artifactId, "OWA name"); | ||
Artifact artifact = new Artifact(artifactId, "1.0", Artifact.GROUP_OWA); | ||
if (StringUtils.isBlank(version)) { | ||
List<String> suggestedVersions = versionsHelper.getSuggestedVersions(artifact, 6); | ||
version = wizard | ||
.promptForMissingValueWithOptions("Which version would you like to deploy?%s", null, "", suggestedVersions, | ||
"Please specify OWA version", null); | ||
} | ||
distroProperties.addProperty("owa." + artifactId, version); | ||
break; | ||
case WAR_OPTION: | ||
Artifact platformArtifact = new Artifact(SDKConstants.PLATFORM_ARTIFACT_ID, | ||
SDKConstants.SETUP_DEFAULT_PLATFORM_VERSION, Artifact.GROUP_DISTRO); | ||
if (StringUtils.isBlank(version)) { | ||
version = wizard.promptForPlatformVersion(versionsHelper.getSuggestedVersions(platformArtifact, 5)); | ||
} | ||
distroProperties.addProperty("war.openmrs", version); | ||
break; | ||
default: | ||
property = wizard.promptForValueIfMissing(property, "the property name (ex: omod.legacyui)"); | ||
version = wizard.promptForValueIfMissing(version, "the property version"); | ||
distroProperties.addProperty(property, version); | ||
} | ||
|
||
if (StringUtils.isBlank(distro)) { | ||
wizard.showMessage("No distro.properpties file is provided. Generating a new openmrs-distro.properties file."); | ||
distro = Paths.get(System.getProperty("user.dir"), DistroProperties.DISTRO_FILE_NAME).toString(); | ||
} | ||
|
||
distroProperties.saveTo(new File(distro).getParentFile()); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be good to document the acceptable values here so user's don't have to guess.