File: SkipIfDockerNotPresentAttribute.cs
Web Access
Project: src\src\SignalR\server\StackExchangeRedis\test\Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests.csproj (Microsoft.AspNetCore.SignalR.StackExchangeRedis.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;
using Microsoft.AspNetCore.InternalTesting;
 
namespace Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests;
 
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class SkipIfDockerNotPresentAttribute : Attribute, ITestCondition
{
    public bool IsMet => CheckDocker();
    public string SkipReason { get; private set; } = "Docker is not available";
 
    private bool CheckDocker()
    {
        if (Docker.Default != null)
        {
            // Docker is present, but is it working?
            if (Docker.Default.RunCommand("ps", "docker ps", out var output) != 0)
            {
                SkipReason = $"Failed to invoke test command 'docker ps'. Output: {output}";
            }
            else
            {
                // We have a docker
                return true;
            }
        }
        else
        {
            SkipReason = "Docker is not installed on the host machine.";
        }
 
        // If we get here, we don't have a docker
        return false;
    }
}