-
Notifications
You must be signed in to change notification settings - Fork 24.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove tasks to check license and notice and add build integration test instead. Closes #33201
- Loading branch information
Showing
17 changed files
with
202 additions
and
121 deletions.
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
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
76 changes: 76 additions & 0 deletions
76
buildSrc/src/test/java/org/elasticsearch/gradle/BuildPluginIT.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,76 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.elasticsearch.gradle; | ||
|
||
import org.apache.commons.io.IOUtils; | ||
import org.elasticsearch.gradle.test.GradleIntegrationTestCase; | ||
import org.gradle.testkit.runner.BuildResult; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.nio.charset.StandardCharsets; | ||
import java.util.zip.ZipEntry; | ||
import java.util.zip.ZipFile; | ||
|
||
public class BuildPluginIT extends GradleIntegrationTestCase { | ||
|
||
public void testPluginCanBeApplied() { | ||
BuildResult result = getGradleRunner("elasticsearch.build") | ||
.withArguments("hello", "-s") | ||
.build(); | ||
assertTaskSuccessful(result, ":hello"); | ||
assertOutputContains("build plugin can be applied"); | ||
} | ||
|
||
public void testCheckTask() { | ||
BuildResult result = getGradleRunner("elasticsearch.build") | ||
.withArguments("check", "assemble", "-s", "-Dlocal.repo.path=" + getLocalTestRepoPath()) | ||
.build(); | ||
assertTaskSuccessful(result, ":check"); | ||
} | ||
|
||
public void testLicenseAndNotice() throws IOException { | ||
BuildResult result = getGradleRunner("elasticsearch.build") | ||
.withArguments("clean", "assemble", "-s", "-Dlocal.repo.path=" + getLocalTestRepoPath()) | ||
.build(); | ||
|
||
assertTaskSuccessful(result, ":assemble"); | ||
|
||
assertBuildFileExists(result, "elasticsearch.build", "distributions/elasticsearch.build.jar"); | ||
|
||
try (ZipFile zipFile = new ZipFile(new File( | ||
getBuildDir("elasticsearch.build"), "distributions/elasticsearch.build.jar" | ||
))) { | ||
ZipEntry licenseEntry = zipFile.getEntry("META-INF/LICENSE.txt"); | ||
ZipEntry noticeEntry = zipFile.getEntry("META-INF/NOTICE.txt"); | ||
assertNotNull("Jar does not have META-INF/LICENSE.txt", licenseEntry); | ||
assertNotNull("Jar does not have META-INF/NOTICE.txt", noticeEntry); | ||
try ( | ||
InputStream license = zipFile.getInputStream(licenseEntry); | ||
InputStream notice = zipFile.getInputStream(noticeEntry) | ||
) { | ||
assertEquals("this is a test license file", IOUtils.toString(license, StandardCharsets.UTF_8.name())); | ||
assertEquals("this is a test notice file", IOUtils.toString(notice, StandardCharsets.UTF_8.name())); | ||
} | ||
} | ||
} | ||
|
||
|
||
} |
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
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 @@ | ||
this is a test license file |
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 @@ | ||
this is a test notice file |
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,36 @@ | ||
plugins { | ||
id 'java' | ||
id 'elasticsearch.build' | ||
} | ||
|
||
ext.licenseFile = file("LICENSE") | ||
ext.noticeFile = file("NOTICE") | ||
|
||
dependencies { | ||
compile "junit:junit:${versions.junit}" | ||
// missing classes in thirdparty audit | ||
compile 'org.hamcrest:hamcrest-core:1.3' | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
repositories { | ||
maven { | ||
url System.getProperty("local.repo.path") | ||
} | ||
} | ||
} | ||
|
||
// todo remove offending rules | ||
forbiddenApisMain.enabled = false | ||
forbiddenApisTest.enabled = false | ||
// requires dependency on testing fw | ||
jarHell.enabled = false | ||
// we don't have tests for now | ||
test.enabled = false | ||
|
||
task hello { | ||
doFirst { | ||
println "build plugin can be applied" | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
buildSrc/src/testKit/elasticsearch.build/licenses/hamcrest-core-1.3.jar.sha1
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 @@ | ||
42a25dc3219429f0e5d060061f71acb49bf010a0 |
Empty file.
Empty file.
1 change: 1 addition & 0 deletions
1
buildSrc/src/testKit/elasticsearch.build/licenses/junit-4.12.jar.sha1
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 @@ | ||
2973d150c0dc1fefe998f834810d68f278ea58ec |
Empty file.
Empty file.
26 changes: 26 additions & 0 deletions
26
buildSrc/src/testKit/elasticsearch.build/src/main/java/org/elasticsearch/SampleClass.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,26 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.elasticsearch; | ||
|
||
/** | ||
* This is just a test class | ||
*/ | ||
public class SampleClass { | ||
|
||
} |
Oops, something went wrong.