org.codenarc.rule.junit.JUnitPublicNonTestMethodRule.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CodeNarc Show documentation
Show all versions of CodeNarc Show documentation
The CodeNarc project provides a static analysis tool for Groovy code.
/*
* Copyright 2009 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.codenarc.rule.junit
import org.codehaus.groovy.ast.MethodNode
import org.codenarc.rule.AbstractAstVisitorRule
import org.codenarc.rule.AbstractMethodVisitor
import org.codenarc.util.AstUtil
import java.lang.reflect.Modifier
/**
* Rule that checks if a JUnit test class contains public methods other than:
*
* - Zero-argument methods with names starting with "test"
* - The setUp() and tearDown() methods
* - Methods annotated with @Test
* - Methods annotated with @Before and @After
* - Methods annotated with @BeforeClass and @AfterClass
*
* Public, non-test methods on a test class violate conventional usage of test classes,
* and can be confusing.
*
* Public, non-test methods may also hide unintentional 'Lost Tests'. For instance, the test method
* declaration may accidentally include methods parameters, and thus be ignored by JUnit. Or the
* method may accidentally not follow the "test.." naming convention and not have the @Test annotation,
* and thus be ignored by JUnit.
*
* This rule sets the default value of the property to only match class names
* ending in 'Test', 'Tests' or 'TestCase'.
*
* @author Chris Mair
* @author Hamlet D'Arcy
*/
class JUnitPublicNonTestMethodRule extends AbstractAstVisitorRule {
String name = 'JUnitPublicNonTestMethod'
int priority = 2
Class astVisitorClass = JUnitPublicNonTestMethodAstVisitor
String applyToClassNames = DEFAULT_TEST_CLASS_NAMES
private String[] ignoreMethodsWithAnnotations = 'After,AfterAll,AfterClass,AfterEach,Before,BeforeAll,BeforeClass,BeforeEach,Disabled,Ignore,Override,Test,ParameterizedTest'.split(',')
void setIgnoreMethodsWithAnnotations(String annotations) {
if (annotations) {
ignoreMethodsWithAnnotations = annotations.split(',')
}
}
}
class JUnitPublicNonTestMethodAstVisitor extends AbstractMethodVisitor {
@Override
void visitMethod(MethodNode methodNode) {
if (Modifier.isPublic(methodNode.modifiers)
&& !(Modifier.isStatic(methodNode.modifiers))
&& !JUnitUtil.isTestMethod(methodNode)
&& !AstUtil.isMethodNode(methodNode, 'setUp|tearDown', 0)
&& !AstUtil.hasAnyAnnotation(methodNode, rule.ignoreMethodsWithAnnotations)) {
addViolation(methodNode, "The method $methodNode.name is public but not a test method")
}
}
}