net.serenitybdd.rest.utils.RestExecutionHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serenity-rest-assured Show documentation
Show all versions of serenity-rest-assured Show documentation
Serenity RestAssured integration
package net.serenitybdd.rest.utils;
import net.thucydides.model.environment.SystemEnvironmentVariables;
import net.thucydides.model.util.EnvironmentVariables;
import java.util.Collections;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import static net.thucydides.model.ThucydidesSystemProperty.SERENITY_DISABLE_REST_CALLS_AFTER_FAILURES;
import static net.thucydides.core.steps.StepEventBus.getParallelEventBus;
/**
* User: YamStranger
* Date: 4/6/16
* Time: 7:51 AM
*/
public class RestExecutionHelper {
private static final Set classWithDryCleanEnabled =
Collections.newSetFromMap(new ConcurrentHashMap());
public static boolean restCallsAreDisabled() {
EnvironmentVariables environmentVariables = SystemEnvironmentVariables.currentEnvironmentVariables();
if (!SERENITY_DISABLE_REST_CALLS_AFTER_FAILURES.booleanFrom(environmentVariables, true)) {
return false;
}
return isEnabledDryCleanOnlyForCurrentClass()
|| getParallelEventBus().isDryRun()
|| getParallelEventBus().currentTestIsSuspended();
}
/**
* Using of this method allowed to enable DryClean mode for particular class.
* During executing of methods restCallsAreDisabled and restCallsAreDisabled stacktrace will be
* analysed to find out if this class included.
* Be careful - until even for one class enabled dry clean - performance will be decreased.
*
* @param object some object where methods will be executed, basically it should be test
*/
public static void enableDryRunForClass(final Object object) {
enableDryRunForClass(object.getClass());
}
public static void enableDryRunForClass(final Class classOfObject) {
classWithDryCleanEnabled.add(classOfObject.getName());
}
public static void disableDryRunForClass(final Object object) {
enableDryRunForClass(object.getClass());
}
public static void disableDryRunForClass(final Class classOfObject) {
classWithDryCleanEnabled.remove(classOfObject.getName());
}
private static boolean isEnabledDryCleanOnlyForCurrentClass() {
for (final StackTraceElement element : Thread.currentThread().getStackTrace()) {
if (classWithDryCleanEnabled.contains(element.getClassName())) {
return true;
}
}
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy