forked from Azure/azure-functions-core-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandCheckerFacts.cs
31 lines (28 loc) · 1.15 KB
/
CommandCheckerFacts.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System.Runtime.InteropServices;
using Azure.Functions.Cli.Common;
using FluentAssertions;
using Xunit;
namespace Azure.Functions.Cli.Tests
{
public class CommandCheckerFacts
{
[Fact]
public void CommandCheckerShouldWork()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
var exists = CommandChecker.CommandExists("cmd");
var doesntExist = CommandChecker.CommandExists("fooo");
exists.Should().BeTrue(because: "checking if cmd command exists should always be true on Windows");
doesntExist.Should().BeFalse(because: "checking if fooo command exists on windows should be false");
}
else
{
var exists = CommandChecker.CommandExists("bash");
var doesntExist = CommandChecker.CommandExists("fooo");
exists.Should().BeTrue(because: "checking if sh command exists should always be true on Unix-like");
doesntExist.Should().BeFalse(because: "checking if fooo command exists on Unix-like should be false");
}
}
}
}