How to use isRunningInMaven method of net.serenitybdd.jbehave.runners.SerenityReportingRunner class

Best Serenity jBehave code snippet using net.serenitybdd.jbehave.runners.SerenityReportingRunner.isRunningInMaven

Source:SerenityReportingRunner.java Github

copy

Full Screen

...150        getConfiguredEmbedder().embedderControls().useThreads(getThreadCount());151        if (metaFiltersAreDefined()) {152            getConfiguredEmbedder().useMetaFilters(getMetaFilters());153        }154//      if (!isRunningInMaven() && !isRunningInGradle()) {155        JUnitScenarioReporter junitReporter = new JUnitScenarioReporter(notifier, testCount(), getDescription(),156                getConfiguredEmbedder().configuration().keywords());157        // tell the reporter how to handle pending steps158        junitReporter.usePendingStepStrategy(getConfiguration().pendingStepStrategy());159        JUnitReportingRunner.recommendedControls(getConfiguredEmbedder());160        addToStoryReporterFormats(junitReporter);161//      }162        try {163            getConfiguredEmbedder().runStoriesAsPaths(getStoryPaths());164        } catch (Throwable e) {165            throw new SerenityManagedException(e);166        } finally {167            getConfiguredEmbedder().generateCrossReference();168        }169        shutdownTestSuite();170    }171    private boolean isRunningInGradle() {172        return Stream.of(new Exception().getStackTrace()).anyMatch(elt -> elt.getClassName().startsWith("org.gradle"));173    }174    /**175     * Override this method to add custom configuration to the JBehave embedder object.176     *177     * @param configuredEmbedder178     */179    public void beforeStoriesRun(ExtendedEmbedder configuredEmbedder) {180    }181    private void shutdownTestSuite() {182        StepEventBus.getEventBus().testSuiteFinished();183    }184    List<CandidateSteps> getCandidateSteps() {185        if (candidateSteps == null) {186            StepMonitor originalStepMonitor = createCandidateStepsWithNoMonitor();187            createCandidateStepsWith(originalStepMonitor);188        }189        return candidateSteps;190    }191    private void createCandidateStepsWith(StepMonitor stepMonitor) {192        // reset step monitor and recreate candidate steps193        getConfiguration().useStepMonitor(stepMonitor);194        candidateSteps = buildCandidateSteps();195        candidateSteps.forEach(196                step -> step.configuration().useStepMonitor(stepMonitor)197        );198    }199    private StepMonitor createCandidateStepsWithNoMonitor() {200        StepMonitor usedStepMonitor = getConfiguration().stepMonitor();201        createCandidateStepsWith(new NullStepMonitor());202        return usedStepMonitor;203    }204    private List<CandidateSteps> buildCandidateSteps() {205        List<CandidateSteps> candidateSteps;206        InjectableStepsFactory stepsFactory = configurableEmbedder207                .stepsFactory();208        if (stepsFactory != null) {209            candidateSteps = stepsFactory.createCandidateSteps();210        } else {211            Embedder embedder = getConfiguredEmbedder();212            candidateSteps = embedder.candidateSteps();213            if (candidateSteps == null || candidateSteps.isEmpty()) {214                candidateSteps = embedder.stepsFactory().createCandidateSteps();215            }216        }217        return candidateSteps;218    }219    private void addToStoryReporterFormats(JUnitScenarioReporter junitReporter) {220        StoryReporterBuilder storyReporterBuilder = getConfiguration().storyReporterBuilder();221        StoryReporterBuilder.ProvidedFormat junitReportFormat222                = new StoryReporterBuilder.ProvidedFormat(junitReporter);223        storyReporterBuilder.withFormats(junitReportFormat);224    }225    private List<Description> buildDescriptionFromStories() {226        List<CandidateSteps> candidateSteps = getCandidateSteps();227        JUnitDescriptionGenerator descriptionGenerator = new JUnitDescriptionGenerator(candidateSteps, getConfiguration());228        List<Description> storyDescriptions = new ArrayList<>();229        addSuite(storyDescriptions, "BeforeStories");230        PerformableTree performableTree = createPerformableTree(candidateSteps, getStoryPaths());231        storyDescriptions.addAll(descriptionGenerator.createDescriptionFrom(performableTree));232        addSuite(storyDescriptions, "AfterStories");233        return storyDescriptions;234    }235    private int countStories() {236        JUnitDescriptionGenerator descriptionGenerator = new JUnitDescriptionGenerator(getCandidateSteps(), getConfiguration());237        return descriptionGenerator.getTestCases() + beforeAndAfterStorySteps();238    }239    private int beforeAndAfterStorySteps() {240        return 2;241    }242    private PerformableTree createPerformableTree(List<CandidateSteps> candidateSteps, List<String> storyPaths) {243        ExtendedEmbedder configuredEmbedder = this.getConfiguredEmbedder();244        configuredEmbedder.useMetaFilters(getMetaFilters());245        BatchFailures failures = new BatchFailures(configuredEmbedder.embedderControls().verboseFailures());246        PerformableTree performableTree = configuredEmbedder.performableTree();247        RunContext context = performableTree.newRunContext(getConfiguration(), candidateSteps,248                configuredEmbedder.embedderMonitor(), configuredEmbedder.metaFilter(), failures);249        performableTree.addStories(context, configuredEmbedder.storyManager().storiesOfPaths(storyPaths));250        return performableTree;251    }252    private void addSuite(List<Description> storyDescriptions, String name) {253        storyDescriptions.add(Description.createTestDescription(Object.class,254                name));255    }256    private boolean metaFiltersAreDefined() {257        String metaFilters = getMetafilterSetting();258        return !StringUtils.isEmpty(metaFilters);259    }260    private String getMetafilterSetting() {261        Optional<String> environmentMetafilters = getEnvironmentMetafilters();262        Optional<String> annotatedMetafilters = getAnnotatedMetafilters(testClass);263        Optional<String> thucAnnotatedMetafilters = getThucAnnotatedMetafilters(testClass);264        return environmentMetafilters.orElse(annotatedMetafilters.orElse(thucAnnotatedMetafilters.orElse("")));265    }266    private Optional<String> getEnvironmentMetafilters() {267        return Optional.ofNullable(environmentVariables.getProperty(SerenityJBehaveSystemProperties.METAFILTER.getName()));268    }269    /**270     * When Metafilter in thucydides package is removed, this method and callers will be removed271     *272     * @param testClass273     * @return274     */275    @Deprecated276    private Optional<String> getThucAnnotatedMetafilters(Class<? extends ConfigurableEmbedder> testClass) {277        return (testClass.getAnnotation(net.thucydides.jbehave.annotations.Metafilter.class) != null) ?278                Optional.of(testClass.getAnnotation(net.thucydides.jbehave.annotations.Metafilter.class).value()) : Optional.empty();279    }280    private Optional<String> getAnnotatedMetafilters(Class<? extends ConfigurableEmbedder> testClass) {281        return (testClass.getAnnotation(Metafilter.class) != null) ?282                Optional.of(testClass.getAnnotation(Metafilter.class).value()) : Optional.empty();283    }284    protected boolean getIgnoreFailuresInStories() {285        return environmentVariables.getPropertyAsBoolean(SerenityJBehaveSystemProperties.IGNORE_FAILURES_IN_STORIES.getName(), false);286    }287    protected int getStoryTimeoutInSecs() {288        return environmentVariables.getPropertyAsInteger(SerenityJBehaveSystemProperties.STORY_TIMEOUT_IN_SECS.getName(),289                (int) getConfiguredEmbedder().embedderControls().storyTimeoutInSecs());290    }291    protected int getThreadCount() {292        return environmentVariables.getPropertyAsInteger(SerenityJBehaveSystemProperties.JBEHAVE_THREADS.getName(), 1);293    }294    protected String getStoryTimeout() {295        return environmentVariables.getProperty(296                SerenityJBehaveSystemProperties.STORY_TIMEOUT.getName(),297                getConfiguredEmbedder().embedderControls().storyTimeouts());298    }299    protected List<String> getMetaFilters() {300        String metaFilters = getMetafilterSetting();301        return Lists.newArrayList(Splitter.on(Pattern.compile(",")).trimResults().omitEmptyStrings().split(metaFilters));302    }303    protected boolean getIgnoreFailuresInView() {304        return environmentVariables.getPropertyAsBoolean(SerenityJBehaveSystemProperties.IGNORE_FAILURES_IN_VIEW.getName(), true);305    }306    public boolean isRunningInMaven() {307        return Stream.of(new Exception().getStackTrace()).anyMatch(elt -> elt.getClassName().contains("maven"));308    }309}...

Full Screen

Full Screen

isRunningInMaven

Using AI Code Generation

copy

Full Screen

1import net.serenitybdd.jbehave.runners.SerenityReportingRunner;2import org.jbehave.core.configuration.Configuration;3import org.jbehave.core.configuration.MostUsefulConfiguration;4import org.jbehave.core.embedder.Embedder;5import org.jbehave.core.embedder.EmbedderControls;6import org.jbehave.core.embedder.MetaFilter;7import org.jbehave.core.embedder.StoryControls;8import org.jbehave.core.failures.BatchFailures;9import org.jbehave.core.failures.UUIDExceptionWrapper;10import org.jbehave.core.io.*;11import org.jbehave.core.junit.JUnitStories;12import org.jbehave.core.model.*;13import org.jbehave.core.parsers.RegexStoryParser;14import org.jbehave.core.parsers.StoryParser;15import org.jbehave.core.reporters.*;16import org.jbehave.core.steps.InjectableStepsFactory;17import org.jbehave.core.steps.InstanceStepsFactory;18import org.jbehave.core.steps.StepCandidate;19import org.jbehave.core.steps.StepCollector;20import java.io.File;21import java.io.IOException;22import java.util.ArrayList;23import java.util.List;24import java.util.Properties;25public class MyRunner extends SerenityReportingRunner {26    private final Embedder embedder = new Embedder();27    private final Configuration configuration = new MostUsefulConfiguration();28    private final StoryControls storyControls = new StoryControls();29    private final StoryParser storyParser = new RegexStoryParser(configuration.keywords());30    private final StoryLoader storyLoader = new LoadFromClasspath(this.getClass());31    private final StoryReporterBuilder storyReporterBuilder = new StoryReporterBuilder();32    private final StoryPathResolver storyPathResolver = new UnderscoredCamelCaseResolver();33    private final StoryRunner storyRunner = new StoryRunner();34    private final MetaFilter metaFilter = new MetaFilter();35    private final EmbedderControls embedderControls = new EmbedderControls();36    private final StoryTimeouts storyTimeouts = new StoryTimeouts();37    private final StoryDuration storyDuration = new StoryDuration();38    private final BatchFailures failures = new BatchFailures();39    public MyRunner() {40        embedder.configuration().useStoryControls(storyControls);41        embedder.configuration().useStoryParser(storyParser);42        embedder.configuration().useStoryLoader(storyLoader);43        embedder.configuration().useStoryReporterBuilder(storyReporterBuilder);44        embedder.configuration().useStoryPathResolver(storyPathResolver);

Full Screen

Full Screen

isRunningInMaven

Using AI Code Generation

copy

Full Screen

1import net.serenitybdd.jbehave.runners.SerenityReportingRunner2import org.jbehave.core.configuration.Configuration3import org.jbehave.core.configuration.MostUsefulConfiguration4import org.jbehave.core.configuration.spring.SpringStoryControls5import org.jbehave.core.embedder.Embedder6import org.jbehave.core.embedder.StoryControls7import org.jbehave.core.io.LoadFromClasspath8import org.jbehave.core.io.StoryLoader9import org.jbehave.core.reporters.Format10import org.jbehave.core.reporters.StoryReporterBuilder11import org.jbehave.core.steps.ParameterConverters12import org.jbehave.core.steps.ParameterConverters.DateConverter13import org.jbehave.core.steps.ParameterConverters.ExamplesTableConverter14import org.jbehave.core.steps.ParameterConverters.ParameterConverter15import org.jbehave.core.steps.spring.SpringStepsFactory16import org.springframework.context.ApplicationContext17import org.springframework.context.support.ClassPathXmlApplicationContext18class SerenityStories extends SerenityReportingRunner {19    private final ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml")20    private final StoryLoader storyLoader = new LoadFromClasspath()21            new StoryReporterBuilder()22                    .withCodeLocation(CodeLocations.codeLocationFromClass(this.class))23                    .withDefaultFormats()24                    .withFormats(Format.CONSOLE, Format.TXT, Format.HTML, Format.XML)25                    .withFailureTrace(true)26                    .withFailureTraceCompression(true)27    private final ParameterConverter[] parameterConverters = new ParameterConverter[]{28            new DateConverter(new SimpleDateFormat("yyyy-MM-dd")),29            new ExamplesTableConverter(new LocalizedKeywords())30    }31    private final StoryControls storyControls = new SpringStoryControls()32            .doDryRun(isRunningInMaven())33            .doSkipScenariosAfterFailure(isRunningInMaven())34    private final Configuration configuration = new MostUsefulConfiguration()35            .useStoryControls(storyControls)36            .useStoryLoader(storyLoader)37            .useStoryReporterBuilder(storyReporterBuilder)38            .useParameterConverters(parameterConverters)39    private final Embedder embedder = new Embedder()

Full Screen

Full Screen

isRunningInMaven

Using AI Code Generation

copy

Full Screen

1import net.serenitybdd.jbehave.runners.SerenityReportingRunner;2import net.thucydides.core.util.EnvironmentVariables;3import net.thucydides.core.util.SystemEnvironmentVariables;4import org.junit.runner.RunWith;5@RunWith(SerenityReportingRunner.class)6public class MyStories extends SerenityStories {7    public MyStories() {8        EnvironmentVariables environmentVariables = SystemEnvironmentVariables.createEnvironmentVariables();9        if (!SerenityReportingRunner.isRunningInMaven(environmentVariables)) {10        } else {11        }12    }13}

Full Screen

Full Screen

isRunningInMaven

Using AI Code Generation

copy

Full Screen

1public class SerenityReportingRunner extends JUnitStory {2    private static final String MAVEN_PHASE = "maven.phase";3    private static final String MAVEN_PHASE_PROPERTY = "maven.phase.property";4    private static final String SERENITY_PHASE = "serenity.phase";5    private static final String SERENITY_PHASE_PROPERTY = "serenity.phase.property";6    public SerenityReportingRunner() {7        super();8        if (isRunningInMaven()) {9            configuredEmbedder().useMetaFilters(Arrays.asList(System.getProperty(MAVEN_PHASE_PROPERTY, MAVEN_PHASE)));10        } else {11            configuredEmbedder().useMetaFilters(Arrays.asList(System.getProperty(SERENITY_PHASE_PROPERTY, SERENITY_PHASE)));12        }13    }14    public Configuration configuration() {15        return new MostUsefulConfiguration()16                .useStoryLoader(new LoadFromClasspath(this.getClass()))17                .useStoryReporterBuilder(new StoryReporterBuilder()18                        .withCodeLocation(CodeLocations.codeLocationFromClass(this.getClass()))19                        .withDefaultFormats()20                        .withFormats(Format.CONSOLE, Format.HTML, Format.XML));21    }22    public InjectableStepsFactory stepsFactory() {23        return new InstanceStepsFactory(configuration(), new SearchSteps());24    }25    public static boolean isRunningInMaven() {26        return System.getProperty("maven.home") != null;27    }28}29Thanks for the reply. I have tried to use the code you suggested but it is not working. I have created a class called SerenityReportingRunner and created an object of JUnitStory class. I have created a method called isRunningInMaven() in the same class which returns true. I have created another class called SearchStories which extends SerenityReportingRunner. In the SearchStories class, I have created a method called run() which returns the SerenityReportingRunner class. But the problem is the serenity report is not generated. I have also tried to use the code you suggested in the SearchStories class but it is not working. I have created a method called run() which returns the JUnitStory class. I have also tried to use the code you suggested in the SearchStories class but it is not working. I have created a method called run() which returns the JUnitStory class. But the problem is the serenity report is not generated. I have also tried to use the code you suggested in the SearchStories class but it is not working. I

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Serenity jBehave automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful