Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure authoring test project reports properly on Github Actions #463

Merged
merged 4 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/CodeBlocks/CallOutTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Elastic.Markdown.Tests.Inline;
using FluentAssertions;
using JetBrains.Annotations;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.CodeBlocks;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/CodeBlocks/CodeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using Elastic.Markdown.Myst.CodeBlocks;
using Elastic.Markdown.Tests.Inline;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.CodeBlocks;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// See the LICENSE file in the project root for more information
using Elastic.Markdown.Myst.Directives;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Directives;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

using Elastic.Markdown.Myst.Directives;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Directives;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using Elastic.Markdown.Diagnostics;
using Elastic.Markdown.Myst.Directives;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Directives;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using JetBrains.Annotations;
using Markdig.Syntax;
using Microsoft.Extensions.Logging;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Directives;

Expand All @@ -19,7 +18,7 @@ public abstract class DirectiveTest<TDirective>(ITestOutputHelper output, [Langu
{
protected TDirective? Block { get; private set; }

public override async Task InitializeAsync()
public override async ValueTask InitializeAsync()
{
await base.InitializeAsync();
Block = Document
Expand Down Expand Up @@ -82,7 +81,7 @@ protected DirectiveTest(ITestOutputHelper output, [LanguageInjection("markdown")

protected virtual void AddToFileSystem(MockFileSystem fileSystem) { }

public virtual async Task InitializeAsync()
public virtual async ValueTask InitializeAsync()
{
_ = Collector.StartAsync(default);

Expand All @@ -98,6 +97,6 @@ public virtual async Task InitializeAsync()
await Collector.StopAsync(default);
}

public Task DisposeAsync() => Task.CompletedTask;
public ValueTask DisposeAsync() => ValueTask.CompletedTask;

}
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Directives/ImageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Elastic.Markdown.Diagnostics;
using Elastic.Markdown.Myst.Directives;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Directives;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Directives/MermaidTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using Elastic.Markdown.Myst.Directives;
using FluentAssertions;
using Xunit;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Directives;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Directives/TabTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using Elastic.Markdown.Myst.Directives;
using FluentAssertions;
using Markdig;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Directives;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using Elastic.Markdown.Diagnostics;
using Elastic.Markdown.Myst.Directives;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Directives;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Directives/VersionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Elastic.Markdown.Myst.Directives;
using FluentAssertions;
using Markdig.Syntax;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Directives;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/DocSet/BreadCrumbTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

using Elastic.Markdown.IO;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.DocSet;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Elastic.Markdown.IO.Discovery;
using Elastic.Markdown.IO.State;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.DocSet;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/DocSet/NavigationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// See the LICENSE file in the project root for more information

using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.DocSet;

Expand Down
5 changes: 2 additions & 3 deletions tests/Elastic.Markdown.Tests/DocSet/NavigationTestsBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using Elastic.Markdown.IO.Configuration;
using FluentAssertions;
using Microsoft.Extensions.Logging;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.DocSet;

Expand Down Expand Up @@ -45,11 +44,11 @@ protected NavigationTestsBase(ITestOutputHelper output)
protected DocumentationGenerator Generator { get; }
protected ConfigurationFile Configuration { get; set; } = default!;

public async Task InitializeAsync()
public async ValueTask InitializeAsync()
{
await Generator.ResolveDirectoryTree(default);
Configuration = Generator.DocumentationSet.Configuration;
}

public Task DisposeAsync() => Task.CompletedTask;
public ValueTask DisposeAsync() => ValueTask.CompletedTask;
}
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/DocSet/NestedTocTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

using Elastic.Markdown.IO;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.DocSet;

Expand Down
13 changes: 9 additions & 4 deletions tests/Elastic.Markdown.Tests/Elastic.Markdown.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,22 @@

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<OutputType>Exe</OutputType>

<UseMicrosoftTestingPlatformRunner>false</UseMicrosoftTestingPlatformRunner>
<DisableTestingPlatformServerCapability>true</DisableTestingPlatformServerCapability>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0"/>
<PackageReference Include="xunit.v3" Version="1.1.0"/>
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2"/>
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1" />

<PackageReference Include="coverlet.collector" Version="6.0.0"/>
<PackageReference Include="FluentAssertions" Version="6.12.1"/>
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="21.0.29"/>
<PackageReference Include="xunit" Version="2.9.2"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2"/>
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
using Elastic.Markdown.Myst.Directives;
using Elastic.Markdown.Tests.Directives;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.FileInclusion;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Elastic.Markdown.Myst.Directives;
using Elastic.Markdown.Tests.Directives;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.FileInclusion;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using Elastic.Markdown.Myst.FrontMatter;
using Elastic.Markdown.Tests.Directives;
using FluentAssertions;
using Xunit.Abstractions;
using static Elastic.Markdown.Myst.FrontMatter.ProductLifecycle;

namespace Elastic.Markdown.Tests.FrontMatter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

using Elastic.Markdown.Tests.Directives;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.FrontMatter;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Inline/AnchorLinkTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using FluentAssertions;
using JetBrains.Annotations;
using Markdig.Syntax.Inlines;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Inline;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Inline/CommentTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Inline;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using FluentAssertions;
using JetBrains.Annotations;
using Markdig.Syntax.Inlines;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Inline;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Inline/HardBreakTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// See the LICENSE file in the project root for more information

using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Inline;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Inline/InlineAnchorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using JetBrains.Annotations;
using Markdig.Syntax;
using Markdig.Syntax.Inlines;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Inline;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Inline/InlineImageTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// See the LICENSE file in the project root for more information
using FluentAssertions;
using Markdig.Syntax.Inlines;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Inline;

Expand Down
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Inline/InlineLinkTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using FluentAssertions;
using JetBrains.Annotations;
using Markdig.Syntax.Inlines;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Inline;

Expand Down
11 changes: 5 additions & 6 deletions tests/Elastic.Markdown.Tests/Inline/InlneBaseTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using JetBrains.Annotations;
using Markdig.Syntax;
using Markdig.Syntax.Inlines;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Inline;

Expand All @@ -18,7 +17,7 @@ public abstract class LeafTest<TDirective>(ITestOutputHelper output, [LanguageIn
{
protected TDirective? Block { get; private set; }

public override async Task InitializeAsync()
public override async ValueTask InitializeAsync()
{
await base.InitializeAsync();
Block = Document
Expand All @@ -37,7 +36,7 @@ public abstract class BlockTest<TDirective>(ITestOutputHelper output, [LanguageI
{
protected TDirective? Block { get; private set; }

public override async Task InitializeAsync()
public override async ValueTask InitializeAsync()
{
await base.InitializeAsync();
Block = Document
Expand All @@ -56,7 +55,7 @@ public abstract class InlineTest<TDirective>(ITestOutputHelper output, [Language
{
protected TDirective? Block { get; private set; }

public override async Task InitializeAsync()
public override async ValueTask InitializeAsync()
{
await base.InitializeAsync();
Block = Document
Expand Down Expand Up @@ -123,7 +122,7 @@ protected InlineTest(

protected virtual void AddToFileSystem(MockFileSystem fileSystem) { }

public virtual async Task InitializeAsync()
public virtual async ValueTask InitializeAsync()
{
_ = Collector.StartAsync(default);

Expand All @@ -140,6 +139,6 @@ public virtual async Task InitializeAsync()
await Collector.StopAsync(default);
}

public Task DisposeAsync() => Task.CompletedTask;
public ValueTask DisposeAsync() => ValueTask.CompletedTask;

}
1 change: 0 additions & 1 deletion tests/Elastic.Markdown.Tests/Inline/SubstitutionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using Elastic.Markdown.Myst.CodeBlocks;
using Elastic.Markdown.Myst.Substitution;
using FluentAssertions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Inline;

Expand Down
7 changes: 3 additions & 4 deletions tests/Elastic.Markdown.Tests/Mover/MoverTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Elastic.Markdown.Tests.DocSet;
using FluentAssertions;

using Xunit.Abstractions;

namespace Elastic.Markdown.Tests.Mover;

Expand All @@ -20,7 +19,7 @@ public async Task RelativeLinks()
Directory.SetCurrentDirectory(workingDirectory!);

var mover = new Move(ReadFileSystem, WriteFileSystem, Set, LoggerFactory);
await mover.Execute("testing/mover/first-page.md", "new-folder/hello-world.md", true);
await mover.Execute("testing/mover/first-page.md", "new-folder/hello-world.md", true, TestContext.Current.CancellationToken);

mover.Changes.Should().HaveCount(1);
var changeSet = mover.Changes.First();
Expand Down Expand Up @@ -49,7 +48,7 @@ public async Task MoveToFolder()
Directory.SetCurrentDirectory(workingDirectory!);

var mover = new Move(ReadFileSystem, WriteFileSystem, Set, LoggerFactory);
await mover.Execute("testing/mover/first-page.md", "new-folder", true);
await mover.Execute("testing/mover/first-page.md", "new-folder", true, TestContext.Current.CancellationToken);

mover.Changes.Should().HaveCount(1);
var changeSet = mover.Changes.First();
Expand Down Expand Up @@ -77,7 +76,7 @@ public async Task MoveFolderToFolder()
Directory.SetCurrentDirectory(workingDirectory!);

var mover = new Move(ReadFileSystem, WriteFileSystem, Set, LoggerFactory);
await mover.Execute("testing/mover", "new-folder", true);
await mover.Execute("testing/mover", "new-folder", true, TestContext.Current.CancellationToken);

mover.Changes.Should().HaveCount(2);
var changeSet = mover.LinkModifications.FirstOrDefault(k => k.Key.From.Name == "first-page.md").Key;
Expand Down
3 changes: 1 addition & 2 deletions tests/Elastic.Markdown.Tests/OutputDirectoryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Elastic.Markdown.IO;
using FluentAssertions;
using Microsoft.Extensions.Logging.Abstractions;
using Xunit.Abstractions;

namespace Elastic.Markdown.Tests;

Expand All @@ -31,7 +30,7 @@ public async Task CreatesDefaultOutputDirectory()
var set = new DocumentationSet(context);
var generator = new DocumentationGenerator(set, logger);

await generator.GenerateAll(default);
await generator.GenerateAll(TestContext.Current.CancellationToken);

fileSystem.Directory.Exists(".artifacts").Should().BeTrue();

Expand Down
Loading