TestsuiteUtils.java

/*
 * Copyright 2019, Gerwin Klein, R��gis D��camps, Steve Rowe
 * SPDX-License-Identifier: BSD-3-Clause
 */

package jflex.maven.plugin.testsuite;

import java.io.File;
import java.io.FileReader;
import java.io.FilenameFilter;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;

public class TestsuiteUtils {

  private TestsuiteUtils() {}

  public static boolean verbose;
  public static String jflexTestVersion;

  public static final String version = "1.0alpha";

  public static void showUsage(String error) {
    System.out.println("Usage: [-v] [-testpath path] <test1> <test2> <test3> ...");
    System.out.println();
    System.out.println(error);
  }

  /**
   * Scan a directory for files with specific extension
   *
   * @return a list of files
   */
  public static List<File> scan(File dir, final String extension, boolean recursive) {
    List<File> result = new ArrayList<>();

    FilenameFilter extFilter =
        new FilenameFilter() {
          @Override
          public boolean accept(File f, String name) {
            return name.endsWith(extension);
          }
        };

    String[] files = dir.list(extFilter);
    if (files != null) {
      for (String file : files) result.add(new File(dir, file));
    }

    if (!recursive) return result;

    FilenameFilter dirFilter =
        new FilenameFilter() {
          @Override
          public boolean accept(File f, String name) {
            return (new File(f, name)).isDirectory();
          }
        };

    String[] dirs = dir.list(dirFilter);
    if (dirs == null) return result;

    for (String childDir : dirs) {
      List<File> t = scan(new File(dir, childDir), extension, true);
      result.addAll(t);
    }

    return result;
  }

  /**
   * @param tests a list of File
   * @param jflexUberJar The JFlex shaded jar
   * @return true if all tests succeeded, false otherwise
   */
  public static boolean runTests(List<File> tests, File jflexUberJar)
      throws TestFailException, MojoExecutionException, MojoFailureException {
    Locale.setDefault(Locale.US);
    int successCount = 0;
    int totalCount = 0;

    for (File test : tests) {
      totalCount++;
      if (verbose) {
        System.out.println("");
        System.out.println("Processing test [" + test + "]");
      }
      try {
        // set path to test
        File currentDir = new File(test.getParent());
        // trying to load
        TestLoader loader = new TestLoader(new FileReader(test));
        TestCase currentTest = loader.load();
        currentTest.init(currentDir);

        // failure above would have thrown exception
        if (verbose) System.out.println("Loaded successfully"); // - Details:\n"+currentTest);

        if (currentTest.checkJavaVersion()) {
          currentTest.createScanner(jflexUberJar, verbose);
          while (currentTest.hasMoreToDo()) currentTest.runNext(jflexUberJar);

          successCount++;
          System.out.println("Test [" + test + "] finished successfully.");
        } else {
          successCount++;
          System.out.println("Test [" + test + "] skipped (JDK version mismatch).");
        }
      } catch (TestFailException e) {
        throw new MojoFailureException("Test [" + test + "] failed", e);
      } catch (Exception e) {
        throw new MojoExecutionException("Test [" + test.getName() + "] failed to execute", e);
      }
    }

    // Give some Status
    System.out.println();
    System.out.println(
        "All done - "
            + successCount
            + " tests completed successfully, "
            + (totalCount - successCount)
            + " tests failed.");
    return 0 == totalCount - successCount;
  }
}