Allure Csharp Versions Save

Allure integrations for C# test frameworks

2.12.0

1 month ago

What's Changed

๐Ÿš€ New adapter for Reqnroll โš ๏ธ Namespace changes in Allure.NUnit and Allure.Xunit ๐ŸŽฏ New target frameworks of Allure.Xunit ๐Ÿ”ฌ Improvements ย ย ย ย New implementation of AddScreenDiff (#435) ย ย ย ย Standard failed/broken classification ย ย ย ย Other improvements ๐Ÿž Bug fixes Deprecations and removals Other changes ย ย ย ย โฌ†๏ธ Dependency Updates ย ย ย ย ๐Ÿ“ฆ Packaging changes ย ย ย ย ๐Ÿ‘ป Internal changes Pull requests and contributors New contributors

๐Ÿš€ New adapter for Reqnroll

Meet Allure.Reqnroll - a new Allure adapter for Reqnroll.

Give it a try by installing the Allure.Reqnroll package to your Reqnroll project. Once it's done, you're all set! Run your tests and create the report from the allure-results in the project output directory.

The documentation is currently in progress. Once it's done, the link will be added to this description and the root README file of the repo.

Notable differences with Allure.SpecFlow

Since Reqnroll is a fork of SpecFlow (it was forked back by Gรกspรกr Nagy (gasparnagy), the original creator of SpecFlow), adapters for Reqnroll and SpecFlow have some similarities. However, some notable changes are listed below.

Support for xUnit.net

Allure.Reqnroll correctly works with all unit test frameworks supported by Reqnroll out-of-the-box: NUnit, xUnit.net, and MSTest. In contrast, Allure.SpecFlow currently can't work with xUnit.net due to problems with Allure context isolation (see #431).

Zero configuration

Allure.Reqnroll integrates with Reqnroll in a way that differs from how Allure.SpecFlow integrates with SpecFlow. Because of that, users are not required to alter the Reqnroll configuration to enable the adapter.

SpecFlow, on the other hand, requires users to add an entry to the stepAssemblies list in specflow.json. A missing entry leads to an error and is a common source of problems.

allureConfig.json format changes

Allure.SpecFlow features the specflow section of allureConfig.json where you may define Gherkin tag patterns and configure the table-to-parameter conversion.

In Allure.Reqnroll that section was moved to allure/gherkinPatterns. Some properties were renamed. The packages sub-section was removed (the package label is automatically filled by Allure.Reqnroll).

An example:
{
  "allure": {
    "gherkinPatterns": {
      "stepArguments": {
        "createFromDataTables": false,
        "nameColumn": "ParameterName",
        "valueColumn": "ParameterValue"
      },
      "grouping": {
        "suites": {
          "parentSuite": "allure\\.parentSuite:(.+)",
          "suite": "allure\\.suite:(.+)",
          "subSuite": "allure\\.subSuite:(.+)"
        },
        "behaviors": {
          "epic": "allure\\.epic:(.+)",
          "story": "allure\\.story:(.+)"
        }
      },
      "metadata": {
        "owner": "allure\\.owner:(.+)",
        "severity": "(normal|blocker|critical|minor|trivial)",
        "label": "allure\\.label\\.([^:]+):(.+)"
      },
      "links": {
        "link": "allure\\.link:(.+)",
        "issue": "allure\\.issue:(.+)",
        "tms": "allure\\.tms:(.+)"
      }
    }
  }
}

The schema can be accessed at https://raw.githubusercontent.com/allure-framework/allure-csharp/2.12.0/Allure.Reqnroll/Schemas/allureConfig.schema.json.

Gherkin pattern defaults

Allure.SpecFlow allows users to define patterns to convert Gherkin tags to Allure data. Allure.Reqnroll provides reasonable defaults for such patterns. That also contributes to the zero-configuration experience of Allure Reqnroll (see #439).

The list of the default patterns

The default patterns used by Allure Reqnroll are equivalent to having the following allureConfig.json in place:

{
  "allure": {
    "gherkinPatterns": {
      "stepArguments": {
        "createFromDataTables": false
      },
      "grouping": {
        "suites": {
          "parentSuite": "allure\\.parentSuite:(.+)",
          "suite": "allure\\.suite:(.+)",
          "subSuite": "allure\\.subSuite:(.+)"
        },
        "behaviors": {
          "epic": "allure\\.epic:(.+)",
          "story": "allure\\.story:(.+)"
        }
      },
      "metadata": {
        "owner": "allure\\.owner:(.+)",
        "severity": "(normal|blocker|critical|minor|trivial)",
        "label": "allure\\.label\\.([^:]+):(.+)"
      },
      "links": {
        "link": "allure\\.link:(.+)",
        "issue": "allure\\.issue:(.+)",
        "tms": "allure\\.tms:(.+)"
      }
    }
  }
}

Reliable test plans

Unlike Allure SpecFlow, Allure.Reqnroll doesn't utilize runtime patching to implement test plans. That means features that depend on test plans (e.g., selective run) will work with Allure.Reqnroll in areas where they might not work with Allure.SpecFlow. That includes:

  • ARM machines
  • Release builds
  • New versions of .NET

โš ๏ธ Namespace changes in Allure.NUnit and Allure.Xunit

In this release, we target some historical discrepancies between package names and namespaces of Allure.NUnit and Allure.Xunit.

Old namespaces

Allure.NUnit

The root namespace of Allure.NUnit has been NUnit.Allure up until now. That's the namespace Nick Chursin (unickq) used in his original allure-nunit project until the project was transferred to allure-framework. It matched the package name at the time (NUnit.Allure; it is still available at nuget.org, although deprecated).

Once we changed the package name according to our general convention Allure.<Framework>, the namespace stopped matching the package name. That has created an extra barrier for users who usually expect the root namespace to be the same as the package name. That may also cause users to mix the code of Allure.NUnit and the code of NUnit.

Allure.Xunit

In Allure.XUnit, there are two namespaces: Allure.Xunit and Allure.XUnit (note the casing of u). The public API has been split between both of them at the same time. The attributes have been contained in Allure.Xunit while some other APIs, like AllureStepAttribute - are in Allure.XUnit.

New namespaces

Now, the root namespace of Allure.NUnit is Allure.NUnit. The root namespace of Allure.Xunit is Allure.Xunit.

Additionally, the NUnit.Allure.Core.AllureNUnitAttribute should now be accessed via the root namespace instead of the Core sub-namespace, i.e., as Allure.NUnit.AllureNUnitAttribute.

We advise you to transition accordingly.

Examples

For example, given the following code:

using NUnit.Framework;
using NUnit.Allure.Attributes;
using NUnit.Allure.Core;

namespace MyNamespace;

[AllureNUnit]
class MyTestClass
{
    [Test]
    public void MyTest()
    {
        /* ... */
    }

    [AllureStep]
    void MyStep()
    {
        /* ... */
    }
}

It should be change to the following one:

using NUnit.Framework;
using Allure.NUnit.Attributes;
using Allure.NUnit;

namespace MyNamespace;

[AllureNUnit]
class MyTestClass
{
    [Test]
    public void MyTest()
    {
        /* ... */
    }

    [AllureStep]
    void MyStep()
    {
        /* ... */
    }
}

IDE features like "find & replace all" might assist you in the transition.

The transition becomes trivial if you've added Allure namespaces to the list of global usings. Given the following part of the .csproj file:

<Project Sdk="Microsoft.NET.Sdk">
  <!-- ... -->

  <ItemGroup>
    <Using Include="Allure.Xunit.Attributes">
    <Using Include="Allure.XUnit.Attributes.Steps">

    <!-- Other usings -->
    <!-- ... -->
  </ItemGroup>

</Project>

Just a single character should be changed:

<Project Sdk="Microsoft.NET.Sdk">
  <!-- ... -->

  <ItemGroup>
    <Using Include="Allure.Xunit.Attributes">
    <Using Include="Allure.Xunit.Attributes.Steps"> <!-- Note the casing here -->

    <!-- Other usings -->
    <!-- ... -->
  </ItemGroup>

</Project>

Backward compatibility

The old namespaces remain in place for both Allure.NUnit and Allure.Xunit. Accessing the API through them now triggers the CS0618 warning. While we advise you to transition to new namespaces, you may ignore the warnings and continue using the old ones.

We will remove the public API access from the old namespaces in the next major release.

๐ŸŽฏ New target frameworks of Allure.Xunit

Allure.Xunit now targets netstandard2.0 (down from netstandard2.1) and netcoreapp3.1 (increased from netcoreapp2.0 because of security issues; for example: CVE-2021-26701).

Due to how xUnit.net dependencies are managed, that means that the package works in the following runtimes:

  • .NET Core 3.1
  • .NET 5.0 or greater

Other runtimes are excepted to work except the following:

  • .NET Framework (any version)
  • .NET Core before 3.1

The general rule is this:

The runtime is supported by Allure.Xunit if, given that runtime, Nuget selects an assembly of xunit.runner.utilities that is compatible with the chosen assembly of Allure.Xunit. I.e.:

  • If the netcoreapp3.1 version of Allure.Xunit is selected, the netcoreapp1.0(*) version of xunit.runner.utilities is also selected, OR
  • If the netstandard2.0 version of Allure.Xunit is selected, the netstandard1.5(*) version of xunit.runner.utilities is also selected.

(*) Specific versions of xunit.runner.utilities's target frameworks are subject to change by the xUnit.net team in the future.

๐Ÿ”ฌ Improvements

New implementation of AddScreenDiff (#435)

AllureApi.AddScreenDiff now aligns with allure-framework/allure2#1145. The new implementation allows multiple screen diffs to be attached to a single test result.

Standard failed/broken classification

Previously, each adapter has used its own rules to distinguish between failed and broken tests/steps/fixtures:

  • Allure.NUnit has checked if the error message provided by NUnit contains at least one of the magic words that makes the test broken. If no match is found, the test is considered failed. The words had to be specified via the brokenTestData configuration property. Usually, those were type names of exceptions.
  • Allure.Xunit has interpreted a test that resulted in an unhandled exception of a type from the Xunit.Sdk namespace as failed; all other exceptions have corresponded to the broken status.
  • Allure.SpecFlow has resolved tests/steps as failed, regardless of the exception type.

Now, a general algorithm is implemented in Allure.Net.Commons. It checks the exception's type against a pre-defined list of type names associated with assertion errors. Each adapter provides its own list of such exception types. Users may redefine the list via the failExceptions property of allureConfig.json:

{
  "allure": {
    "failExceptions": [
      "NUnit.Framework.AssertionException",
      "MyCustomAssertionException"
    ]
  }
}

If an exception matches an entry from the list, the status is resolved as failed. Otherwise, it's resolved as broken. An entry is considered a match if it equals to the full name of one of the following types:

  • the type of the exception,
  • one of the exception's base classes,
  • one of the interfaces implemented by the exception.

Currently, if a type denoted by failExceptions is generic, it must be a closed constructed class.

Steps and fixtures added via AllureApi, ExtendedApi, [AllureStep], [AllureBefore], or [AllureAfter] use this algorithm automatically.

Allure.Xunit also uses that algorithm to resolve a test's status.

Allure.Reqnroll and Allure.SpecFlow both use it when resolving statuses of steps and features created from bindings, as well as statuses of test results created from scenarios.

Due to the limitations of NUnit, Allure.NUnit uses a different algorithm that analyzes assertion results provided by NUnit to distinguish between tests with unhandled exceptions and tests with a failed assertion. The new algorithm is more reliable than the old one and requires no extra configuration.

Other improvements

  • AllureLifecycle.ScheduleTestCase(TestResult testResult) was added to schedule a test case. The test case should then be started via AllureLifecycle.StartTestCase().
  • Allure.NUnit now doesn't include empty console logs and status details in the report (#363).
  • Allure.NUnit now doesn't emit empty containers for ignored tests.
  • Allure.SpecFlow now includes scenario descriptions in the report as test result descriptions (#429).

๐Ÿž Bug fixes

  • A parameter serialization algorithm now falls back to ToString() in case serialization fails (#438, #448).
  • dotnet test now doesn't return exit code 1 if Harmony fails to patch xUnit.net, but all tests pass (#441).
  • Now assemblies and Nuget packages depend on the same version of AspectInjector.
  • Now Allure.NUnit correctly reports fixtures if some but not all [OneTimeTearDown] methods of a test class are annotated with [AllureAfter].
  • [AllureAfter] now doesn't throw IndexOutOfRangeException if applied to a method that has parameters (#419).
  • Allure.NUnit now doesn't report ignored tests if they aren't included in the test plan, even if [AllureDisplayIgnored] is applied to the class.
  • Allure.Xunit now only scans assemblies matching the *reporters* pattern when trying to find a second reporter. That improves the startup time and prevents assembly loading exceptions in many scenarios (#412).
  • Now Allure.Xunit doesn't warn about missing parameters of theories skipped with [Theory(Skip = "...")] (#421).

Deprecations and removals

Deprecations and removals in Allure.Net.Commons

The following previously deprecated API is removed from Allure.Net.Commons:

  • AllureLifecycle:
    • CurrentTestIdGetter (it's not currently in use)
    • Old UUID-based lifecycle management methods (their UUID-less counterparts should be used instead):
      • StartTestContainer(string parentUuid, TestResultContainer container)
      • UpdateTestContainer(string uuid, Action&lt;TestResultContainer> update)
      • StopTestContainer(string uuid)
      • WriteTestContainer(string uuid)
      • StartBeforeFixture(FixtureResult result, out string uuid)
      • StartBeforeFixture(string uuid, FixtureResult result)
      • StartBeforeFixture(string parentUuid, FixtureResult result, out string uuid)
      • StartBeforeFixture(string parentUuid, string uuid, FixtureResult result)
      • StartAfterFixture(string parentUuid, FixtureResult result, out string uuid)
      • StartAfterFixture(string parentUuid, string uuid, FixtureResult result)
      • UpdateFixture(string uuid, Action&lt;FixtureResult> update)
      • StopFixture(string uuid)
      • StartTestCase(string containerUuid, TestResult testResult)
      • UpdateTestCase(string uuid, Action&lt;TestResult> update)
      • StopTestCase(string uuid)
      • WriteTestCase(string uuid)
      • StartStep(StepResult result, out string uuid)
      • StartStep(string uuid, StepResult result)
      • StartStep(string parentUuid, string uuid, StepResult result)
      • UpdateStep(string uuid, Action&lt;TestResult> update)
      • StopStep(string uuid)
    • User API methods (AllureApi/ExtendedApi should be used instead):
      • AddAttachment (all overloads)
      • AddScreenDiff (all overloads)
  • Old step-related classes (they currently do nothing and shouldn't be used):
    • StepFailedException
    • IStepLogger
    • IStepActionLogger
  • CoreStepsHelper (AllureApi/ExtendedApi should be used instead)

Deprecations and removals in Allure.NUnit

The following API is deprecated now in Allure.NUnit:

  • AllureExtensions:
    • WrapSetUpTearDownParams - it has no effect.
    • WrapInStep (all overloads) - use AllureApi.Step instead.

The following previously deprecated API is removed from Allure.NUnit:

  • AllureNUnitHelper(*):
    • WrapInStep - use AllureApi.Step or [AllureStep] instead.
    • SaveOneTimeResultToContext - it wasn't meant to be public and shouldn't be used.
    • AddOneTimeSetupResult - it wasn't meant to be public and shouldn't be used.
  • StepsHelper - [AllureStep], [AllureBefore], [AllureAfter], AllureApi, or ExtendedApi instead.
  • AllureNUnitAttribute:
    • AllureNUnitAttribute(bool wrapIntoStep) - the wrapIntoStep parameter has no effect and can safely be removed.
  • AllureExtensions:
    • AddScreenDiff - use AllureApi.AddScreenDiff instead.

(*) The AllureNUnitHelper and AllureExtensions classes are now internal.

Deprecations and removals in Allure.Xunit

The following previously deprecated API is removed from Allure.Xunit:

  • Using-style steps/fixtures:
    • Allure.Xunit.AllureBefore
    • Allure.Xunit.AllureAfter
    • Allure.Xunit.AllureStep
    • Allure.Xunit.AllureStepBase Use [AllureStep], [AllureBefore], [AllureAfter], AllureApi, or ExtendedApi instead.
  • AllureAttachments - use AllureApi.AddAttachment or Allure.Xunit.Attachments instead.
  • AllureXunitHelper:
    • StartTestContainer
    • StartTestCase
    • MarkTestCaseAsFailedOrBroken
    • MarkTestCaseAsPassed
    • MarkTestCaseAsSkipped
    • FinishTestCase Those methods weren't meant to be public and shouldn't be used at all.
  • Steps - [AllureStep], [AllureBefore], [AllureAfter], AllureApi, or ExtendedApi instead.
  • AllureXunitAttribute and AllureXunitTheoryAttribute - use [Fact] and [Theory] instead.

The following APIs are internal now (those wasn't meant to be public in the first place):

  • AllureXunitFacade
  • AllureXunitHelper
  • AllureMessageSink

Other changes

โฌ†๏ธ Dependency Updates

  • Bump Lib.Harmony from 2.3.0-prerelease.2 to 2.3.3 for Allure.Xunit and Allure.SpecFlow.
  • Direct dependency on AspectInjector was removed from Allure.Xunit (it's still a transitive dependency).
  • Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0.

๐Ÿ“ฆ Packaging changes

  • Links to release notes are now included in all packages.
  • Allure.Xunit was renamed from Allure.XUnit to match the name used by xUnit.net. The only difference is in casing which shouldn't be a problem because Nuget operates in a case insensitive manner even on case sensitive operating systems.

๐Ÿ‘ป Internal changes

  • Stale unused projects, files and solutions are removed from the repo
  • CI workflows are updated to comply with the Node.js 16 deprecation by GitHub. See here for more details.
  • The issue and PR templates were updated/fixes.
  • Nuget.config was updated to clear any existing sources.
  • Nuget restore now uses default packages location to benefit more from caching.
  • The Commons and Adapters solution configuration were replaced with Publish. The Publish configuration includes all package projects in Release mode.
  • The test and examples projects now target .NET 6.0. Their dependencies were bumped to the most recent versions.
  • The Allure.XUnit.Reporters project was removed. Allure.Xunit now produces Allure.Xunit.reporters.dll.
  • The Allure.SpecFlowPlugin project was renamed to Allure.SpecFlow.
  • The Allure.SpecFlowPlugin.Tests project was renamed to Allure.SpecFlow.Tests.
  • The Allure.Features project was renamed to Allure.SpecFlow.Tests.Samples.
  • Allure.SpecFlow.Tests now uses correct configuration when running dotnet test against the samples project.
  • Increase reliability of Allure.SpecFlow tests.

Pull requests and contributors

The full list of pull requests of the release:

  • Update READMEs and project links - #442 by @delatrie
  • Update Harmony and MonoMod to support .NET 8 (fixes #434) - #449 by @TonEnfer
  • Fix crash when unable to serialize test parameter (fixes #438, #448) - #450 by @TonEnfer
  • Fix exit code 1 if Harmony patching failled (fixes #441) - #455 by @TonEnfer
  • Repository-level changes, dependency updates and typo fixes (fixes #401) - #458 by @delatrie
  • Improvements of Allure.Net.Commons (implements #435) - #459 by @delatrie
  • Allure.NUnit improvements (implements #363, fixes #419) - #460 by @delatrie
  • Allure.Xunit improvements (fixes #412, #421) - #461 by @delatrie
  • Allure.SpecFlow improvements (implements #399, #429) - #462 by @delatrie
  • Reqnroll adapter (implements #453) - #463 by @delatrie
  • Bump Lib.Harmony from 2.3.1.1 to 2.3.2 - #464 by @dependabot
  • Set labeler trigger back to complete update - #469 by @delatrie
  • Build & publishing fixes - #471 by @delatrie
  • Bump Lib.Harmony from 2.3.2 to 2.3.3 - #474 by @dependabot

New contributors

Full Changelog: https://github.com/allure-framework/allure-csharp/compare/2.11.0...2.12.0

2.11.0

6 months ago

What's Changed

๐Ÿš€ New features

Runtime API

This release introduces Runtime API that can be used to affect the report during test execution. Previously, users had to utilize AllireLifecycle's methods, such as AllureLifecycle.UpdateTestCase, to achieve that. Now we advise all users to migrate to the new API whenever possible.

The API is accessible as static methods of Allure.Net.Commons.AllureApi. The full list of the class's methods includes:

  • Metadata
    • SetTestName(string newName)
    • SetFixtureName(string newName)
    • SetStepName(string newName)
    • SetDescription(string description)
    • SetDescriptionHtml(string descriptionHtml)
    • Labels
      • AddLabels(params Label[] labels)
      • AddLabel(string name, string value)
      • AddLabel(Label newLabel)
      • SetSeverity(SeverityLevel severity)
      • SetOwner(string owner)
      • SetAllureId(int allureId)
      • AddTags(params string[] tags)
    • Links
      • AddLink(string url)
      • AddLink(string name, string url)
      • AddIssue(string url)
      • AddIssue(string name, string url)
      • AddTmsItem(string url)
      • AddTmsItem(string name, string url)
      • AddLink(string name, string type, string url)
      • AddLinks(params Link[] links)
  • Hierarchies
    • Suites hierarchy
      • AddParentSuite(string parentSuite)
      • AddSuite(string suite)
      • AddSubSuite(string subSuite)
    • BDD hierarchy
      • AddEpic(string epic)
      • AddFeature(string feature)
      • AddStory(string story)
  • Steps
    • Step(string name)
    • Lambda steps
      • Step(string name, Action action)
      • Step<T>(string name, Func<T> function): T
      • async Step(string name, Func<Task> action): Task
      • async Step<T>(string name, Func<Task<T>> function): Task<T>
  • Attachments
    • AddAttachment(string name, string type, string path)
    • AddAttachment(string name, string type, byte[] content, string fileExtension = "")
    • AddAttachment(string path, string? name = null)
    • AddScreenDiff(string expectedPng, string actualPng, string diffPng)
  • Parameters
    • AddTestParameter(string name, object? value)
    • AddTestParameter(string name, object? value, ParameterMode mode)
    • AddTestParameter(string name, object? value, bool excluded)
    • AddTestParameter(string name, object? value, ParameterMode mode, bool excluded)
    • AddTestParameter(Parameter parameter)

Some less frequently used API methods are available as static methods of Allure.Net.Commons.ExtendedApi. Those are:

  • Low-level fixtures API
    • StartBeforeFixture(string name)
    • StartAfterFixture(string name)
    • PassFixture()
    • PassFixture(Action<FixtureResult> updateResults)
    • FailFixture()
    • FailFixture(Action<FixtureResult> updateResults)
    • BreakFixture()
    • BreakFixture(Action<FixtureResult> updateResults)
  • Low-level steps API
    • StartStep(string name)
    • StartStep(string name, Action<StepResult> updateResults)
    • PassStep()
    • PassStep(Action<StepResult> updateResults)
    • FailStep()
    • FailStep(Action<StepResult> updateResults)
    • BreakStep()
    • BreakStep(Action<StepResult> updateResults)
  • Lambda fixtures
    • Before(string name, Action action)
    • Before<T>(string name, Func<T> function): T
    • async Before(string name, Func<Task> action): Task
    • async Before<T>(string name, Func<Task<T>> function): Task<T>
    • After(string name, Action action)
    • After<T>(string name, Func<T> function): T
    • async After(string name, Func<Task> action): Task
    • async After<T>(string name, Func<Task<T>> function): Task<T>

[!Note] Allure.Net.Commons.Steps.CoreStepsHelper as its derivatives (NUnit.Allure.Core.StepsHelper and Allure.Xunit.Steps) are now deprecated in favor of the new API. The attachment-related methods from Allure.Net.Commons.AllureLifecycle are also deprecated.

(implements #404 by @delatrie via #414)

Parameter's mode and exclude fields

Allure Report supports masked and hidden parameters of a test. Allure TestOps does, and the future major release of Allure Report will support excluded parameters of a test. Additionally, many other Allure integrations support excluded parameters of a test when calculating historyId of the test.

This release adds the mode and exclude fields to the Allure.Net.Commons.Parameter class as well as some overloads of the new AllureApi.AddTestParameter method to fill those fields. Allure NUnit, Allure xUnit.net, and Allure SpecFlow now ignore excluded parameters when calculating historyId (implements #425 by @delatrie via #414).

๐Ÿ”ฌ Improvements

  • Xml documentation was added to the Allure.Net.Commons package (partially implements #426 by @delatrie via #414).
  • Now Allure SpecFlow doesn't interrupt the run if an exception is thrown during an attempt to patch SpecFlow with Harmony to enable selective run. Selective run won't work in such a case. This allows to workaround #434 until a new version of MonoMod that supports net8.0 is released (implements #436 by @delatrie via #437).

๐Ÿž Bug fixes

  • BOM was removed from JSON schemas to comply with RFC 8259 (fixes #415 by @delatrie via #414).
  • Link.Issue(string name) and Link.Tms(string name) now correctly fill the url field of the link they create. The parameter was renamed to url for both methods (fixes #416 by @delatrie via #414).
  • InvalidOperationException that sometimes occurs when Allure SpecFlow is run in a multithreaded environment was fixed (fixes #433 by @delatrie via #414).
  • Skipped xUnit theories now get their historyId filled correctly (fixes #422 by @delatrie via #414).

New Contributors

Full Changelog: https://github.com/allure-framework/allure-csharp/compare/2.10.0...2.11.0

2.10.0

7 months ago

What's Changed

๐Ÿš€ Core new features

Concurrent steps

Concurrency support by allure-csharp integrations was very limited. In this release we extend it. Steps from parallel/async tests as well as steps from parallel/async methods, sub-steps and operations now work as expected. That fixes a lot of concurrency-related errors that were usually manifested as NullPointerException (fixes #83, #106 and #367 by @delatrie via #371, #383 and #388 by @delatrie via #393).

Selective run

Selective run is now supported for all integrations (implements #372 by @delatrie via #392).

๐Ÿ”ฌ Core improvements

Improved identification properties

Id properties (fullName, testCaseId, historyId) are fixed to prevent the following potential problems:

  • test results of different test cases are interpreted as reruns of a single test case
  • multiple test cases are created from test results of a single parametrized test case

(implements #373 and #387 by @delatrie via #395)

Improved parameter formatting

Test and step parameters are now converted to strings using JSON conversion algorithm. It is much more versatile than the plain ToString() call. The same goes for step parameters interpolated into the step's title (by @delatrie via #395).

Custom type formatters

A user can add an implementation of Allure.Net.Commons.TypeFormatter[T] via the AllureLifecycle.Instance.AddTypeFormatter[T] method. Previously, such formatters were just ignored. Now, they are automatically used to format test and step parameters as well as step titles in case the type of a parameter value is the same as the formatter's generic type argument (fixes #377 by @delatrie via #395).

JSON schema for allureConfig.json

JSON schemas are available for allureConfig.json at https://raw.githubusercontent.com/allure-framework/allure-csharp/<version>/<package>/Schemas/allureConfig.schema.json. You can use the schemas to validate the config file or explore available properties (by @delatrie via #395).

Language and framework labels

The language and framework labels are now added to all test results by all integrations (by @delatrie via #395).

Debug symbols

Debug symbols (.snupkg files) are now available on NuGet for all packages (by @delatrie via #382).

๐Ÿž Core bug fixes

  • Fixed InvalidCastException when underlying step returns Task<T> masked as non-generic Task (by @eranikid via #343).

Allure-nunit

๐Ÿ”ฌ Improvements

  • Creating steps in a [OneTimeSetUp] method of a [TestFixture] is now supported (fixes #286 and #374 by @delatrie via #380).
  • Attachments are now automatically created from console output (implements #305 by @undron via #306).
  • Disable step logging to the console by default (fixes #312 by @undron via #313).
  • The AllureId attribute added to the API (by @alekskulakov via #291).

๐Ÿž Bug fixes

  • Skipped tests now include historyId and thus preserve their history across runs (fixes #345 by @delatrie via #395).
  • An empty package label is added for a test class without a namespace. Previously ArgumentOutOfRangeException was thrown (fixes #375 by @delatrie via #380).

Allure-specflow

๐Ÿ”ฌ Improvements

  • Now if an after-feature hook fails, the scenarios' statuses remain intact instead of being changed to broken. A placeholder scenario is added instead to indicate an error (by @delatrie via #371).

Allure-xunit

๐Ÿš€ New features

  • Allure-xunit now works as a runner reporter. Native xUnit attributes Fact and Theory are supported out-of-the-box (implements #344 by @delatrie via #366).
  • Static test methods are now supported (by @delatrie via #366).

๐Ÿ”ฌ Improvements

  • Additional runner reporter can be run side-by-side with allure-xunit (implements #368 by @delatrie via #382). This behavior is configurable (see here).
  • Status details of a skipped test now include the skip reason (by @tkeerthivel via #298).

๐Ÿž Bug fixes

  • Now the default configuration is used if allureConfig.json is missing. Previously, a catastrophic failure occurred in such a case leading to the test run abortion (fixes #381 by @delatrie via #393).

โฌ†๏ธ Dependency Updates

๐Ÿ‘ป Internal changes

New Contributors

Full Changelog: https://github.com/allure-framework/allure-csharp/compare/2.9.1...2.10.0

2.10.0-preview.1

8 months ago

What's Changed

๐Ÿš€ New Features

๐Ÿ”ฌ Improvements

๐Ÿž Bug Fixes

New Contributors

Full Changelog: https://github.com/allure-framework/allure-csharp/compare/2.9.5-preview.1...2.10.0-preview.1

2.9.5-preview.1

1 year ago

What's Changed

๐Ÿ”ฌ Improvements

โฌ†๏ธ Dependency Updates

New Contributors

Full Changelog: https://github.com/allure-framework/allure-csharp/compare/2.9.4-preview.6...2.9.5-preview.1

2.9.4-preview.6

1 year ago

What's Changed

โฌ†๏ธ Dependency Updates

New Contributors

Full Changelog: https://github.com/allure-framework/allure-csharp/compare/2.9.4-preview.5...2.9.4-preview.6