PowerShell/test/powershell/Language/Parser/RedirectionOperator.Tests.ps1
Steve Lee 2639cd89ce Autocorrected CRLF to LF (#4943)
Also, fix `Parser.Tests.ps1` after correcting CRLF.
2017-09-29 16:28:15 -07:00

124 lines
4.8 KiB
PowerShell

Describe "Redirection operator now supports encoding changes" -Tags "CI" {
BeforeAll {
$asciiString = "abc"
if ( $IsWindows ) {
$asciiCR = "`r`n"
}
else {
$asciiCR = [string][char]10
}
# If out-file -encoding happens to have a default, be sure to
# save it away
$SavedValue = $null
$oldDefaultParameterValues = $psDefaultParameterValues.Clone()
$psDefaultParameterValues = @{}
}
AfterAll {
# be sure to tidy up afterwards
$global:psDefaultParameterValues = $oldDefaultParameterValues
}
BeforeEach {
# start each test with a clean plate!
$psdefaultParameterValues.Remove("out-file:encoding")
}
AfterEach {
# end each test with a clean plate!
$psdefaultParameterValues.Remove("out-file:encoding")
}
It "If encoding is unset, redirection should be Unicode" {
$asciiString > TESTDRIVE:\file.txt
$bytes = get-content -encoding byte TESTDRIVE:\file.txt
# create the expected
$BOM = [text.encoding]::unicode.GetPreamble()
$TXT = [text.encoding]::unicode.GetBytes($asciiString)
$CR = [text.encoding]::unicode.GetBytes($asciiCR)
$expectedBytes = .{ $BOM; $TXT; $CR }
$bytes.Count | should be $expectedBytes.count
for($i = 0; $i -lt $bytes.count; $i++) {
$bytes[$i] | Should be $expectedBytes[$i]
}
}
# $availableEncodings = "unknown","string","unicode","bigendianunicode","utf8","utf7", "utf32","ascii","default","oem"
$availableEncodings = (get-command out-file).Parameters["Encoding"].Attributes.ValidValues
foreach($encoding in $availableEncodings) {
$skipTest = $false
if ($encoding -eq "default") {
# [System.Text.Encoding]::Default is exposed by 'System.Private.CoreLib.dll' at
# runtime via reflection. However,it isn't exposed in the reference contract of
# 'System.Text.Encoding', and therefore we cannot use 'Encoding.Default' in our
# code. So we need to skip this encoding in the test.
$skipTest = $true
}
# some of the encodings accepted by out-file aren't real,
# and out-file has its own translation, so we'll
# not do that logic here, but simply ignore those encodings
# as they eventually are translated to "real" encoding
$enc = [system.text.encoding]::$encoding
if ( $enc )
{
$msg = "Overriding encoding for out-file is respected for $encoding"
$BOM = $enc.GetPreamble()
$TXT = $enc.GetBytes($asciiString)
$CR = $enc.GetBytes($asciiCR)
$expectedBytes = .{ $BOM; $TXT; $CR }
$psdefaultparameterValues["out-file:encoding"] = "$encoding"
$asciiString > TESTDRIVE:/file.txt
$observedBytes = Get-Content -encoding Byte TESTDRIVE:/file.txt
# THE TEST
It $msg -Skip:$skipTest {
$observedBytes.Count | Should be $expectedBytes.Count
for($i = 0;$i -lt $observedBytes.Count; $i++) {
$observedBytes[$i] | Should be $expectedBytes[$i]
}
}
}
}
}
Describe "File redirection mixed with Out-Null" -Tags CI {
It "File redirection before Out-Null should work" {
"some text" > $TestDrive\out.txt | Out-Null
Get-Content $TestDrive\out.txt | Should Be "some text"
echo "some more text" > $TestDrive\out.txt | Out-Null
Get-Content $TestDrive\out.txt | Should Be "some more text"
}
}
Describe "File redirection should have 'DoComplete' called on the underlying pipeline processor" -Tags CI {
It "File redirection should result in the same file as Out-File" {
$object = [pscustomobject] @{ one = 1 }
$redirectFile = Join-Path $TestDrive fileRedirect.txt
$outFile = Join-Path $TestDrive outFile.txt
$object > $redirectFile
$object | Out-File $outFile
$redirectFileContent = Get-Content $redirectFile -Raw
$outFileContent = Get-Content $outFile -Raw
$redirectFileContent | Should Be $outFileContent
}
It "File redirection should not mess up the original pipe" {
$outputFile = Join-Path $TestDrive output.txt
$otherStreamFile = Join-Path $TestDrive otherstream.txt
$result = & { $(Get-Command NonExist; 1234) > $outputFile *> $otherStreamFile; "Hello" }
$result | Should Be "Hello"
$outputContent = Get-Content $outputFile -Raw
$outputContent.Trim() | Should Be '1234'
$errorContent = Get-Content $otherStreamFile | ForEach-Object { $_.Trim() }
$errorContent = $errorContent -join ""
$errorContent | Should Match "CommandNotFoundException,Microsoft.PowerShell.Commands.GetCommandCommand"
}
}