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

net.jqwik.engine.hooks.lifecycle.ContainerLifecycleMethodsHook Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
package net.jqwik.engine.hooks.lifecycle;

import java.lang.reflect.*;
import java.util.*;

import org.junit.platform.commons.support.*;
import org.junit.platform.engine.support.hierarchical.*;

import net.jqwik.api.lifecycle.*;
import net.jqwik.engine.hooks.*;

public class ContainerLifecycleMethodsHook implements AroundContainerHook {

	@Override
	public void beforeContainer(ContainerLifecycleContext context) {
		context.optionalContainerClass().ifPresent(containerClass -> {
			List beforeContainerMethods = LifecycleMethods.findBeforeContainerMethods(containerClass);
			callContainerMethods(beforeContainerMethods, context);
		});
	}

	private void callContainerMethods(List methods, ContainerLifecycleContext context) {
		ThrowableCollector throwableCollector = new ThrowableCollector(ignore -> false);
		for (Method method : methods) {
			Object[] parameters = MethodParameterResolver.resolveParameters(method, context);
			throwableCollector.execute(() -> callStaticMethod(method, parameters));
		}
		throwableCollector.assertEmpty();
	}

	private void callStaticMethod(Method method, Object[] parameters) {
		ReflectionSupport.invokeMethod(method, null, parameters);
	}

	@Override
	public void afterContainer(ContainerLifecycleContext context) {
		context.optionalContainerClass().ifPresent(containerClass -> {
			List afterContainerMethods = LifecycleMethods.findAfterContainerMethods(containerClass);
			callContainerMethods(afterContainerMethods, context);
		});
	}

	@Override
	public PropagationMode propagateTo() {
		return PropagationMode.ALL_DESCENDANTS;
	}

	@Override
	public boolean appliesTo(Optional element) {
		return element.map(e -> e instanceof Class).orElse(false);
	}

	@Override
	public int proximity() {
		return Hooks.AroundContainer.CONTAINER_LIFECYCLE_METHODS_PROXIMITY;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy