Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RazorHotReloadTest.cs « test « Mvc.Razor « Mvc « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de45a3ce069e3ca679aac2ae923910d2df0bc96e (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Diagnostics;
using Microsoft.AspNetCore.Mvc.ModelBinding;
using Microsoft.AspNetCore.Mvc.Razor.Compilation;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;

namespace Microsoft.AspNetCore.Mvc.Razor;

public class RazorHotReloadTest
{
    [Fact]
    public void ClearCache_CanClearViewCompiler()
    {
        // Regression test for https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1425693
        // Arrange
        var serviceProvider = GetServiceProvider();

        var compilerProvider = Assert.IsType<DefaultViewCompilerProvider>(serviceProvider.GetRequiredService<IViewCompilerProvider>());
        var hotReload = serviceProvider.GetRequiredService<RazorHotReload>();

        // Act
        hotReload.ClearCache(Type.EmptyTypes);

        // Assert
        Assert.Null(compilerProvider.Compiler.CompiledViews);
    }

    [Fact]
    public void ClearCache_ResetsViewEngineLookupCache()
    {
        // Arrange
        var serviceProvider = GetServiceProvider();

        var viewEngine = Assert.IsType<RazorViewEngine>(serviceProvider.GetRequiredService<IRazorViewEngine>());
        var hotReload = serviceProvider.GetRequiredService<RazorHotReload>();
        var lookup = viewEngine.ViewLookupCache;

        // Act
        hotReload.ClearCache(Type.EmptyTypes);

        // Assert
        Assert.NotSame(lookup, viewEngine.ViewLookupCache);
    }

    [Fact]
    public void ClearCache_ResetsRazorPageActivator()
    {
        // Arrange
        var serviceProvider = GetServiceProvider();

        var pageActivator = Assert.IsType<RazorPageActivator>(serviceProvider.GetRequiredService<IRazorPageActivator>());
        var hotReload = serviceProvider.GetRequiredService<RazorHotReload>();
        var cache = pageActivator.ActivationInfo;
        cache[new RazorPageActivator.CacheKey()] = new RazorPagePropertyActivator(
            typeof(string), typeof(object),
            new EmptyModelMetadataProvider(),
            new RazorPagePropertyActivator.PropertyValueAccessors());

        // Act
        Assert.Single(pageActivator.ActivationInfo);
        hotReload.ClearCache(Type.EmptyTypes);

        // Assert
        Assert.Empty(pageActivator.ActivationInfo);
    }

    private static ServiceProvider GetServiceProvider()
    {
        var diagnosticListener = new DiagnosticListener("Microsoft.AspNetCore");

        var serviceProvider = new ServiceCollection()
            .AddControllersWithViews()
            .Services
            // Manually add RazorHotReload because it's only added if MetadataUpdateHandler.IsSupported = true 
            .AddSingleton<RazorHotReload>()
            .AddSingleton<ILoggerFactory>(NullLoggerFactory.Instance)
            .AddSingleton<DiagnosticSource>(diagnosticListener)
            .AddSingleton(diagnosticListener)
            .BuildServiceProvider();
        return serviceProvider;
    }
}