template.macros.scenario.ftl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cluecumber-report-plugin
Show all versions of cluecumber-report-plugin
Plugin for generating clear Cucumber BDD test result reports.
<#--
Copyright 2018 trivago N.V.
Licensed 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.
-->
<#import "../macros/common.ftl" as common>
<#macro table status>
<#assign skippedRequested = status == "skipped">
<#assign failedRequested = status == "failed">
<#assign passedRequested = status == "passed">
<#assign allRequested = status == "all">
<#if
(skippedRequested && hasSkippedScenarios()) ||
(failedRequested && hasFailedScenarios()) ||
(passedRequested && hasPassedScenarios()) ||
allRequested
>
<#switch status>
<#case "skipped">
Skipped Scenarios <@common.startStatus status="skipped"/>
<#break>
<#case "failed">
Failed Scenarios <@common.startStatus status="failed"/>
<#break>
<#case "passed">
Passed Scenarios <@common.startStatus status="passed"/>
<#break>
<#case "all">
Scenario Sequence
<#break>
#switch>
<#if allRequested>
#
#if>
Feature
Scenario
Duration
<#if allRequested>
Status
#if>
<#list reports as report>
<#assign tooltipText = "">
<#if report.description?has_content>
<#assign tooltipText = "${report.description} | ">
#if>
<#assign tooltipText = "${tooltipText}${report.uri}">
<#list report.elements as element>
<#if (skippedRequested && element.skipped) || (failedRequested && element.failed) || (passedRequested && element.passed) || allRequested>
<#if allRequested>
${element.scenarioIndex}
#if>
${report.name?html}
${element.name?html}
${element.returnTotalDurationString()}
<#if allRequested>
<@common.status status=element.status.statusString/>
#if>
#if>
#list>
#list>
#if>
#macro>
<#macro attachments step>
<#if step.embeddings??>
<#list step.embeddings as attachment>
#list>
#if>
#macro>
<#macro errorMessage step>
<#if step.result.hasErrorMessage()>
${step.result.returnErrorMessageWithClickableLinks()}
#if>
#macro>
<#macro output step>
<#if step.hasOutputs()>
${step.returnEscapedOutputs()?join("
")}
#if>
#macro>
<#macro stepHooks hooks>
<#list hooks as hook>
${hook.glueMethodName}
${hook.result.returnDurationString()}
<@common.status status=hook.consolidatedStatusString/>
<@scenario.errorMessage step=hook/>
<@scenario.output step=hook/>
<@scenario.attachments step=hook/>
#list>
#macro>