package tfm; import com.github.javaparser.JavaParser; import com.github.javaparser.ast.body.MethodDeclaration; import org.junit.jupiter.params.provider.Arguments; import java.io.File; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; public class FileFinder { public static Collection findFiles(File directory, String suffix) throws FileNotFoundException { Collection res = new ArrayList<>(); File[] files = directory.listFiles(); if (files == null) return Collections.emptyList(); for (File f : files) { if (f.getName().endsWith(suffix)) for (MethodDeclaration m : methodsOf(f)) res.add(Arguments.of(f, m.getNameAsString(), m)); if (f.isDirectory()) res.addAll(findFiles(f, suffix)); } return res; } public static Arguments[] findAllMethodDeclarations() throws FileNotFoundException { Collection args = findFiles(new File("./src/test/res/"), ".java"); args.add(Arguments.of(new File("./src/test/res/invalid/problem1"), "problem1", HandCraftedGraphs.problem1WithGotos())); args.add(Arguments.of(new File("./src/test/res/invalid/problem1continue"), "problem1", HandCraftedGraphs.problem1ContinueWithGotos())); return args.toArray(new Arguments[0]); } private static List methodsOf(File file) throws FileNotFoundException { return JavaParser.parse(file).findAll(MethodDeclaration.class); } }