All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openrewrite.java.testing.junit5.TempDirNonFinal Maven / Gradle / Ivy

Go to download

A rewrite module automating best practices and major version migrations for popular Java test frameworks like JUnit and Mockito

The newest version!
/*
 * Copyright 2024 the original author or authors.
 * 

* Licensed under the Moderne Source Available License (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *

* https://docs.moderne.io/licensing/moderne-source-available-license *

* 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.openrewrite.java.testing.junit5; import org.openrewrite.*; import org.openrewrite.internal.ListUtils; import org.openrewrite.java.AnnotationMatcher; import org.openrewrite.java.JavaIsoVisitor; import org.openrewrite.java.search.UsesType; import org.openrewrite.java.tree.J; import org.openrewrite.java.tree.J.Modifier.Type; import java.time.Duration; import java.util.Iterator; public class TempDirNonFinal extends Recipe { private static final AnnotationMatcher TEMPDIR_ANNOTATION_MATCHER = new AnnotationMatcher( "@org.junit.jupiter.api.io.TempDir"); @Override public String getDisplayName() { return "Make `@TempDir` fields non final"; } @Override public String getDescription() { return "Make JUnit 5's `org.junit.jupiter.api.io.TempDir` fields non final."; } @Override public TreeVisitor getVisitor() { return Preconditions.check(new UsesType<>("org.junit.jupiter.api.io.TempDir", false), new TempDirVisitor()); } private static class TempDirVisitor extends JavaIsoVisitor { @Override public J.VariableDeclarations visitVariableDeclarations(J.VariableDeclarations multiVariable, ExecutionContext ctx) { J.VariableDeclarations varDecls = super.visitVariableDeclarations(multiVariable, ctx); if (varDecls.getLeadingAnnotations().stream().anyMatch(TEMPDIR_ANNOTATION_MATCHER::matches) && varDecls.hasModifier(Type.Final) && isField(getCursor())) { return maybeAutoFormat(varDecls, varDecls.withModifiers(ListUtils .map(varDecls.getModifiers(), modifier -> modifier.getType() == Type.Final ? null : modifier)), ctx, getCursor().getParentOrThrow()); } return varDecls; } } // copied from org.openrewrite.java.search.FindFieldsOfType.isField(Cursor), should probably become part of the API private static boolean isField(Cursor cursor) { Iterator path = cursor.getPath(); while (path.hasNext()) { Object o = path.next(); if (o instanceof J.MethodDeclaration) { return false; } if (o instanceof J.ClassDeclaration) { return true; } } return true; } @Override public Duration getEstimatedEffortPerOccurrence() { return Duration.ofMinutes(1); } }