org.gradle.api.plugins.quality.jdepend.JDependPluginIntegrationTest.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2018 the original author or authors.
*
* Licensed 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.gradle.api.plugins.quality.jdepend
import org.gradle.integtests.fixtures.WellBehavedPluginTest
import static org.hamcrest.CoreMatchers.containsString
class JDependPluginIntegrationTest extends WellBehavedPluginTest {
def setup() {
writeBuildFile()
executer.beforeExecute {
expectDeprecationWarning()
}
}
@Override
String getPluginName() {
return "jdepend"
}
@Override
String getMainTask() {
return "check"
}
def "emits deprecating warning"() {
when:
succeeds("help")
then:
outputContains("The jdepend plugin has been deprecated")
}
def "analyze code"() {
goodCode()
expect:
succeeds("check")
file("build/reports/jdepend/main.xml").assertContents(containsString("org.gradle.Class1"))
file("build/reports/jdepend/test.xml").assertContents(containsString("org.gradle.Class1Test"))
}
def "is incremental"() {
given:
goodCode()
expect:
succeeds("jdependMain")
executedAndNotSkipped(":jdependMain")
succeeds(":jdependMain")
skipped(":jdependMain")
when:
file("build/reports/jdepend/main.xml").delete()
then:
succeeds("jdependMain")
executedAndNotSkipped(":jdependMain")
}
def "out-of-date when mixed with Java and Groovy code"() {
given:
goodCode()
buildFile << """
apply plugin: 'groovy'
dependencies {
implementation localGroovy()
}
"""
file("src/main/groovy/org/gradle/Groovy1.groovy") << """
package org.gradle
class Groovy1 {
boolean is() { true }
}
"""
expect:
succeeds("jdependMain")
result.assertTaskNotSkipped(":jdependMain")
when:
succeeds(":jdependMain")
then:
result.assertTaskSkipped(":jdependMain")
def report = file("build/reports/jdepend/main.xml").text
// Both languages are analyzed
report.contains('sourceFile="Class1.java"')
report.contains('sourceFile="Groovy1.groovy"')
when:
file("src/main/java/org/gradle/Class1.java").text = """
package org.gradle;
class Class1 {
public boolean is() { return true; }
public boolean isNot() { return false; }
}
"""
then:
succeeds("jdependMain")
result.assertTaskNotSkipped(":jdependMain")
when:
file("src/main/groovy/org/gradle/Groovy1.groovy").text = """
package org.gradle
class Groovy1 {
boolean is() { true }
boolean isNot() { false }
}
"""
then:
succeeds("jdependMain")
result.assertTaskNotSkipped(":jdependMain")
}
def "cannot generate multiple reports"() {
given:
buildFile << """
jdependMain.reports {
xml.enabled true
text.enabled true
}
"""
and:
goodCode()
expect:
fails "jdependMain"
failure.assertHasCause "JDepend tasks can only have one report enabled"
}
def "can generate text reports"() {
given:
buildFile << """
jdependMain.reports {
xml.enabled false
text.enabled true
}
"""
and:
goodCode()
when:
run "jdependMain"
then:
file("build/reports/jdepend/main.txt").exists()
}
def "can't generate no reports"() {
given:
buildFile << """
jdependMain.reports {
xml.enabled false
text.enabled false
}
"""
and:
goodCode()
expect:
fails "jdependMain"
and:
failure.assertHasCause "JDepend tasks must have one report enabled"
}
def "does not fail if configuration is resolved before task execution"() {
when:
goodCode()
and:
buildFile << """
configurations.jdepend.files
"""
then:
succeeds "jdependMain"
}
private goodCode() {
file("src/main/java/org/gradle/Class1.java") <<
"package org.gradle; class Class1 { public boolean is() { return true; } }"
file("src/test/java/org/gradle/Class1Test.java") <<
"package org.gradle; class Class1Test { public boolean is() { return true; } }"
}
private void writeBuildFile() {
file("build.gradle") << """
apply plugin: "java"
apply plugin: "jdepend"
${mavenCentralRepository()}
"""
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy