PlayNicely.Executor 1.0.0-prerelease-20240209-140649

This is a prerelease version of PlayNicely.Executor.
There is a newer version of this package available.
See the version list below for details.
dotnet add package PlayNicely.Executor --version 1.0.0-prerelease-20240209-140649
NuGet\Install-Package PlayNicely.Executor -Version 1.0.0-prerelease-20240209-140649
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PlayNicely.Executor" Version="1.0.0-prerelease-20240209-140649">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PlayNicely.Executor --version 1.0.0-prerelease-20240209-140649
#r "nuget: PlayNicely.Executor, 1.0.0-prerelease-20240209-140649"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PlayNicely.Executor as a Cake Addin
#addin nuget:?package=PlayNicely.Executor&version=1.0.0-prerelease-20240209-140649&prerelease

// Install PlayNicely.Executor as a Cake Tool
#tool nuget:?package=PlayNicely.Executor&version=1.0.0-prerelease-20240209-140649&prerelease

Play Nicely Executor

The Play Nicely Executor project supports the execution of MSBuild test case projects within a pre-defined test case environment. Where you can define required commands, or exclude commands from the path (so you can force things to fail). This package is published independently having a solution that supports the creation of a reliable and clean environment, to run tool testing seems like a use case for many scenarios.

The main artefacts are the ITestEnvironment, which defines the environment and project that are available for testing. You create (build) an ITestEnvironment using the fluent interface TestEnvironmentBuilder. With this class you can define what can, and can't run, plus the target test case project. After building your ITestEnvironment you can pass it to a concrete implementation of the ITestEnvironmentRunner which executes the test and returns the outcome.

The current concrete ITestEnvironmentRunners are a basic ProcessRunner which excepts a command and arguments, much like a command line, and returns a basic IExecutionResult. And the DotNetRunner which executes a dotnet subcommand, with arguments, and returns a IExecutionResult<DotNetExecutionContext> which includes the dotnet command results context, targets ran, projects built, lists of errors, etc.

You can also define your own runners derived from ITestEnvironmentRunner.

This project came about to support the use of NodeJS packages within .NET projects in a .NET first way. You can acheive the integration of NodeJS tools using plugins or other tooling. The problem with this is, these can often become out of date or stale. Most of the NodeJS packages are actively developed by a community, so accessing the latest npm packages directly makes the most sense.

Getting Started

This getting started is provided in the context, for which, this package was developed. To support the testing of a NodeJS tools package within a MSBuild project.

The basic setup involves having a tools project, and an accompanying test project, I currently use SpecFlow. Develop your tools and targets in your tools project. The test project includes

Below here is not done.

If you are going to use this package, you probably want to define test cases for a NodeJS tool package. Before you start, it's a good idea to consider the best layout for your project so that you can use a familar development experience for test cases, i.e. Visual Studio, while also making the maintenance of the test case packages as simple as possible.

Our recommended project structure is (if you're using SpecFlow for testing):

solution-dir
|-- my-project	               # This is the project you are developing
|   |-- *
|-- my-project.Specs           # BDD Specifications for your project
|   |-- Features
|   |   |-- *.features
|   |-- TestCases.Projects     # Define your test case 'packages' in resx files
|       |-- Project1.resx
|       |-- Project2.resx
|       |-- TestCases.cs       # Helper class to load local test case projects from embedded resources
|-- TestCase.Projects          # Define your test case projects in here using familiar tools.
|   |-- Project1
|   |   |-- Project1.csproj
|   |-- Project2
|       |-- Project2.csproj
|-- my-solution.sln

We'll refer to this structure in the rest of this document.

Create your test case projects

Use visual studio to create you test case projects, as you would any other C# project. Add them to the solution-dir/TestCase.Projects directory. Add code files, define properties, etc. Typically, you do not want to build your test cases as part of the normal Visual Studio build command. To disable build use the solution Configuration Manager... to disable build on your test cases.

Define test case packages as embedded (resx) resources

For consistency, when running test cases, a clean temporary directory is created for each test run. This means build artefacts like obj or cached NuGet packages are not available, and ensures consistent test behaviour.

So a clean version of the project can be created, they need to be explicitly defined in embedded resource (resx) files.

  1. In your BDD project, my-project.Specs, under the TestCase.Projects directory, add a new resx file. It is not required, but is better for consistency, to name your resx the same as your actual project. In the example, above, Project1.resx matches Project1.csproj
  2. Disable code generation in your resx file.
  3. Add the relevant files from your test case project to your resx.
    1. In the resource editor, Add existing file...
    2. The default naming for added files, mangles the names and removes the extension. As we are trying to define files in a file system like format, you need to re-add the extension and also any directories, using / as a separator.
  4. If you have multiple projects in your test case, like you would in a solution, you can specify the target build project by adding a resource string to the resx called ProjectFile with the value being the path (within the context of the resx) to the project file. In the example above, for Project1.resx, the ProjectFile value would be Project1.csproj.

Add a test case helper

This might be simpler than you think, once we bring over the TestEnvironment stuff.

Use steps in your BDD project

This should probably be centralized also.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on PlayNicely.Executor:

Package Downloads
PlayNicely.Executor.DotNet

A framework that facilitates testing of Play Nicely functionality. Provides capability to execute dotnet commands, in a controlled environment, against test case projects.

PlayNicely.SpecFlow.Executor

SpecFlow bindings that allow you to run tests by executing programs against a pre-configured test environment.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 205 4/14/2024
1.1.0-beta-382 73 5/21/2024
1.1.0-beta-370 56 5/8/2024
1.1.0-beta-355 83 5/7/2024
1.1.0-beta-349 83 5/7/2024
1.1.0-beta-346 86 5/7/2024
1.1.0-beta-340 86 5/7/2024
1.1.0-beta-323 86 5/6/2024
1.1.0-beta-312 91 4/26/2024
1.1.0-beta-299 88 4/14/2024
1.1.0-beta-296 90 4/14/2024
1.0.4 132 4/11/2024
1.0.4-beta-287 88 4/11/2024
1.0.4-beta-282 91 4/11/2024
1.0.4-beta-280 83 4/10/2024
1.0.4-beta-278 88 4/10/2024
1.0.4-beta-276 80 4/10/2024
1.0.4-beta-274 98 4/9/2024
1.0.4-beta-272 82 4/9/2024
1.0.3 126 3/21/2024
1.0.3-beta-266 96 3/21/2024
1.0.3-beta-260 92 3/21/2024
1.0.2 140 3/10/2024
1.0.2-prerelease-20240301-0... 90 3/1/2024
1.0.2-beta-227 95 3/10/2024
1.0.2-beta-221 96 3/9/2024
1.0.2-beta-214 83 3/9/2024
1.0.2-beta-208 101 3/1/2024
1.0.2-beta-206 86 3/1/2024
1.0.1 95 2/29/2024
1.0.1-prerelease-20240229-1... 54 2/29/2024
1.0.1-prerelease-20240228-0... 65 2/28/2024
1.0.1-prerelease-20240226-1... 37 2/26/2024
1.0.1-prerelease-20240225-0... 45 2/25/2024
1.0.1-prerelease-20240225-0... 41 2/25/2024
1.0.0 337 2/10/2024
1.0.0-prerelease-20240210-1... 208 2/10/2024
1.0.0-prerelease-20240210-1... 190 2/10/2024
1.0.0-prerelease-20240209-1... 179 2/9/2024
1.0.0-prerelease-20240209-1... 193 2/9/2024
1.0.0-prerelease-20240209-1... 194 2/9/2024