File: TestInfrastructure\VirtualRazorProjectFileSystem.cs
Web Access
Project: src\src\Mvc\Mvc.Razor.RuntimeCompilation\test\Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.Test.csproj (Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.Test)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Razor.Language;
 
internal class VirtualRazorProjectFileSystem : RazorProjectFileSystem
{
    private readonly DirectoryNode _root = new DirectoryNode("/");
 
    public override IEnumerable<RazorProjectItem> EnumerateItems(string basePath)
    {
        basePath = NormalizeAndEnsureValidPath(basePath);
        var directory = _root.GetDirectory(basePath);
        return directory?.EnumerateItems() ?? Enumerable.Empty<RazorProjectItem>();
    }
 
    public override RazorProjectItem GetItem(string path)
    {
        return GetItem(path, fileKind: null);
    }
 
    public override RazorProjectItem GetItem(string path, string fileKind)
    {
        // We ignore fileKind here because the _root is pre-filled with project items that already have fileKinds defined. This is
        // a unique circumstance where the RazorProjectFileSystem is actually pre-filled with all of its project items on construction.
 
        path = NormalizeAndEnsureValidPath(path);
        return _root.GetItem(path) ?? new NotFoundProjectItem(string.Empty, path);
    }
 
    public void Add(RazorProjectItem projectItem)
    {
        ArgumentNullException.ThrowIfNull(projectItem);
 
        var filePath = NormalizeAndEnsureValidPath(projectItem.FilePath);
        _root.AddFile(new FileNode(filePath, projectItem));
    }
}