-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test case for OptionalDependenciesPlugin (com.netflix.nebula:grad…
…le-extra-configurations-plugin plugin migration) (#7995) (#7996) (cherry picked from commit 5ebfbcd) Signed-off-by: Andriy Redko <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
2a3f302
commit 8fecbbb
Showing
2 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
buildSrc/src/test/java/org/opensearch/gradle/plugin/OptionalDependenciesPluginTests.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,85 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.gradle.plugin; | ||
|
||
import org.apache.maven.model.Dependency; | ||
import org.apache.maven.model.Model; | ||
import org.apache.maven.model.io.xpp3.MavenXpp3Reader; | ||
import org.codehaus.plexus.util.xml.pull.XmlPullParserException; | ||
import org.gradle.testkit.runner.BuildResult; | ||
import org.gradle.testkit.runner.GradleRunner; | ||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.rules.TemporaryFolder; | ||
import org.opensearch.gradle.test.GradleUnitTestCase; | ||
|
||
import java.io.File; | ||
import java.io.FileNotFoundException; | ||
import java.io.FileOutputStream; | ||
import java.io.FileReader; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.io.OutputStream; | ||
import java.util.Optional; | ||
|
||
import static org.gradle.testkit.runner.TaskOutcome.SUCCESS; | ||
import static org.hamcrest.CoreMatchers.is; | ||
|
||
public class OptionalDependenciesPluginTests extends GradleUnitTestCase { | ||
private TemporaryFolder projectDir; | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
projectDir = new TemporaryFolder(); | ||
projectDir.create(); | ||
} | ||
|
||
@After | ||
public void tearDown() { | ||
projectDir.delete(); | ||
} | ||
|
||
public void testApply() throws FileNotFoundException, IOException, XmlPullParserException { | ||
final File mavenRepoDir = new File(projectDir.getRoot(), "mavenrepo"); | ||
|
||
try (InputStream in = getClass().getClassLoader().getResourceAsStream("plugin/optional-dependencies.gradle")) { | ||
try (OutputStream out = new FileOutputStream(projectDir.newFile("build.gradle"))) { | ||
in.transferTo(out); | ||
} | ||
} | ||
|
||
GradleRunner runner = GradleRunner.create() | ||
.forwardOutput() | ||
.withPluginClasspath() | ||
.withArguments("publish", "-PrepoUrl=" + mavenRepoDir.toURI().toURL()) | ||
.withProjectDir(projectDir.getRoot()); | ||
|
||
BuildResult result = runner.build(); | ||
assertEquals(SUCCESS, result.task(":" + "publish").getOutcome()); | ||
|
||
final String name = projectDir.getRoot().getName(); | ||
assertDependency(mavenRepoDir, name); | ||
} | ||
|
||
private void assertDependency(File repoUrl, String name) throws FileNotFoundException, IOException, XmlPullParserException { | ||
final File pom = new File(repoUrl, "org/custom/group/" + name + "/1.0.0/" + name + "-1.0.0.pom"); | ||
assertThat(pom.exists(), is(true)); | ||
|
||
final MavenXpp3Reader reader = new MavenXpp3Reader(); | ||
final Model model = reader.read(new FileReader(pom)); | ||
|
||
final Optional<Dependency> dependecyOpt = model.getDependencies() | ||
.stream() | ||
.filter(d -> d.getArtifactId().equals("commons-lang3")) | ||
.findAny(); | ||
|
||
assertThat(dependecyOpt.isPresent(), is(true)); | ||
assertThat(dependecyOpt.get().isOptional(), is(true)); | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
buildSrc/src/test/resources/plugin/optional-dependencies.gradle
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,39 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
plugins { | ||
id 'java' | ||
id 'maven-publish' | ||
id 'opensearch.optional-dependencies' | ||
} | ||
group = "org.custom.group" | ||
version = '1.0.0' | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation 'org.apache.commons:commons-lang3:3.3.2', optional | ||
} | ||
|
||
publishing { | ||
publications { | ||
mavenJava(MavenPublication) { | ||
from components.java | ||
} | ||
} | ||
repositories { | ||
maven { | ||
url "${repoUrl}" | ||
} | ||
} | ||
} |