Currently supports SpecFlow v2.1 - 3.1.*
See Allure report generated from https://github.com/allure-framework/allure-csharp/tree/main/Allure.Features
Please use corresponding NuGet package version.
Install Allure.SpecFlow nuget package according to your Specflow version.
For Specflow 3 please add or update the following section in your specflow.json:
"stepAssemblies": [
{ "assembly": "Allure.SpecFlowPlugin" }
]
The plugin uses Allure.Commons json configuration extended with custom sections.
In case if you want to customize host name which is displayed in Allure Timeline section, please configure allure.title
property in json configuraion file.
Default value for allure.directory in allureConfig.json is "allure-results", default working directory in NUnit 3.* is the working directory of console runner. If you don't want to place allure results into NUnit default working folder please either set absolute path in allure.config or set working directory for NUnit in your test setup, e.g.:
[OneTimeSetUp]
public void Init()
{
Environment.CurrentDirectory = Path.GetDirectoryName(GetType().Assembly.Location);
}
Just run your SpecFlow scenarios and find allure-results
folder ready to generate Allure report.
You can structure your scenarios in 3 Allure hierarchies using feature and scenario tags. Please read report structure Allure documentation section for additional details. Hierarchies consist of the following levels:
Suites
- Parent Suite
-
- Suite
-
-
- Sub Suite
-
Behaviors
- Epic
-
- Feature
-
-
- Story
-
Packages
- Package
-
- Class
-
-
- Method
-
The plugin uses allure:grouping
configuration section to parse tags with the regular expression. If the expression contains the group, it will be used as hierarchy level name otherwise entire match will be used. E.g:
^mytag.*
: any tags starting with @mytag
will be used for grouping.
^type:(ui|api)
: @ui
or @api
tags from regex pattern will be used for grouping.
Check this config example as a starting point.
You can add links to your scenarios using tags. Tag and link patterns can be configured in allureConfig.json
{
"allure": {
"links": [
"https://myissuetracker.org/{issue}",
"https://mytestmanagementsystem.org?test={tms}"
]
},
"specflow": {
"links": {
"link": "^link:(.+)",
"issue": "^\\d+",
"tms": "^tms:(\\d+)"
}
}
}
The following scenario
@123456 @tms:42 @link:http://example.org
Scenario: I do like click on links in Allure report
will have three links in Allure report: 123456, 42 and http://example.org.
In case there are links, which are generated during tests, then they can be added in code via AllureLifecycle:
AllureLifecycle.UpdateTestCase(testResult.uuid, tc =>
{
tc.links.Add(new Link()
{
name = "Example link",
url = "http://example.com"
});
});
This will show for scenario link with Text: Example link; and url: "http://example.com".
You can add Severity for your scenarios using tags. It can be configured in allureConfig.json
"labels": {
"severity": "^(normal|blocker|critical|minor|trivial)"
},
The following scenario
@critical
Scenario: ....
will set current scenario severity in Allure report as Blocker
You can add Label for your scenarios using tags. It can be configured in allureConfig.json
"labels": {
"label": "^label:([\\w]+):(.+)"
},
The following scenario
@label:layer:e2e: @label:as_id:123
Scenario: ....
will set current scenario Layer as e2e and Id as 123 in Allure report
Table arguments in SpecFlow steps can be converted either to step csv-attacments or step parameters in the Allure report. The conversion is configurable in specflow:stepArguments
config section.
With specflow:stepArguments:convertToParameters
set to true
the following table arguments will be represented as parameters:
- one row tables
- two column tables with the headers matching both
specflow:stepArguments:paramNameRegex
andspecflow:stepArguments:paramValueRegex
regular expressions.
SpecFlow | Allure |
---|---|
You can add attachments to an Allure report from your step bindings:
using Allure.Commons;
...
AllureLifecycle.Instance.AddAttachment(path, "Attachment Title");
// or
AllureLifecycle.Instance.AddAttachment("Attachment Title", "application/txt", "path");
// where "application/txt" - type of your attachment