LPRun 8.5.2
See the version list below for details.
dotnet add package LPRun --version 8.5.2
NuGet\Install-Package LPRun -Version 8.5.2
<PackageReference Include="LPRun" Version="8.5.2" />
paket add LPRun --version 8.5.2
#r "nuget: LPRun, 8.5.2"
// Install LPRun as a Cake Addin #addin nuget:?package=LPRun&version=8.5.2 // Install LPRun as a Cake Tool #tool nuget:?package=LPRun&version=8.5.2
LINQPad Driver LPRun Unit/Integration Tests Runner
Table of Contents
- Description
- LPRun .NET Versions
- Website
- Download
- Usage
- Known Issues
- Troubleshooting
- Authors
- Credits
- Licenses
Description
The LPRun is the LINQPad driver's unit/integration tests runner. Can be used for testing LINQPad 8/LINQPad 7/LINQPad 6 drivers or for running LINQPad scripts.
LPRun .NET Versions
.NET versions supported by LPRun are listed below. In case of unsupported version LPRun fallbacks to the latest production .NET installed.
LPRun | .NET 8.0 | .NET 7.0 | .NET 6.0 | .NET 5.0 | .NET 3.1 |
---|---|---|---|---|---|
8 | ✔️ | ✔️ | ✔️ | ||
7 | ✔️ | ✔️ | ✔️ | ✔️ |
Use the following script to check the .NET version used by LPRun:
<Query Kind="Expression"/>
System.Environment.Version
Website
The LPRun is used for testing of the CsvLINQPadDriver for LINQPad 8/7/6/5.
Download
Usage
Tested driver MUST NOT be installed via NuGet into LINQPad. In this case LPRun will use it instead of local one.
Setup
LPRun # Created by LPRun NuGet.
Templates # LINQPad script templates.
Data # Optional: Driver data files.
LINQPad Test Script Example
LPRun executes LINQPad test script. Test script uses Fluent Assertions for assertion checks.
StringComparison.linq LINQPad test script example:
var original = Books.First();
var copy = original with { Title = original.Title.ToUpper() };
var expectedEquality = original.Title.Equals(copy.Title, context.StringComparison);
original.Equals(copy).Should().Be(expectedEquality, Reason());
original.GetHashCode()
.Equals(copy.GetHashCode())
.Should()
.Be(expectedEquality, Reason());
Reason()
method (prints exact line number if assertion fails) and context
variable are injected by test below.
NUnit Test Example
Full NUnit test code can be found here.
[TestFixture]
public class LPRunTests
{
[OneTimeSetUp]
public void Init()
{
// Check that driver is not installed via NuGet.
Driver.EnsureNotInstalledViaNuGet("CsvLINQPadDriver");
// Install driver.
Driver.InstallWithDepsJson(
// The directory to copy driver files to.
"CsvLINQPadDriver",
// The LINQPad driver files.
"CsvLINQPadDriver.dll",
// The test folder path.
"Tests");
}
[Test]
[TestCaseSource(nameof(TestsData))]
public async Task Execute_ScriptWithDriverProperties_Success(
(string linqScriptName,
string? context,
ICsvDataContextDriverProperties driverProperties) testData)
{
var (linqScriptName, context, driverProperties) = testData;
// Arrange: Create query connection header. Custom code can be added here.
var queryConfig = GetQueryHeaders().Aggregate(
new StringBuilder(),
(stringBuilder, h) =>
{
stringBuilder.AppendLine(h);
stringBuilder.AppendLine();
return stringBuilder;
}).ToString();
// Arrange: Create test LNQPad script.
// You can also use LinqScript.FromScript method.
var linqScript = LinqScript.FromFile(
$"{linqScriptName}.linq",
queryConfig);
// Act: Execute test LNQPad script.
var (output, error, exitCode) =
await Runner.ExecuteAsync(linqScript);
// Assert.
error.Should().BeNullOrWhiteSpace();
exitCode.Should().Be(0);
// Helpers.
IEnumerable<string> GetQueryHeaders()
{
// Connection header.
yield return ConnectionHeader.Get(
"CsvLINQPadDriver",
"CsvLINQPadDriver.CsvDataContextDriver",
driverProperties,
"System.Runtime.CompilerServices");
// FluentAssertions helper.
yield return
"string Reason([CallerLineNumber] int sourceLineNumber = 0) =>" +
@" $""something went wrong at line #{sourceLineNumber}"";";
// Test context.
if (!string.IsNullOrWhiteSpace(context))
{
yield return $"var context = {context};";
}
}
}
private static IEnumerable<
(string linqScriptName,
string? context,
ICsvDataContextDriverProperties driverProperties)> TestsData()
{
// Omitted for brevity.
}
}
Tests can also be run in parallel:
[TestFixture]
public class LPRunTests
{
[Test]
[Parallelizable(ParallelScope.Children)]
[TestCaseSource(nameof(ParallelizableTestsData))]
public void Execute_ScriptWithDriverProperties_Success(
(string linqScriptName,
string? context,
ICsvDataContextDriverProperties driverProperties,
int index) testData)
{
// ...
// Arrange: Create test LNQPad script.
// You can also use LinqScript.FromScript method.
var linqScript = LinqScript.FromFile(
$"{linqScriptName}.linq",
queryConfig,
$"{linqScriptName}_{testData.index}");
// ...
}
private static IEnumerable<
(string linqScriptName,
string? context,
ICsvDataContextDriverProperties driverProperties,
int index)> TestsData()
{
// Omitted for brevity.
}
// Parallelized tests data.
private static IEnumerable<
(string linqScriptName,
string? context,
ICsvDataContextDriverProperties driverProperties,
int index)> ParallelizableTestsData() =>
TestsData().AugmentWithFileIndex(
static testData => testData.linqScriptName,
static (testData, index) => { testData.index = index; return testData; });
}
Known Issues
Unit-testing Frameworks Support
Tested with NUnit. Other test frameworks should work as well.
LINQPad Runtime Reference
Avoid referencing LINQPad.Runtime.dll
in your tests, e.g. for Moq:
// LINQPad.Runtime.dll IConnectionInfo reference:
var connectionInfoMock = new Mock<LINQPad.Extensibility.DataContext.IConnectionInfo>();
var driverProperties = new DriverProperties(connectionInfoMock.Object);
This code compiles but fails in runtime with Could not load file or assembly LINQPad.Runtime
error. If you still need to reference it, add the following target which copies assembly to output folder of the test project:
<Target Name="CopyLINQPadRuntimeToOutput" AfterTargets="Build">
<Copy SourceFiles="$(OutputPath)\LPRun\Bin\LINQPad.Runtime.dll" DestinationFolder="$(OutputPath)" UseHardlinksIfPossible="true" />
</Target>
Your can avoid referencing LINQPad.Runtime.dll
assembly by using mock framework facilities, e.g. for Moq you can extract IDriverProperties
interface and setup driver properties as follows:
var driverProperties = Mock.Of<IDriverProperties>(props =>
props.BoolProp == true &&
props.IntProp == 42 &&
props.StringProp == "string"
);
Authors
- Ivan Ivon
- LINQPad.Runtime/LPRun binaries (license) by Joseph Albahari
Credits
Tools
NuGet
Licenses
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- No dependencies.
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.6.6 | 52 | 11/5/2024 |
8.6.5 | 86 | 11/1/2024 |
8.6.4 | 176 | 10/6/2024 |
8.6.2 | 211 | 9/15/2024 |
8.6.1 | 97 | 8/5/2024 |
8.5.5 | 110 | 7/26/2024 |
8.5.4 | 92 | 7/23/2024 |
8.5.3 | 158 | 7/20/2024 |
8.5.2 | 116 | 7/18/2024 |
8.5.1 | 203 | 7/4/2024 |
8.4.11 | 159 | 6/19/2024 |
8.4.10 | 111 | 6/11/2024 |
8.4.9 | 129 | 6/5/2024 |
8.4.8 | 105 | 5/27/2024 |
8.4.7 | 136 | 5/24/2024 |
8.4.5 | 139 | 5/22/2024 |
8.4.4 | 140 | 5/17/2024 |
8.4.3 | 135 | 5/14/2024 |
8.4.2 | 181 | 5/10/2024 |
8.4.1 | 197 | 4/30/2024 |
8.3.7 | 156 | 4/18/2024 |
8.3.6 | 214 | 4/14/2024 |
8.3.5 | 205 | 4/7/2024 |
8.3.3 | 185 | 3/21/2024 |
8.3.2 | 230 | 3/13/2024 |
8.3.1 | 172 | 3/12/2024 |
8.2.4 | 145 | 2/17/2024 |
8.2.3 | 149 | 2/13/2024 |
8.2.2 | 194 | 1/23/2024 |
8.1.6 | 156 | 1/17/2024 |
8.1.3 | 230 | 1/3/2024 |
8.1.2 | 208 | 12/27/2023 |
8.1.1 | 176 | 12/22/2023 |
8.0.18 | 282 | 12/5/2023 |
8.0.17 | 228 | 11/26/2023 |
8.0.16 | 247 | 11/25/2023 |
8.0.15 | 182 | 11/24/2023 |
8.0.14 | 206 | 11/22/2023 |
8.0.13 | 184 | 11/18/2023 |
8.0.12 | 192 | 11/17/2023 |
8.0.11 | 179 | 11/16/2023 |
8.0.10 | 208 | 11/15/2023 |
8.0.9 | 200 | 11/12/2023 |
7.8.10 | 144 | 2/14/2024 |
7.8.7 | 231 | 11/26/2023 |
7.8.6 | 351 | 9/14/2023 |
7.8.5 | 399 | 8/1/2023 |
7.8.4 | 313 | 7/13/2023 |
7.8.3 | 308 | 7/3/2023 |
7.8.2 | 293 | 6/16/2023 |
7.8.1 | 296 | 6/9/2023 |
7.7.15 | 280 | 5/31/2023 |
7.7.14 | 279 | 5/29/2023 |
7.7.13 | 273 | 5/23/2023 |
7.7.12 | 305 | 5/18/2023 |
7.7.11 | 330 | 5/10/2023 |
7.7.10 | 410 | 4/19/2023 |
7.7.9 | 408 | 4/4/2023 |
7.7.8 | 435 | 4/4/2023 |
7.7.7 | 487 | 3/21/2023 |
7.7.6 | 482 | 3/18/2023 |
7.7.4 | 402 | 3/13/2023 |
7.7.3 | 493 | 2/20/2023 |
7.7.2 | 421 | 2/13/2023 |
7.7.1 | 478 | 2/1/2023 |
7.6.6 | 575 | 1/5/2023 |
7.6.5 | 442 | 12/24/2022 |
7.6.4 | 478 | 12/7/2022 |
7.6.3 | 507 | 11/26/2022 |
7.6.2 | 474 | 11/16/2022 |
7.5.16 | 501 | 11/14/2022 |
7.5.15 | 497 | 11/13/2022 |
7.5.14 | 532 | 11/11/2022 |
7.5.13 | 498 | 11/10/2022 |
7.5.12 | 524 | 10/31/2022 |
7.5.11 | 566 | 10/30/2022 |
7.5.10 | 543 | 10/25/2022 |
7.5.9 | 535 | 10/9/2022 |
7.5.8 | 521 | 10/6/2022 |
7.5.7 | 537 | 10/3/2022 |
7.5.6 | 582 | 9/26/2022 |
7.5.5 | 590 | 9/23/2022 |
7.5.4 | 591 | 9/20/2022 |
7.5.3 | 584 | 9/16/2022 |
7.5.2 | 609 | 8/28/2022 |
7.5.1 | 622 | 8/26/2022 |
7.4.9.1 | 670 | 8/3/2022 |
7.4.8 | 646 | 7/31/2022 |
7.4.7 | 650 | 7/25/2022 |
7.4.6 | 674 | 7/19/2022 |
7.4.5 | 698 | 7/15/2022 |
7.4.4 | 705 | 7/6/2022 |
7.4.3 | 700 | 6/8/2022 |
7.4.2 | 692 | 5/11/2022 |
7.4.1 | 659 | 5/3/2022 |
7.3.9 | 674 | 4/19/2022 |
7.3.6 | 669 | 3/25/2022 |
7.3.5 | 640 | 3/17/2022 |
7.3.4 | 648 | 3/15/2022 |
7.3.2 | 595 | 2/23/2022 |
7.3.1 | 596 | 2/17/2022 |
6.14.11 | 512 | 9/1/2021 |
6.14.10 | 621 | 7/18/2021 |
6.13.14 | 504 | 5/10/2021 |
6.13.13 | 532 | 5/5/2021 |
LPRun 8.5.2