cucumber.runtime.RuntimeGlue Maven / Gradle / Ivy
package cucumber.runtime;
import cucumber.api.StepDefinitionReporter;
import cucumber.runtime.xstream.LocalizedXStreams;
import gherkin.I18n;
import gherkin.formatter.Argument;
import gherkin.formatter.model.Step;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
public class RuntimeGlue implements Glue {
private final Map stepDefinitionsByPattern = new TreeMap();
private final List beforeHooks = new ArrayList();
private final List afterHooks = new ArrayList();
private final UndefinedStepsTracker tracker;
private final LocalizedXStreams localizedXStreams;
public RuntimeGlue(UndefinedStepsTracker tracker, LocalizedXStreams localizedXStreams) {
this.tracker = tracker;
this.localizedXStreams = localizedXStreams;
}
@Override
public void addStepDefinition(StepDefinition stepDefinition) {
StepDefinition previous = stepDefinitionsByPattern.get(stepDefinition.getPattern());
if (previous != null) {
throw new DuplicateStepDefinitionException(previous, stepDefinition);
}
stepDefinitionsByPattern.put(stepDefinition.getPattern(), stepDefinition);
}
@Override
public void addBeforeHook(HookDefinition hookDefinition) {
beforeHooks.add(hookDefinition);
Collections.sort(beforeHooks, new HookComparator(true));
}
@Override
public void addAfterHook(HookDefinition hookDefinition) {
afterHooks.add(hookDefinition);
Collections.sort(afterHooks, new HookComparator(false));
}
@Override
public List getBeforeHooks() {
return beforeHooks;
}
@Override
public List getAfterHooks() {
return afterHooks;
}
@Override
public StepDefinitionMatch stepDefinitionMatch(String featurePath, Step step, I18n i18n) {
List matches = stepDefinitionMatches(featurePath, step);
try {
if (matches.size() == 0) {
tracker.addUndefinedStep(step, i18n);
return null;
}
if (matches.size() == 1) {
return matches.get(0);
} else {
throw new AmbiguousStepDefinitionsException(matches);
}
} finally {
tracker.storeStepKeyword(step, i18n);
}
}
private List stepDefinitionMatches(String featurePath, Step step) {
List result = new ArrayList();
for (StepDefinition stepDefinition : stepDefinitionsByPattern.values()) {
List arguments = stepDefinition.matchedArguments(step);
if (arguments != null) {
result.add(new StepDefinitionMatch(arguments, stepDefinition, featurePath, step, localizedXStreams));
}
}
return result;
}
@Override
public void reportStepDefinitions(StepDefinitionReporter stepDefinitionReporter) {
for (StepDefinition stepDefinition : stepDefinitionsByPattern.values()) {
stepDefinitionReporter.stepDefinition(stepDefinition);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy