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

org.junit.jupiter.params.provider.EnumSource Maven / Gradle / Ivy

There is a newer version: 5.11.0
Show newest version
/*
 * Copyright 2015-2018 the original author or authors.
 *
 * All rights reserved. This program and the accompanying materials are
 * made available under the terms of the Eclipse Public License v2.0 which
 * accompanies this distribution and is available at
 *
 * http://www.eclipse.org/legal/epl-v20.html
 */

package org.junit.jupiter.params.provider;

import static java.util.Arrays.stream;
import static java.util.stream.Collectors.toSet;
import static org.apiguardian.api.API.Status.EXPERIMENTAL;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.util.Set;
import java.util.function.BiConsumer;
import java.util.function.BiPredicate;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;

import org.apiguardian.api.API;
import org.junit.platform.commons.util.PreconditionViolationException;
import org.junit.platform.commons.util.Preconditions;

/**
 * {@code @EnumSource} is an {@link ArgumentsSource} for constants of a
 * specified {@linkplain #value Enum}.
 *
 * 

The enum constants will be provided as arguments to the annotated * {@code @ParameterizedTest} method. * *

The set of enum constants can be restricted via the {@link #names} and * {@link #mode} attributes. * * @since 5.0 * @see org.junit.jupiter.params.provider.ArgumentsSource * @see org.junit.jupiter.params.ParameterizedTest */ @Target({ ElementType.ANNOTATION_TYPE, ElementType.METHOD }) @Retention(RetentionPolicy.RUNTIME) @Documented @API(status = EXPERIMENTAL, since = "5.0") @ArgumentsSource(EnumArgumentsProvider.class) public @interface EnumSource { /** * The enum type that serves as the source of the enum constants. * * @see #names * @see #mode */ Class> value(); /** * The names of enum constants to provide, or regular expressions to select * the names of enum constants to provide. * *

If no names or regular expressions are specified, all enum constants * declared in the specified {@linkplain #value enum type} will be provided. * *

The {@link #mode} determines how the names are interpreted. * * @see #value * @see #mode */ String[] names() default {}; /** * The enum constant selection mode. * *

Defaults to {@link Mode#INCLUDE INCLUDE}. * * @see Mode#INCLUDE * @see Mode#EXCLUDE * @see Mode#MATCH_ALL * @see Mode#MATCH_ANY * @see #names */ Mode mode() default Mode.INCLUDE; /** * Enumeration of modes for selecting enum constants by name. */ enum Mode { /** * Select only those enum constants whose names are supplied via the * {@link EnumSource#names} attribute. */ INCLUDE(Mode::validateNames, (name, names) -> names.contains(name)), /** * Select all declared enum constants except those supplied via the * {@link EnumSource#names} attribute. */ EXCLUDE(Mode::validateNames, (name, names) -> !names.contains(name)), /** * Select only those enum constants whose names match all patterns supplied * via the {@link EnumSource#names} attribute. * * @see java.util.stream.Stream#allMatch(java.util.function.Predicate) */ MATCH_ALL(Mode::validatePatterns, (name, patterns) -> patterns.stream().allMatch(name::matches)), /** * Select only those enum constants whose names match any pattern supplied * via the {@link EnumSource#names} attribute. * * @see java.util.stream.Stream#anyMatch(java.util.function.Predicate) */ MATCH_ANY(Mode::validatePatterns, (name, patterns) -> patterns.stream().anyMatch(name::matches)); private final BiConsumer> validator; private final BiPredicate> selector; private Mode(BiConsumer> validator, BiPredicate> selector) { this.validator = validator; this.selector = selector; } void validate(EnumSource enumSource, Set names) { Preconditions.notNull(enumSource, "EnumSource must not be null"); Preconditions.notNull(names, "names must not be null"); validator.accept(enumSource, names); } boolean select(Enum constant, Set names) { Preconditions.notNull(constant, "Enum constant must not be null"); Preconditions.notNull(names, "names must not be null"); return selector.test(constant.name(), names); } private static void validateNames(EnumSource enumSource, Set names) { // Do not map using Enum::name here since it results in a rawtypes warning // that fails our Gradle build which is configured with -Werror. Set allNames = stream(enumSource.value().getEnumConstants()).map(e -> e.name()).collect(toSet()); Preconditions.condition(allNames.containsAll(names), () -> "Invalid enum constant name(s) in " + enumSource + ". Valid names include: " + allNames); } private static void validatePatterns(EnumSource enumSource, Set names) { try { names.forEach(Pattern::compile); } catch (PatternSyntaxException e) { throw new PreconditionViolationException( "Pattern compilation failed for a regular expression supplied in " + enumSource, e); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy