|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Diagnostics.HealthChecks;
namespace Microsoft.Extensions.Diagnostics.Probes.Test;
internal class MockHealthCheckService : HealthCheckService
{
private readonly Task<HealthReport> _healthyReport = CreateHealthReport(HealthStatus.Healthy);
private readonly Task<HealthReport> _unhealthyReport = CreateHealthReport(HealthStatus.Unhealthy);
public bool IsHealthy = true;
public override Task<HealthReport> CheckHealthAsync(Func<HealthCheckRegistration, bool>? predicate, CancellationToken cancellationToken = default)
{
return IsHealthy ? _healthyReport : _unhealthyReport;
}
private static Task<HealthReport> CreateHealthReport(HealthStatus healthStatus)
{
HealthReportEntry entry = new HealthReportEntry(healthStatus, null, TimeSpan.Zero, null, null);
var healthStatusRecords = new Dictionary<string, HealthReportEntry> { { "id", entry } };
return Task.FromResult(new HealthReport(healthStatusRecords, TimeSpan.Zero));
}
}
|