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

org.minidns.integrationtest.IntegrationTestHelper Maven / Gradle / Ivy

There is a newer version: 1.1.0-alpha3
Show newest version
/*
 * Copyright 2015-2020 the original author or authors
 *
 * This software is licensed under the Apache License, Version 2.0,
 * the GNU Lesser General Public License version 2 or later ("LGPL")
 * and the WTFPL.
 * You may choose either license to govern your use of this software only
 * upon the condition that you accept all of the terms of either
 * the Apache License 2.0, the LGPL 2.1+ or the WTFPL.
 */
package org.minidns.integrationtest;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Properties;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;

import org.junit.Ignore;
import org.minidns.dnsname.DnsName;
import org.minidns.jul.MiniDnsJul;
import org.minidns.record.Record.TYPE;

public class IntegrationTestHelper {

    public static final DnsName DNSSEC_DOMAIN = DnsName.from("verteiltesysteme.net");
    public static final TYPE RR_TYPE = TYPE.A;

    private static Set> testClasses = new HashSet<>();
    private static Logger LOGGER = Logger.getLogger(IntegrationTestHelper.class.getName());

    enum TestResult {
        Success,
        Failure,
    }

    static {
        testClasses.add(CoreTest.class);
        testClasses.add(DnssecTest.class);
        testClasses.add(DaneTest.class);
        testClasses.add(HlaTest.class);
        testClasses.add(NsidTest.class);
        testClasses.add(IterativeDnssecTest.class);
    }

    private static final String MINTTEST = "minttest.";

    public static void main(String[] args) {
        Properties systemProperties = System.getProperties();
        String debugString = systemProperties.getProperty(MINTTEST + "debug", Boolean.toString(false));
        boolean debug = Boolean.parseBoolean(debugString);
        if (debug) {
            LOGGER.info("Enabling debug and trace output");
            MiniDnsJul.enableMiniDnsTrace();
        }

        int testsRun = 0;
        List successfulTests = new ArrayList<>();
        List failedTests = new ArrayList<>();
        List ignoredTests = new ArrayList<>();
        for (final Class aClass : testClasses) {
            for (final Method method : aClass.getDeclaredMethods()) {
                if (!method.isAnnotationPresent(IntegrationTest.class)) {
                    continue;
                }
                if (method.isAnnotationPresent(Ignore.class)) {
                    ignoredTests.add(method);
                    continue;
                }
                TestResult result = invokeTest(method, aClass);
                testsRun++;
                switch (result) {
                case Success:
                    successfulTests.add(method);
                    break;
                case Failure:
                    failedTests.add(method);
                    break;
                }
            }
        }
        StringBuilder resultMessage = new StringBuilder();
        resultMessage.append("MiniDNS Integration Test Result: [").append(successfulTests.size()).append('/').append(testsRun).append("] ");
        if (!ignoredTests.isEmpty()) {
            resultMessage.append("(Ignored: ").append(ignoredTests.size()).append(") ");
        }
        int exitStatus = 0;
        if (failedTests.isEmpty()) {
            resultMessage.append("SUCCESS \\o/");
        } else {
            resultMessage.append("FAILURE :(");
            exitStatus = 2;
        }
        LOGGER.info(resultMessage.toString());
        System.exit(exitStatus);
    }

    public static TestResult invokeTest(Method method, Class aClass) {
        Class expected = method.getAnnotation(IntegrationTest.class).expected();
        if (!Exception.class.isAssignableFrom(expected)) expected = null;

        String testClassName = method.getDeclaringClass().getSimpleName();
        String testMethodName = method.getName();

        LOGGER.logp(Level.INFO, testClassName, testMethodName, "Test start.");
        try {
            method.invoke(null);

            if (expected != null) {
                LOGGER.logp(Level.WARNING, testClassName, testMethodName, "Test failed: expected exception " + expected + " was not thrown!");
                return TestResult.Failure;
            } else {
                LOGGER.logp(Level.INFO, testClassName, testMethodName, "Test suceeded.");
                return TestResult.Success;
            }
        } catch (InvocationTargetException e) {
            if (expected != null && expected.isAssignableFrom(e.getTargetException().getClass())) {
                LOGGER.logp(Level.INFO, testClassName, testMethodName, "Test suceeded.");
                return TestResult.Success;
            } else {
                LOGGER.logp(Level.WARNING, testClassName, testMethodName, "Test failed: unexpected exception was thrown: ", e.getTargetException());
                return TestResult.Failure;
            }
        } catch (IllegalAccessException | NullPointerException e) {
            LOGGER.logp(Level.SEVERE, testClassName, testMethodName, "Test failed: could not invoke test, is it public static?");
            return TestResult.Failure;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy