All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.jbehavesupport.runner.JUnitRunner Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.jbehavesupport.runner;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import lombok.Getter;
import lombok.extern.slf4j.Slf4j;
import org.jbehave.core.ConfigurableEmbedder;
import org.jbehave.core.configuration.Configuration;
import org.jbehave.core.embedder.Embedder;
import org.jbehave.core.embedder.PerformableTree;
import org.jbehave.core.failures.BatchFailures;
import org.jbehave.core.junit.JUnitStory;
import org.jbehave.core.model.Story;
import org.jbehave.core.reporters.StoryReporter;
import org.jbehave.core.steps.CandidateSteps;
import org.jbehave.core.steps.NullStepMonitor;
import org.jbehavesupport.runner.description.StoryParser;
import org.jbehavesupport.runner.description.StoryResult;
import org.jbehavesupport.runner.reporter.JUnitStepReporter;
import org.jbehavesupport.runner.reporter.JUnitStoryReporter;
import org.junit.runner.Description;
import org.junit.runner.notification.RunNotifier;
import org.junit.runners.BlockJUnit4ClassRunner;
import org.junit.runners.model.InitializationError;
import org.junit.runners.model.Statement;
/**
* @author Michal Bocek
* @since 26/08/16
*/
@Slf4j
public class JUnitRunner extends BlockJUnit4ClassRunner {
@Getter
private final Description description;
private final List storyPaths;
private final List candidateSteps;
private final Embedder configuredEmbedder;
private final String reportLevel;
public enum ReportLevel {
STEP, STORY
}
public JUnitRunner(Class extends ConfigurableEmbedder> testClass)
throws InitializationError, IllegalAccessException, InstantiationException, InvocationTargetException,
NoSuchMethodException {
super(testClass);
reportLevel = System.getProperty("jbehave.report.level", ReportLevel.STEP.name());
ConfigurableEmbedder configurableEmbedder = testClass.newInstance();
configuredEmbedder = configurableEmbedder.configuredEmbedder();
storyPaths = getStoryPaths(configurableEmbedder);
candidateSteps = getCandidateStepsWithNullStepMonitor(configuredEmbedder);
description = buildStoryDescription(testClass, configuredEmbedder.configuration());
}
@Override
protected Statement childrenInvoker(final RunNotifier notifier) {
return new Statement() {
@Override
public void evaluate() throws Throwable {
StoryReporter junitReporter = resolveReporter(reportLevel);
configuredEmbedder.configuration()
.storyReporterBuilder()
.withReporters(junitReporter);
try {
configuredEmbedder.runStoriesAsPaths(storyPaths);
} catch (Throwable e) {
throw new RuntimeException(e);
} finally {
configuredEmbedder.generateCrossReference();
}
}
private StoryReporter resolveReporter(String reportLevel) {
switch (ReportLevel.valueOf(reportLevel)) {
case STEP:
return new JUnitStepReporter(notifier, description, configuredEmbedder.configuration());
case STORY:
return new JUnitStoryReporter(notifier, description, configuredEmbedder.configuration());
default:
throw new IllegalStateException("Report level does not exists: " + reportLevel);
}
}
};
}
private Description buildStoryDescription(Class extends ConfigurableEmbedder> testClass,
Configuration configuration) {
Description description = Description.createSuiteDescription(testClass);
List descriptions = new ArrayList<>();
addStories(descriptions, configuration);
for (Description currentDescription : descriptions) {
description.addChild(currentDescription);
}
return description;
}
private void addStories(List descriptions, Configuration configuration) {
StoryResult storyResult = StoryParser.parse(createPerformableTree(), ReportLevel.valueOf(reportLevel))
.withCandidateSteps(candidateSteps)
.withKeywords(configuration.keywords())
.buildDescription();
descriptions.addAll(storyResult.getStoryDescriptions());
}
private PerformableTree createPerformableTree() {
BatchFailures failures = new BatchFailures(configuredEmbedder.embedderControls().verboseFailures());
PerformableTree performableTree = new PerformableTree();
PerformableTree.RunContext context = performableTree.newRunContext(configuredEmbedder.configuration(),
configuredEmbedder.stepsFactory(),
configuredEmbedder.embedderMonitor(),
configuredEmbedder.metaFilter(), failures);
List stories = new ArrayList<>();
for (String storyPath : storyPaths) {
stories.add(performableTree.storyOfPath(configuredEmbedder.configuration(), storyPath));
}
performableTree.addStories(context, stories);
return performableTree;
}
private List getCandidateStepsWithNullStepMonitor(Embedder embedder) {
NullStepMonitor stepMonitor = new NullStepMonitor();
List candidateSteps = embedder.stepsFactory().createCandidateSteps();
for (CandidateSteps candidateStep : candidateSteps) {
candidateStep.configuration().useStepMonitor(stepMonitor);
}
return candidateSteps;
}
@SuppressWarnings("unchecked")
private List getStoryPaths(ConfigurableEmbedder configurableEmbedder)
throws InvocationTargetException, IllegalAccessException, NoSuchMethodException {
List stories;
if (configurableEmbedder instanceof JUnitStory) {
Configuration configuration = configurableEmbedder.configuredEmbedder().configuration();
String story = configuration.storyPathResolver().resolve(configurableEmbedder.getClass());
stories = Collections.singletonList(story);
} else {
Method method = lookupStoryPathsMethod(configurableEmbedder.getClass());
method.setAccessible(true);
stories = ((List) method.invoke(configurableEmbedder, (Object[]) null));
}
return stories;
}
private Method lookupStoryPathsMethod(Class extends ConfigurableEmbedder> testClass)
throws NoSuchMethodException {
Method method;
try {
method = storyPathsLookup(testClass);
} catch (NoSuchMethodException e) {
method = testClass.getMethod("storyPaths", (Class[]) null);
}
return method;
}
private Method storyPathsLookup(Class> clazz) throws NoSuchMethodException {
while (clazz != null) {
Method[] methods = clazz.getDeclaredMethods();
for (Method method : methods) {
// Test any other things about it beyond the name...
if (method.getName().equals("storyPaths")) {
return method;
}
}
clazz = clazz.getSuperclass();
}
throw new NoSuchMethodException("Can not find method: " + "storyPaths");
}
}