// 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.IO;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Xunit;
namespace Microsoft.AspNetCore.Mvc
{
///
/// Reader and, if GENERATE_BASELINES is defined, writer for files compiled into an assembly as resources.
///
/// Inspired by Razor's BaselineWriter and TestFile test classes.
public static class ResourceFile
{
private static object writeLock = new object();
///
/// Return for from 's
/// manifest.
///
/// The containing .
///
/// Name of the manifest resource in . A path relative to the test project
/// directory.
///
///
/// If true is used as a source file and must exist. Otherwise
/// is an output file and, if GENERATE_BASELINES is defined, it will
/// soon be generated if missing.
///
///
/// for from 's
/// manifest. null if GENERATE_BASELINES is defined, is
/// false, and is not found in .
///
///
/// Thrown if GENERATE_BASELINES is not defined or is true and
/// is not found in .
///
public static Stream GetResourceStream(Assembly assembly, string resourceName, bool sourceFile)
{
var fullName = $"{ assembly.GetName().Name }.{ resourceName.Replace('/', '.') }";
if (!Exists(assembly, fullName))
{
#if GENERATE_BASELINES
if (sourceFile)
{
// Even when generating baselines, a missing source file is a serious problem.
Assert.True(false, $"Manifest resource: { fullName } not found.");
}
#else
// When not generating baselines, a missing source or output file is always an error.
Assert.True(false, $"Manifest resource '{ fullName }' not found.");
#endif
return null;
}
var stream = assembly.GetManifestResourceStream(fullName);
if (sourceFile)
{
// Normalize line endings to '\r\n' (CRLF). This removes core.autocrlf, core.eol, core.safecrlf, and
// .gitattributes from the equation and treats "\r\n" and "\n" as equivalent. Does not handle
// some line endings like "\r" but otherwise ensures checksums and line mappings are consistent.
string text;
using (var streamReader = new StreamReader(stream))
{
text = streamReader.ReadToEnd().Replace("\r", "").Replace("\n", "\r\n");
}
var bytes = Encoding.UTF8.GetBytes(text);
stream = new MemoryStream(bytes);
}
return stream;
}
///
/// Return content of from 's
/// manifest.
///
/// The containing .
///
/// Name of the manifest resource in . A path relative to the test project
/// directory.
///
///
/// If true is used as a source file and must exist. Otherwise
/// is an output file and, if GENERATE_BASELINES is defined, it will
/// soon be generated if missing.
///
///
/// A which on completion returns the content of
/// from 's manifest. null if
/// GENERATE_BASELINES is defined, is false, and
/// is not found in .
///
///
/// Thrown if GENERATE_BASELINES is not defined or is true and
/// is not found in .
///
/// Normalizes line endings to .
public static async Task ReadResourceAsync(Assembly assembly, string resourceName, bool sourceFile)
{
using (var stream = GetResourceStream(assembly, resourceName, sourceFile))
{
if (stream == null)
{
return null;
}
using (var streamReader = new StreamReader(stream))
{
return await streamReader.ReadToEndAsync();
}
}
}
///
/// Return content of from 's
/// manifest.
///
/// The containing .
///
/// Name of the manifest resource in . A path relative to the test project
/// directory.
///
///
/// If true is used as a source file and must exist. Otherwise
/// is an output file and, if GENERATE_BASELINES is defined, it will
/// soon be generated if missing.
///
///
/// The content of from 's
/// manifest. null if GENERATE_BASELINES is defined, is
/// false, and is not found in .
///
///
/// Thrown if GENERATE_BASELINES is not defined or is true and
/// is not found in .
///
/// Normalizes line endings to .
public static string ReadResource(Assembly assembly, string resourceName, bool sourceFile)
{
using (var stream = GetResourceStream(assembly, resourceName, sourceFile))
{
if (stream == null)
{
return null;
}
using (var streamReader = new StreamReader(stream))
{
return streamReader.ReadToEnd();
}
}
}
///
/// Write to file that will become in
/// the next time the project is built. Does nothing if
/// and already match.
///
/// The containing .
///
/// Name of the manifest resource in . A path relative to the test project
/// directory.
///
///
/// Current content of . null if does
/// not currently exist in .
///
///
/// New content of in .
///
[Conditional("GENERATE_BASELINES")]
public static void UpdateFile(Assembly assembly, string resourceName, string previousContent, string content)
{
// Normalize line endings to '\r\n' for comparison. This removes Environment.NewLine from the equation. Not
// worth updating files just because we generate baselines on a different system.
var normalizedPreviousContent = previousContent?.Replace("\r", "").Replace("\n", "\r\n");
var normalizedContent = content.Replace("\r", "").Replace("\n", "\r\n");
if (!string.Equals(normalizedPreviousContent, normalizedContent, StringComparison.Ordinal))
{
// The build system compiles every file under the resources folder as a resource available at runtime
// with the same name as the file name. Need to update this file on disc.
var projectPath = SolutionPathUtility.GetProjectPath("test", assembly);
var fullPath = Path.Combine(projectPath, resourceName);
WriteFile(fullPath, content);
}
}
private static bool Exists(Assembly assembly, string fullName)
{
var resourceNames = assembly.GetManifestResourceNames();
foreach (var resourceName in resourceNames)
{
// Resource names are case-sensitive.
if (string.Equals(fullName, resourceName, StringComparison.Ordinal))
{
return true;
}
}
return false;
}
private static void WriteFile(string fullPath, string content)
{
// Serialize writes to minimize contention for file handles and directory access.
lock (writeLock)
{
// Write content to the file, creating it if necessary.
using (var stream = File.Open(fullPath, FileMode.Create, FileAccess.Write))
{
using (var writer = new StreamWriter(stream))
{
writer.Write(content);
}
}
}
}
}
}