Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,43 @@
# Licensed under the MIT License.
Describe "Convert-Path tests" -Tag CI {
It "Convert-Path should handle provider qualified paths" {
Convert-Path "FileSystem::${TESTDRIVE}" | Should -BeExactly "${TESTDRIVE}"
Convert-Path -Path "FileSystem::${TestDrive}" | Should -BeExactly "${TestDrive}"
}

It "Convert-Path should return the proper path" {
Convert-Path "$TESTDRIVE" | Should -BeExactly "$TESTDRIVE"
Convert-Path -Path "$TestDrive" | Should -BeExactly "$TestDrive"
}

It "Convert-Path supports pipelined input" {
"$TESTDRIVE" | Convert-Path | Should -BeExactly "$TESTDRIVE"
"$TestDrive" | Convert-Path | Should -BeExactly "$TestDrive"
}

It "Convert-Path supports pipelined input by property name" {
get-item $TESTDRIVE | Convert-Path | Should -BeExactly "$TESTDRIVE"
Get-Item -Path $TestDrive | Convert-Path | Should -BeExactly "$TestDrive"
}

It "Convert-Path without arguments is an error" {
$ps = [powershell]::Create()
{ $ps.AddCommand("Convert-Path").Invoke() } | Should -Throw -ErrorId "ParameterBindingException"
}

It "Convert-Path with null path is an error" {
{ Convert-Path -path "" } | Should -Throw -ErrorId "ParameterArgumentValidationErrorEmptyStringNotAllowed,Microsoft.PowerShell.Commands.ConvertPathCommand"
{ Convert-Path -Path "" } | Should -Throw -ErrorId "ParameterArgumentValidationErrorEmptyStringNotAllowed,Microsoft.PowerShell.Commands.ConvertPathCommand"
}

It "Convert-Path with non-existing non-filesystem path is an error" {
{ Convert-Path -path "env:thisvariableshouldnotexist" -ErrorAction Stop } | Should -Throw -ErrorId "PathNotFound,Microsoft.PowerShell.Commands.ConvertPathCommand"
{ Convert-Path -Path "env:thisvariableshouldnotexist" -ErrorAction Stop } | Should -Throw -ErrorId "PathNotFound,Microsoft.PowerShell.Commands.ConvertPathCommand"
}

It "Convert-Path can handle multiple directories" {
$d1 = Setup -D dir1 -pass
$d2 = Setup -D dir2 -pass
$result = convert-path "${TESTDRIVE}/dir?"
$d1 = Setup -Dir -Path dir1 -PassThru
$d2 = Setup -Dir -Path dir2 -PassThru
$result = Convert-Path -Path "${TestDrive}/dir?"
$result.count | Should -Be 2
$result -join "," | Should -BeExactly (@("$d1","$d2") -join ",")
}

It "Convert-Path should return something which exists" {
Convert-Path $TESTDRIVE | Should -Exist
Convert-Path -Path $TestDrive | Should -Exist
}
}