DisabledForMavenVersionCondition.java
package com.soebes.itf.jupiter.extension.condition;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import com.soebes.itf.jupiter.extension.MavenVersion;
import org.junit.jupiter.api.extension.ConditionEvaluationResult;
import org.junit.jupiter.api.extension.ExecutionCondition;
import org.junit.jupiter.api.extension.ExtensionContext;
import java.util.Optional;
import java.util.stream.Stream;
import static com.soebes.itf.jupiter.extension.Preconditions.requireGreaterZero;
import static org.junit.jupiter.api.extension.ConditionEvaluationResult.disabled;
import static org.junit.jupiter.api.extension.ConditionEvaluationResult.enabled;
import static org.junit.platform.commons.support.AnnotationSupport.findAnnotation;
/**
* {@link ExecutionCondition} for {@link DisabledForMavenVersion @DisableForMaven}.
*
* @author Karl Heinz Marbaise
* @see DisabledForMavenVersion
* @since 0.1
*/
class DisabledForMavenVersionCondition implements ExecutionCondition {
static final ConditionEvaluationResult ENABLED_ON_CURRENT_MAVEN_VERSION = enabled(
"Enabled on Maven version: " + System.getProperty("maven.version"));
static final ConditionEvaluationResult DISABLED_ON_CURRENT_MAVEN_VERSION = disabled(
"Disabled on Maven version: " + System.getProperty("maven.version"));
private static final ConditionEvaluationResult ENABLED_BY_DEFAULT = enabled(
"@DisabledForMavenVersion is not present");
@Override
public ConditionEvaluationResult evaluateExecutionCondition(ExtensionContext context) {
Optional<DisabledForMavenVersion> optional = findAnnotation(context.getElement(), DisabledForMavenVersion.class);
if (optional.isPresent()) {
MavenVersion[] versions = optional.get().value();
requireGreaterZero(versions, "You must declare at least one version in @DisabledForMavenVersion");
return Stream.of(versions).anyMatch(MavenVersion::isCurrentVersion) ? DISABLED_ON_CURRENT_MAVEN_VERSION
: ENABLED_ON_CURRENT_MAVEN_VERSION;
}
return ENABLED_BY_DEFAULT;
}
}