forked from bUnit-dev/bUnit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShouldBeRemovalAssertExtensions.cs
85 lines (76 loc) · 4.04 KB
/
ShouldBeRemovalAssertExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.Linq;
using AngleSharp;
using AngleSharp.Diffing.Core;
using AngleSharp.Dom;
using Egil.RazorComponents.Testing.Diffing;
using Egil.RazorComponents.Testing.Extensions;
using Xunit;
using Xunit.Sdk;
namespace Egil.RazorComponents.Testing.Asserting
{
/// <summary>
/// A set of removal diff assert extensions
/// </summary>
public static class ShouldBeRemovalAssertExtensions
{
/// <summary>
/// Verifies that the <paramref name="actualChange"/> <see cref="IDiff"/> is an removal,
/// i.e. that one or more nodes have been removed, and verifies that the removed nodes are equal
/// to the markup specified in the <paramref name="expectedChange"/> input.
/// </summary>
/// <param name="actualChange">The change to verify</param>
/// <param name="expectedChange">The expected removal to verify against</param>
/// <param name="userMessage">A custom user message to display in case the verification fails.</param>
public static void ShouldBeRemoval(this IDiff actualChange, string expectedChange, string? userMessage = null)
{
if (actualChange is null) throw new ArgumentNullException(nameof(actualChange));
if (expectedChange is null) throw new ArgumentNullException(nameof(expectedChange));
var actual = Assert.IsType<MissingNodeDiff>(actualChange);
INodeList expected;
if (actual.Control.Node.GetHtmlParser() is { } parser)
{
expected = parser.Parse(expectedChange);
}
else
{
using var newParser = new TestHtmlParser();
expected = newParser.Parse(expectedChange);
}
ShouldBeRemoval(actualChange, expected, userMessage);
}
/// <summary>
/// Verifies that the <paramref name="actualChange"/> <see cref="IDiff"/> is an removal,
/// i.e. that one or more nodes have been removed, and verifies that the removed nodes are equal
/// to the rendered markup from the <paramref name="expectedChange"/> <see cref="IRenderedFragment"/>.
/// </summary>
/// <param name="actualChange">The change to verify</param>
/// <param name="expectedChange">The expected removal to verify against</param>
/// <param name="userMessage">A custom user message to display in case the verification fails.</param>
public static void ShouldBeRemoval(this IDiff actualChange, IRenderedFragment expectedChange, string? userMessage = null)
{
if (expectedChange is null) throw new ArgumentNullException(nameof(expectedChange));
ShouldBeRemoval(actualChange, expectedChange.Nodes, userMessage);
}
/// <summary>
/// Verifies that the <paramref name="actualChange"/> <see cref="IDiff"/> is an removal,
/// i.e. that one or more nodes have been removed, and verifies that the removed nodes are equal
/// to the <paramref name="expectedChange"/> nodes.
/// </summary>
/// <param name="actualChange">The change to verify</param>
/// <param name="expectedChange">The expected removal to verify against</param>
/// <param name="userMessage">A custom user message to display in case the verification fails.</param>
public static void ShouldBeRemoval(this IDiff actualChange, INodeList expectedChange, string? userMessage = null)
{
if (actualChange is null) throw new ArgumentNullException(nameof(actualChange));
if (expectedChange is null) throw new ArgumentNullException(nameof(expectedChange));
var actual = Assert.IsType<MissingNodeDiff>(actualChange);
var comparer = actual.Control.Node.Owner.Context.GetService<HtmlComparer>();
var diffs = comparer.Compare(expectedChange, new[] { actual.Control.Node }).ToList();
if (diffs.Count != 0)
{
throw new HtmlEqualException(diffs, expectedChange, actual.Control.Node, userMessage);
}
}
}
}