73 lines
2.9 KiB
C#
73 lines
2.9 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Text;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Razor.Evolution.Legacy
|
|
{
|
|
public abstract class TokenizerTestBase
|
|
{
|
|
internal abstract object IgnoreRemaining { get; }
|
|
internal abstract object CreateTokenizer(ITextDocument source);
|
|
|
|
internal void TestTokenizer<TSymbol, TSymbolType>(string input, params TSymbol[] expectedSymbols)
|
|
where TSymbolType : struct
|
|
where TSymbol : SymbolBase<TSymbolType>
|
|
{
|
|
// Arrange
|
|
var success = true;
|
|
var output = new StringBuilder();
|
|
using (var source = new SeekableTextReader(input))
|
|
{
|
|
var tokenizer = (Tokenizer<TSymbol, TSymbolType>)CreateTokenizer(source);
|
|
var counter = 0;
|
|
TSymbol current = null;
|
|
while ((current = tokenizer.NextSymbol()) != null)
|
|
{
|
|
if (counter >= expectedSymbols.Length)
|
|
{
|
|
output.AppendLine(string.Format("F: Expected: << Nothing >>; Actual: {0}", current));
|
|
success = false;
|
|
}
|
|
else if (ReferenceEquals(expectedSymbols[counter], IgnoreRemaining))
|
|
{
|
|
output.AppendLine(string.Format("P: Ignored {0}", current));
|
|
}
|
|
else
|
|
{
|
|
if (!Equals(expectedSymbols[counter], current))
|
|
{
|
|
output.AppendLine(string.Format("F: Expected: {0}; Actual: {1}", expectedSymbols[counter], current));
|
|
success = false;
|
|
}
|
|
else
|
|
{
|
|
output.AppendLine(string.Format("P: Expected: {0}", expectedSymbols[counter]));
|
|
}
|
|
counter++;
|
|
}
|
|
}
|
|
if (counter < expectedSymbols.Length && !ReferenceEquals(expectedSymbols[counter], IgnoreRemaining))
|
|
{
|
|
success = false;
|
|
for (; counter < expectedSymbols.Length; counter++)
|
|
{
|
|
output.AppendLine(string.Format("F: Expected: {0}; Actual: << None >>", expectedSymbols[counter]));
|
|
}
|
|
}
|
|
}
|
|
Assert.True(success, Environment.NewLine + output.ToString());
|
|
WriteTraceLine(output.Replace("{", "{{").Replace("}", "}}").ToString());
|
|
}
|
|
|
|
[Conditional("PARSER_TRACE")]
|
|
private static void WriteTraceLine(string format, params object[] args)
|
|
{
|
|
Trace.WriteLine(string.Format(format, args));
|
|
}
|
|
}
|
|
}
|