2022-06-30 01:46:41 +02:00
|
|
|
|
using Xunit;
|
2021-12-22 19:27:52 +01:00
|
|
|
|
|
|
|
|
|
namespace Bit.Test.Common.AutoFixture.Attributes;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2021-12-22 19:27:52 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used for requiring certain environment variables exist at the time. Mostly used for more edge unit tests that shouldn't
|
|
|
|
|
/// be run during CI builds or should only be ran in CI builds when pieces of information are available.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class RequiredEnvironmentTheoryAttribute : TheoryAttribute
|
|
|
|
|
{
|
|
|
|
|
private readonly string[] _environmentVariableNames;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2021-12-22 19:27:52 +01:00
|
|
|
|
public RequiredEnvironmentTheoryAttribute(params string[] environmentVariableNames)
|
|
|
|
|
{
|
|
|
|
|
_environmentVariableNames = environmentVariableNames;
|
|
|
|
|
|
|
|
|
|
if (!HasRequiredEnvironmentVariables())
|
|
|
|
|
{
|
|
|
|
|
Skip = $"Missing one or more required environment variables. ({string.Join(", ", _environmentVariableNames)})";
|
|
|
|
|
}
|
2022-08-29 22:06:55 +02:00
|
|
|
|
}
|
2021-12-22 19:27:52 +01:00
|
|
|
|
|
|
|
|
|
private bool HasRequiredEnvironmentVariables()
|
2022-08-29 22:06:55 +02:00
|
|
|
|
{
|
2021-12-22 19:27:52 +01:00
|
|
|
|
foreach (var env in _environmentVariableNames)
|
|
|
|
|
{
|
|
|
|
|
var value = Environment.GetEnvironmentVariable(env);
|
2022-08-29 21:53:48 +02:00
|
|
|
|
|
2021-12-22 19:27:52 +01:00
|
|
|
|
if (value == null)
|
2022-08-29 21:53:48 +02:00
|
|
|
|
{
|
2021-12-22 19:27:52 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2022-08-29 21:53:48 +02:00
|
|
|
|
}
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2021-12-22 19:27:52 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|