File: Integration\Playwright\Infrastructure\MockDashboardClient.cs
Web Access
Project: src\tests\Aspire.Dashboard.Tests\Aspire.Dashboard.Tests.csproj (Aspire.Dashboard.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Collections.Frozen;
using Aspire.Dashboard.Model;
using Google.Protobuf.WellKnownTypes;
 
namespace Aspire.Dashboard.Tests.Integration.Playwright.Infrastructure;
 
public sealed class MockDashboardClient : IDashboardClient
{
    public static readonly ResourceViewModel TestResource1 = new()
    {
        Name = "TestResource",
        DisplayName = "TestResource",
        Commands = [],
        CreationTimeStamp = DateTime.Now,
        Environment = [],
        ResourceType = KnownResourceTypes.Project,
        Properties = new[]
        {
            new KeyValuePair<string, Value>(KnownProperties.Project.Path, new Value()
            {
                StringValue = "C:/MyProjectPath/Project.csproj"
            })
        }.ToFrozenDictionary(),
        State = "Running",
        Uid = Guid.NewGuid().ToString(),
        StateStyle = null,
        Urls = [],
        Volumes = []
    };
 
    public bool IsEnabled => true;
    public Task WhenConnected => Task.CompletedTask;
    public string ApplicationName => "IntegrationTestApplication";
    public ValueTask DisposeAsync() => ValueTask.CompletedTask;
    public Task<ResourceCommandResponseViewModel> ExecuteResourceCommandAsync(string resourceName, string resourceType, CommandViewModel command, CancellationToken cancellationToken) => throw new NotImplementedException();
    public IAsyncEnumerable<IReadOnlyList<ResourceLogLine>> SubscribeConsoleLogs(string resourceName, CancellationToken cancellationToken) => throw new NotImplementedException();
 
    public Task<ResourceViewModelSubscription> SubscribeResourcesAsync(CancellationToken cancellationToken)
    {
        return Task.FromResult(new ResourceViewModelSubscription(
            [TestResource1],
            Test()
        ));
    }
 
    private static async IAsyncEnumerable<IReadOnlyList<ResourceViewModelChange>> Test()
    {
        await Task.CompletedTask;
        yield return [];
    }
}