PowerShell/test/powershell/Language/Scripting/NativeExecution/NativeLinuxCommands.Tests.ps1
James Truher [MSFT] 563806c15d Change native execution tests to use df instead of stty (#3685)
when automating test execution, some environments don't have a tty which causes
the tests to fail. df is just as good a test as stty as it is also guaranteed to be
present. This change also allows the tests to be run on OSX
2017-05-02 18:45:35 -07:00

58 lines
1.8 KiB
PowerShell

if ( $IsWindows ) {
$PesterSkipOrPending = @{ Skip = $true }
}
else {
$PesterSkipOrPending = @{}
}
Describe "NativeLinuxCommands" -tags "CI" {
It "Should return a type of 'string' for hostname cmdlet" {
$result = hostname
$result | Should Not BeNullOrEmpty
$result | Should BeOfType string
}
It "Should find Application grep" @PesterSkipOrPending {
(get-command grep).CommandType | Should Be Application
}
It "Should pipe to grep and get result" @PesterSkipOrPending {
"hello world" | grep hello | Should Be "hello world"
}
It "Should find Application touch" @PesterSkipOrPending {
(get-command touch).CommandType | Should Be Application
}
It "Should not redirect standard input if native command is the first command in pipeline (1)" @PesterSkipOrPending {
df | ForEach-Object -Begin { $out = @() } -Process { $out += $_ }
$out.Length -gt 0 | Should Be $true
$out[0] -like "Filesystem*Available*" | Should Be $true
}
It "Should not redirect standard input if native command is the first command in pipeline (2)" @PesterSkipOrPending {
$out = df
$out.Length -gt 0 | Should Be $true
$out[0] -like "Filesystem*Available*" | Should Be $true
}
}
Describe "Scripts with extensions" -tags "CI" {
BeforeAll {
$data = "Hello World"
Setup -File testScript.ps1 -Content "'$data'"
$originalPath = $env:PATH
$env:PATH += [IO.Path]::PathSeparator + $TestDrive
}
AfterAll {
$env:PATH = $originalPath
}
It "Should run a script with its full name" {
testScript.ps1 | Should Be $data
}
It "Should run a script with its short name" {
testScript | Should Be $data
}
}