mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit 239286737d15cb84a893703ee5a8b33a2d67ad3d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit 34fb4cca2aa78deb84d4cbc359992a7c6bba7ea5.
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using Xunit;
|
|
|
|
namespace Bit.Test.Common.AutoFixture.Attributes
|
|
{
|
|
/// <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;
|
|
|
|
public RequiredEnvironmentTheoryAttribute(params string[] environmentVariableNames)
|
|
{
|
|
_environmentVariableNames = environmentVariableNames;
|
|
|
|
if (!HasRequiredEnvironmentVariables())
|
|
{
|
|
Skip = $"Missing one or more required environment variables. ({string.Join(", ", _environmentVariableNames)})";
|
|
}
|
|
}
|
|
|
|
private bool HasRequiredEnvironmentVariables()
|
|
{
|
|
foreach (var env in _environmentVariableNames)
|
|
{
|
|
var value = Environment.GetEnvironmentVariable(env);
|
|
|
|
if (value == null)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|