Begin unit tests for RazorCompiler

This commit is contained in:
Steve Sanderson 2018-01-12 15:08:10 +00:00
parent f8cbed2326
commit 654c16fb44
3 changed files with 143 additions and 3 deletions

View File

@ -27,8 +27,13 @@ namespace Microsoft.Blazor.Build.Core.RazorCompilation
/// <param name="verboseOutput">If not null, additional information will be written to this <see cref="TextWriter"/>.</param>
/// <returns>A collection of <see cref="RazorCompilerDiagnostic"/> instances representing any warnings or errors that were encountered.</returns>
public ICollection<RazorCompilerDiagnostic> CompileFiles(IEnumerable<string> inputPaths, string outputNamespace, TextWriter resultOutput, TextWriter verboseOutput)
=> inputPaths.SelectMany(
path => CompileSingleFile(path, outputNamespace, resultOutput, verboseOutput)).ToList();
=> inputPaths.SelectMany(path =>
{
using (var reader = File.OpenText(path))
{
return CompileSingleFile(path, reader, outputNamespace, resultOutput, verboseOutput);
}
}).ToList();
/// <summary>
/// Writes C# source code representing a Blazor component defined by a Razor file.
@ -38,7 +43,7 @@ namespace Microsoft.Blazor.Build.Core.RazorCompilation
/// <param name="resultOutput">A <see cref="TextWriter"/> to which C# source code will be written.</param>
/// <param name="verboseOutput">If not null, additional information will be written to this <see cref="TextWriter"/>.</param>
/// <returns>An enumerable of <see cref="RazorCompilerDiagnostic"/> instances representing any warnings or errors that were encountered.</returns>
public IEnumerable<RazorCompilerDiagnostic> CompileSingleFile(string inputFilePath, string outputNamespace, TextWriter resultOutput, TextWriter verboseOutput)
public IEnumerable<RazorCompilerDiagnostic> CompileSingleFile(string inputFilePath, TextReader inputFileReader, string outputNamespace, TextWriter resultOutput, TextWriter verboseOutput)
{
if (resultOutput == null)
{

View File

@ -8,6 +8,7 @@
<ItemGroup>
<PackageReference Include="AngleSharp" Version="0.9.9" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.6.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />

View File

@ -0,0 +1,134 @@
// 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 Microsoft.Blazor.Build.Core.RazorCompilation;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using Xunit;
namespace Microsoft.Blazor.Build.Test
{
public class RazorCompilerTest
{
[Fact]
public void RejectsInvalidClassName()
{
// Arrange/Act
var result = CompileToCSharp(
"x:\\dir\\subdir\\Filename with spaces.cshtml",
"ignored code",
"ignored namespace");
// Assert
Assert.Collection(result.Diagnostics,
item =>
{
Assert.Equal(RazorCompilerDiagnostic.DiagnosticType.Error, item.Type);
Assert.StartsWith($"Invalid name 'Filename with spaces'", item.Message);
});
}
[Fact]
public void CreatesClassWithCorrectNameAndNamespace()
{
// Arrange/Act
var result = CompileToAssembly(
"x:\\dir\\subdir\\Filename.cshtml",
"{* No code *}",
"MyCompany.MyNamespace");
// Assert
Assert.Empty(result.Diagnostics);
Assert.Collection(result.Assembly.GetTypes(),
type =>
{
Assert.Equal("Filename", type.Name);
Assert.Equal("MyCompany.MyNamespace", type.Namespace);
});
}
private static CompileToAssemblyResult CompileToAssembly(string cshtmlFilename, string cshtmlContent, string outputNamespace)
{
var csharpResult = CompileToCSharp(cshtmlFilename, cshtmlContent, outputNamespace);
if (csharpResult.Diagnostics.Any())
{
var diagnosticsLog = string.Join(Environment.NewLine,
csharpResult.Diagnostics.Select(d => d.FormatForConsole()).ToArray());
throw new InvalidOperationException($"Aborting compilation to assembly because RazorCompiler returned nonempty diagnostics: {diagnosticsLog}");
}
var syntaxTrees = new[]
{
CSharpSyntaxTree.ParseText(csharpResult.Code)
};
var references = new[]
{
MetadataReference.CreateFromFile(typeof(object).GetTypeInfo().Assembly.Location)
};
var options = new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary);
var assemblyName = "TestAssembly" + Guid.NewGuid().ToString("N");
var compilation = CSharpCompilation.Create(assemblyName,
syntaxTrees,
references,
options);
using (var peStream = new MemoryStream())
{
compilation.Emit(peStream);
return new CompileToAssemblyResult
{
Diagnostics = compilation.GetDiagnostics(),
VerboseLog = csharpResult.VerboseLog,
Assembly = Assembly.Load(peStream.ToArray())
};
}
}
private static CompileToCSharpResult CompileToCSharp(string cshtmlFilename, string cshtmlContent, string outputNamespace)
{
using (var resultStream = new MemoryStream())
using (var resultWriter = new StreamWriter(resultStream))
using (var verboseLogStream = new MemoryStream())
using (var verboseWriter = new StreamWriter(verboseLogStream))
using (var inputReader = new StringReader(cshtmlContent))
{
var diagnostics = new RazorCompiler().CompileSingleFile(
cshtmlFilename,
inputReader,
outputNamespace,
resultWriter,
verboseWriter);
resultWriter.Flush();
verboseWriter.Flush();
return new CompileToCSharpResult
{
Code = Encoding.UTF8.GetString(resultStream.ToArray()),
VerboseLog = Encoding.UTF8.GetString(verboseLogStream.ToArray()),
Diagnostics = diagnostics
};
}
}
private class CompileToCSharpResult
{
public string Code { get; set; }
public string VerboseLog { get; set; }
public IEnumerable<RazorCompilerDiagnostic> Diagnostics { get; set; }
}
private class CompileToAssemblyResult
{
public Assembly Assembly { get; set; }
public string VerboseLog { get; set; }
public IEnumerable<Diagnostic> Diagnostics { get; set; }
}
}
}