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
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Globalization;
using System.Text;
using System.Web.Razor.Parser.SyntaxTree;
using System.Web.Razor.Text;
using Xunit;
namespace System.Web.Razor.Test.Utils
{
public static class EventAssert
{
public static void NoMoreSpans(IEnumerator<Span> enumerator)
{
IList<Span> tokens = new List<Span>();
while (enumerator.MoveNext())
{
tokens.Add(enumerator.Current);
}
Assert.False(tokens.Count > 0, String.Format(CultureInfo.InvariantCulture, @"There are more tokens available from the source: {0}", FormatList(tokens)));
}
private static string FormatList<T>(IList<T> items)
{
StringBuilder tokenString = new StringBuilder();
foreach (T item in items)
{
tokenString.AppendLine(item.ToString());
}
return tokenString.ToString();
}
public static void NextSpanIs(IEnumerator<Span> enumerator, SpanKind type, string content, SourceLocation location)
{
Assert.True(enumerator.MoveNext(), "There is no next token!");
IsSpan(enumerator.Current, type, content, location);
}
public static void NextSpanIs(IEnumerator<Span> enumerator, SpanKind type, string content, int actualIndex, int lineIndex, int charIndex)
{
NextSpanIs(enumerator, type, content, new SourceLocation(actualIndex, lineIndex, charIndex));
}
public static void IsSpan(Span tok, SpanKind type, string content, int actualIndex, int lineIndex, int charIndex)
{
IsSpan(tok, type, content, new SourceLocation(actualIndex, lineIndex, charIndex));
}
public static void IsSpan(Span tok, SpanKind type, string content, SourceLocation location)
{
Assert.Equal(content, tok.Content);
Assert.Equal(type, tok.Kind);
Assert.Equal(location, tok.Start);
}
}
}
|