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

com.indeed.proctor.common.ProctorLoadResult Maven / Gradle / Ivy

There is a newer version: 1.9.118-1950c8a
Show newest version
package com.indeed.proctor.common;

import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;

import javax.annotation.Nonnull;
import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import java.util.Set;
import java.util.function.Function;
import java.util.stream.Collectors;

/** @author matts */
public class ProctorLoadResult {
    @Nonnull private final Map testErrorMap;
    @Nonnull private final Set missingTests;
    @Nonnull private final Map dynamicTestErrorMap;

    private final boolean verifiedRules;

    /** @deprecated Use {@link ProctorLoadResult#newBuilder()} */
    @Deprecated
    public ProctorLoadResult(
            @Nonnull final Set testsWithErrors, @Nonnull Set missingTests) {
        this(testsWithErrors, missingTests, false);
    }

    /** @deprecated Use {@link ProctorLoadResult#newBuilder()} */
    @Deprecated
    public ProctorLoadResult(
            @Nonnull final Set testsWithErrors,
            @Nonnull Set missingTests,
            final boolean verifiedRules) {
        this(makeTestErrorMap(testsWithErrors), missingTests, verifiedRules);
    }

    /** @deprecated Use {@link ProctorLoadResult#newBuilder()} */
    @Deprecated
    public ProctorLoadResult(
            @Nonnull final Map testErrorMap,
            @Nonnull Set missingTests,
            final boolean verifiedRules) {
        this(
                testErrorMap,
                Collections.emptyMap(),
                missingTests,
                verifiedRules);
    }

    /** @deprecated Use {@link ProctorLoadResult#newBuilder()} */
    @Deprecated
    public ProctorLoadResult(
            @Nonnull final Map testErrorMap,
            @Nonnull final Map dynamicTestErrorMap,
            @Nonnull Set missingTests,
            final boolean verifiedRules) {
        this.testErrorMap = testErrorMap;
        this.dynamicTestErrorMap = dynamicTestErrorMap;
        this.missingTests = missingTests;
        this.verifiedRules = verifiedRules;
    }

    @Nonnull
    public Set getTestsWithErrors() {
        return testErrorMap.keySet();
    }

    @Nonnull
    public Set getDynamicTestWithErrors() {
        return dynamicTestErrorMap.keySet();
    }

    @Nonnull
    public Map getTestErrorMap() {
        return testErrorMap;
    }

    /**
     * Returns map from test name to incompatible test matrix exception for tests resolved by
     * dynamic filter.
     */
    @Nonnull
    public Map getDynamicTestErrorMap() {
        return dynamicTestErrorMap;
    }

    @Nonnull
    public Set getMissingTests() {
        return missingTests;
    }

    public boolean getVerifiedRules() {
        return verifiedRules;
    }

    private static Map makeTestErrorMap(
            final Set testsWithErrors) {
        return testsWithErrors.stream()
                .collect(
                        Collectors.toMap(
                                Function.identity(),
                                testName ->
                                        new IncompatibleTestMatrixException(
                                                testName + " has an invalid specification")));
    }

    @SuppressWarnings("UnusedDeclaration")
    public boolean hasInvalidTests() {
        return !(testErrorMap.isEmpty() && missingTests.isEmpty());
    }

    private static final ProctorLoadResult EMPTY = newBuilder().build();

    @Nonnull
    public static ProctorLoadResult emptyResult() {
        return EMPTY;
    }

    @Nonnull
    public static Builder newBuilder() {
        return new Builder();
    }

    public static class Builder {
        private ImmutableMap.Builder testsWithErrors =
                ImmutableMap.builder();
        private ImmutableMap.Builder
                dynamicTestsWithErrors = ImmutableMap.builder();
        private ImmutableSet.Builder missingTests = ImmutableSet.builder();
        private boolean verifiedRules = false;

        private Builder() {}

        @Nonnull
        public Builder recordError(
                final String testName, final IncompatibleTestMatrixException exception) {
            testsWithErrors.put(testName, exception);
            return this;
        }

        /**
         * Record incompatible test matrix exception thrown by {@link ProctorUtils#verify} for
         * dynamic tests
         */
        @Nonnull
        public Builder recordIncompatibleDynamicTest(
                final String testName, final IncompatibleTestMatrixException exception) {
            dynamicTestsWithErrors.put(testName, exception);
            return this;
        }

        @Nonnull
        public Builder recordError(final String testName) {
            testsWithErrors.put(
                    testName,
                    new IncompatibleTestMatrixException(
                            testName + " has an invalid specification"));
            return this;
        }

        @Nonnull
        public Builder recordMissing(final String testName) {
            missingTests.add(testName);
            return this;
        }

        @Nonnull
        public Builder recordAllMissing(final Collection testNames) {
            missingTests.addAll(testNames);
            return this;
        }

        public Builder recordVerifiedRules(final boolean verifiedRulesInput) {
            verifiedRules = verifiedRulesInput;
            return this;
        }

        @Nonnull
        public ProctorLoadResult build() {
            return new ProctorLoadResult(
                    testsWithErrors.build(),
                    dynamicTestsWithErrors.build(),
                    missingTests.build(),
                    verifiedRules);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy