PowerShell/test/powershell/Start-Process.Tests.ps1

73 lines
2.6 KiB
PowerShell
Raw Normal View History

Describe "Start-Process" {
2015-11-11 22:16:00 +01:00
$pingCommand = (Get-Command -CommandType Application ping)[0].Definition
2015-11-10 18:45:21 +01:00
$pingDirectory = Split-Path $pingCommand -Parent
$tempFile = Join-Path -Path $TestDrive -ChildPath PSTest
$assetsFile = Join-Path -Path (Join-Path -Path $PSScriptRoot -ChildPath assets) -ChildPath SortTest.txt
if ($IsWindows)
2015-11-10 18:45:21 +01:00
{
$pingParam = "localhost -n 4"
2015-11-10 18:45:21 +01:00
}
else
{
$pingParam = "localhost -c 4"
2015-11-10 18:45:21 +01:00
}
It "Should process arguments without error" {
$process = Start-Process ping -ArgumentList $pingParam -PassThru
2015-11-10 18:45:21 +01:00
$process.Length | Should Be 1
$process.Id | Should BeGreaterThan 1
$process.ProcessName | Should Be "ping"
}
It "Should work correctly when used with full path name" {
$process = Start-Process $pingCommand -ArgumentList $pingParam -PassThru
2015-11-10 18:45:21 +01:00
$process.Length | Should Be 1
$process.Id | Should BeGreaterThan 1
$process.ProcessName | Should Be "ping"
}
2015-11-11 19:17:22 +01:00
2015-11-10 18:45:21 +01:00
It "Should invoke correct path when used with FilePath argument" {
$process = Start-Process -FilePath $pingCommand -ArgumentList $pingParam -PassThru
2015-11-10 18:45:21 +01:00
$process.Length | Should Be 1
$process.Id | Should BeGreaterThan 1
$process.ProcessName | Should Be "ping"
}
It "Should wait for command completion if used with Wait argument" {
$process = Start-Process ping -ArgumentList $pingParam -Wait -PassThru
2015-11-10 18:45:21 +01:00
}
It "Should work correctly with WorkingDirectory argument" {
$process = Start-Process ping -WorkingDirectory $pingDirectory -ArgumentList $pingParam -PassThru
2015-11-10 18:45:21 +01:00
$process.Length | Should Be 1
$process.Id | Should BeGreaterThan 1
$process.ProcessName | Should Be "ping"
}
It "Should should handle stderr redirection without error" {
$process = Start-Process ping -ArgumentList $pingParam -PassThru -RedirectStandardError $tempFile
2015-11-10 18:45:21 +01:00
$process.Length | Should Be 1
$process.Id | Should BeGreaterThan 1
$process.ProcessName | Should Be "ping"
}
It "Should should handle stdout redirection without error" {
$process = Start-Process ping -ArgumentList $pingParam -Wait -RedirectStandardOutput $tempFile
2015-11-11 19:17:22 +01:00
$dirEntry = dir $tempFile
$dirEntry.Length | Should BeGreaterThan 0
2015-11-10 18:45:21 +01:00
}
It "Should should handle stdin redirection without error" {
$process = Start-Process sort -Wait -RedirectStandardOutput $tempFile -RedirectStandardInput $assetsFile
2015-11-11 19:17:22 +01:00
$dirEntry = dir $tempFile
$dirEntry.Length | Should BeGreaterThan 0
2015-11-10 18:45:21 +01:00
}
2016-02-04 17:43:51 +01:00
Remove-Item -Path $tempFile -Force
2015-11-10 18:45:21 +01:00
}