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

com.tngtech.junit.dataprovider.DataProviderInvocationContext Maven / Gradle / Ivy

Go to download

A TestNG like dataprovider runner for JUnit Jupiter which is feature comparable to JUnit4 dataprovider.

There is a newer version: 2.10
Show newest version
package com.tngtech.junit.dataprovider;

import static com.tngtech.junit.dataprovider.Preconditions.checkNotNull;
import static java.util.Collections.singletonList;

import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;

import org.junit.jupiter.api.extension.Extension;
import org.junit.jupiter.api.extension.TestTemplateInvocationContext;

import com.tngtech.junit.dataprovider.placeholder.BasePlaceholder;
import com.tngtech.junit.dataprovider.placeholder.ReplacementData;

class DataProviderInvocationContext implements TestTemplateInvocationContext {

    private final Method testMethod;
    private final List arguments;
    private final DisplayNameContext displayNameContext;

    DataProviderInvocationContext(Method testMethod, List arguments, DisplayNameContext displayNameContext) {
        this.testMethod = checkNotNull(testMethod, "'testMethod' must not be null");
        this.arguments = new ArrayList<>(checkNotNull(arguments, "'arguments' must not be null"));
        this.displayNameContext = checkNotNull(displayNameContext, "'displayNameContext' must not be null");
    }

    @Override
    public String getDisplayName(int invocationIndex) {
        ReplacementData data = ReplacementData.of(testMethod, invocationIndex, arguments);

        String result = displayNameContext.getFormat();
        for (BasePlaceholder placeHolder : displayNameContext.getPlaceholders()) {
            result = placeHolder.process(data, result);
        }
        return result;
    }

    @Override
    public List getAdditionalExtensions() {
        return singletonList(new DataProviderParameterResolver(arguments));
    }
}