org.junit.jupiter.api.condition.DisabledOnOsCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-jupiter-api Show documentation
Show all versions of junit-jupiter-api Show documentation
Module "junit-jupiter-api" of JUnit 5.
/*
* Copyright 2015-2024 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
*
* https://www.eclipse.org/legal/epl-v20.html
*/
package org.junit.jupiter.api.condition;
import java.util.Arrays;
import org.junit.jupiter.api.extension.ConditionEvaluationResult;
import org.junit.jupiter.api.extension.ExecutionCondition;
import org.junit.platform.commons.util.Preconditions;
/**
* {@link ExecutionCondition} for {@link DisabledOnOs @DisabledOnOs}.
*
* @since 5.1
* @see DisabledOnOs
*/
class DisabledOnOsCondition extends AbstractOsBasedExecutionCondition {
DisabledOnOsCondition() {
super(DisabledOnOs.class);
}
@Override
ConditionEvaluationResult evaluateExecutionCondition(DisabledOnOs annotation) {
boolean osSpecified = annotation.value().length > 0;
boolean archSpecified = annotation.architectures().length > 0;
Preconditions.condition(osSpecified || archSpecified,
"You must declare at least one OS or architecture in @DisabledOnOs");
boolean enabled = isEnabledBasedOnOs(annotation) || isEnabledBasedOnArchitecture(annotation);
String reason = createReason(enabled, osSpecified, archSpecified);
return enabled ? ConditionEvaluationResult.enabled(reason)
: ConditionEvaluationResult.disabled(reason, annotation.disabledReason());
}
private boolean isEnabledBasedOnOs(DisabledOnOs annotation) {
OS[] operatingSystems = annotation.value();
if (operatingSystems.length == 0) {
return false;
}
return Arrays.stream(operatingSystems).noneMatch(OS::isCurrentOs);
}
private boolean isEnabledBasedOnArchitecture(DisabledOnOs annotation) {
String[] architectures = annotation.architectures();
if (architectures.length == 0) {
return false;
}
return Arrays.stream(architectures).noneMatch(CURRENT_ARCHITECTURE::equalsIgnoreCase);
}
}