File size: 35,439 Bytes
8c763fb | 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 | # Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Describe "Validate Copy-Item locally" -Tags "CI" {
It "Copy-Item has non-terminating error if destination is in use" -Skip:(!$IsWindows) {
Copy-Item -Path $env:windir\system32\cmd.exe -Destination TestDrive:\
$cmd = Start-Process -FilePath TestDrive:\cmd.exe -PassThru
try {
{ Copy-Item -Path $env:windir\system32\cmd.exe -Destination TestDrive:\ -ErrorAction SilentlyContinue } | Should -Not -Throw
}
finally {
$cmd | Stop-Process
}
}
}
# This is a Pester test suite to validate Copy-Item remotely using a remote session.
# If PS Remoting is not available, do not run the suite.
function ShouldRun
{
if ( $IsCoreCLR ) { return $false }
$result = Invoke-Command -ComputerName . -ScriptBlock {1} -ErrorAction SilentlyContinue
return ($result -eq 1)
}
if (-not (ShouldRun))
{
Write-Host "PS Remoting is not available, skipping tests..." -ForegroundColor Cyan
return
}
Describe "Validate Copy-Item Remotely" -Tags "CI" {
# Validate a copy item operation.
# $filePath is the source file path
#
function ValidateCopyItemOperation
{
param ([string]$filePath, [string]$destination)
if (-not $destination)
{
$copiedFilePath = ([string]$filePath).Replace("SourceDirectory", "DestinationDirectory")
}
else
{
$fileName = Split-Path $filePath -Leaf
$copiedFilePath = Join-Path $destination $fileName
}
$copiedFilePath | Should -Exist
# Validate file attributes
$originalFile = Get-Item $filePath -Force
$newFile = Get-Item $copiedFilePath -Force
# Validate file Length
$newFile.Length | Should -Be $originalFile.Length
# Validate LastWriteTime
$newFile.LastWriteTime | Should -Be $originalFile.LastWriteTime
$newFile.LastWriteTimeUtc | Should -Be $originalFile.LastWriteTimeUtc
# Validate Attributes
$newFile.Attributes.value__ | Should -Be $originalFile.Attributes.value__
}
# Validate a copy item operation.
# $filePath is the source file path
#
function ValidateCopyItemOperationForAlternateDataStream
{
param ([string]$filePath, $streamName, $expectedStreamContent)
$copiedFilePath = ([string]$filePath).Replace("SourceDirectory", "DestinationDirectory")
$copiedFilePath | Should -Exist
(Get-Item $copiedFilePath).Length | Should -Be (Get-Item $filePath).Length
# Validate the stream
$actualStreamContent = Get-Content -Path $copiedFilePath -Stream $streamName -ErrorAction SilentlyContinue
$actualStreamContent | Should -Match $expectedStreamContent
}
BeforeAll {
$s = New-PSSession -ComputerName . -ErrorAction SilentlyContinue
if (-not $s)
{
throw "Failed to create PSSession for remote copy operations."
}
$destinationFolderName = "DestinationDirectory"
$sourceFolderName = "SourceDirectory"
$testDirectory = Join-Path -Path "TestDrive:" -ChildPath "copyItemRemotely"
$destinationDirectory = Join-Path -Path $testDirectory -ChildPath $destinationFolderName
$sourceDirectory = Join-Path -Path $testDirectory -ChildPath $sourceFolderName
# Creates one txt file
#
function CreateTestFile
{
param ([switch]$setReadOnlyAttribute = $false, [switch]$emptyFile = $false)
# Create the test directory.
New-Item -Path $sourceDirectory -Force -ItemType Directory | Out-Null
# Create the file.
$filePath = Join-Path -Path $sourceDirectory -ChildPath "testfileone.txt"
if (-not $emptyFile)
{
"File test content" | Out-File -FilePath $filePath -Force
}
else
{
"" | Out-File -FilePath $filePath -Force
}
if (-not (Test-Path $filePath))
{
throw "Failed to create test file $filePath."
}
if ($setReadOnlyAttribute)
{
Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $true -Force
}
return (Get-Item $filePath).FullName
}
# Create a set of directories and files with the following structure:
# .\copyItemRemotely\SourceDirectory\A\a.txt
# .\copyItemRemotely\SourceDirectory\A\a2.txt
# .\copyItemRemotely\SourceDirectory\rootFile.txt
# .\copyItemRemotely\SourceDirectory\B\b.txt
# .\copyItemRemotely\SourceDirectory\C\D\d.txt
#
function CreateTestDirectory
{
param ([switch]$setReadOnlyAttribute = $false)
$directoriesToCreate = @()
$directoriesToCreate += "A"
$directoriesToCreate += "B"
$directoriesToCreate += "C\D"
$filesToCreate = @()
$filesToCreate += "rootFile.txt"
$filesToCreate += "A\a.txt"
$filesToCreate += "A\a2.txt"
$filesToCreate += "B\b.txt"
$filesToCreate += "C\D\d.txt"
# Create the directories.
foreach ($directory in $directoriesToCreate)
{
$directoryPath = Join-Path -Path $sourceDirectory -ChildPath $directory
New-Item -Path $directoryPath -Force -ItemType Directory | Out-Null
}
$result = @{
SourceDirectory = (Get-Item $sourceDirectory).FullName
Files = @()
}
# Create the files.
foreach ($file in $filesToCreate)
{
$filePath = Join-Path -Path $sourceDirectory -ChildPath $file
$file + "`r`n File test content" | Out-File -FilePath $filePath -Force
if (-not (Test-Path -Path $filePath))
{
throw "Failed to create test file $filePath."
}
if ($setReadOnlyAttribute)
{
Set-ItemProperty -Path $filePath -Name IsReadOnly -Value $true -Force
}
$result.Files += (Get-Item -Path $filePath).FullName
}
return $result
}
function GenerateTestAssembly
{
$assemblyPath = Join-Path -Path $env:TEMP -ChildPath TestModule
$outputPath = Join-Path -Path $assemblyPath -ChildPath TestModule.dll
if (-not (Test-Path -Path $assemblyPath))
{
New-Item -Path $assemblyPath -Force -ItemType Directory | Out-Null
}
if (-not (Test-Path -Path $outputPath))
{
$code = @"
namespace TestModule
{
using System;
using System.Management.Automation;
[Cmdlet(VerbsCommon.Get, "TestModule")]
public class TestSameCmdlets : PSCmdlet
{
protected override void ProcessRecord()
{
WriteObject("TestModule");
}
}
}
"@
Add-Type -TypeDefinition $code -OutputAssembly $outputPath
}
$result = @{
ModuleName = "TestModule"
Path = (Get-Item $outputPath).FullName
}
return $result
}
function GetDestinationFolderPath
{
return (Get-Item -Path $destinationDirectory).FullName
}
}
AfterAll {
Remove-PSSession -Name $s.Name -ErrorAction SilentlyContinue
}
BeforeEach {
<# Ensure we start with an empty test directory. Here is the file structure
$destinationFolderName = "DestinationDirectory"
$sourceFolderName = "SourceDirectory"
$testDirectory = Join-Path "TestDrive:" "copyItemRemotely"
$destinationDirectory = Join-Path $testDirectory $destinationFolderName
$sourceDirectory = Join-Path $testDirectory $sourceFolderName
#>
if (Test-Path -Path $testDirectory)
{
Remove-Item -Path $testDirectory -Force -ErrorAction SilentlyContinue -Recurse
}
# Create testDirectory, and destinationDirectory
New-Item -Path $testDirectory -ItemType Directory -Force | Out-Null
New-Item -Path $destinationDirectory -ItemType Directory -Force | Out-Null
}
Context "Validate Copy-Item Locally." {
It "Copy-Item -Path $filePath -Destination $destinationFolderPath" {
$filePath = CreateTestFile
$destinationFolderPath = GetDestinationFolderPath
Copy-Item -Path $filePath -Destination $destinationFolderPath
ValidateCopyItemOperation -filePath $filePath
}
It "Copy-Item -Path $($testObject.SourceDirectory) -Destination $destinationFolderPath -Recurse" {
$testObject = CreateTestDirectory
$destinationFolderPath = GetDestinationFolderPath
Copy-Item -Path $testObject.SourceDirectory -Destination $destinationFolderPath -Recurse
foreach ($file in $testObject.Files)
{
$copiedFilePath = ([string]$file).Replace("SourceDirectory", "DestinationDirectory\SourceDirectory")
$copiedFilePath | Should -Exist
}
}
}
Context "Validate Copy-Item to remote session." {
It "Copy one file to remote session." {
$filePath = CreateTestFile
$destinationFolderPath = GetDestinationFolderPath
Copy-Item -Path $filePath -ToSession $s -Destination $destinationFolderPath
ValidateCopyItemOperation -filePath $filePath
}
It "Copy one read only file to remote session." {
$filePath = CreateTestFile -setReadOnlyAttribute
$destinationFolderPath = GetDestinationFolderPath
Copy-Item -Path $filePath -ToSession $s -Destination $destinationFolderPath -Force
ValidateCopyItemOperation -filePath $filePath
}
It "Copy-Item works for a read only file when '-Force' is not used." {
$filePath = CreateTestFile -setReadOnlyAttribute
$destinationFolderPath = GetDestinationFolderPath
Copy-Item -Path $filePath -ToSession $s -Destination $destinationFolderPath -Verbose
ValidateCopyItemOperation -filePath $filePath
}
It "Copy one folder to session Recursively" {
$testObject = CreateTestDirectory
$destinationFolderPath = GetDestinationFolderPath
Copy-Item -Path $testObject.SourceDirectory -ToSession $s -Destination $destinationFolderPath -Recurse
foreach ($file in $testObject.Files)
{
$copiedFilePath = ([string]$file).Replace("SourceDirectory", "DestinationDirectory\SourceDirectory")
$copiedFilePath | Should -Exist
(Get-Item $copiedFilePath).Length | Should -Be (Get-Item $file).Length
}
}
It "Copy folder with read only files to remote session recursively." {
$testObject = CreateTestDirectory -setReadOnlyAttribute
$destinationFolderPath = GetDestinationFolderPath
Copy-Item -Path $testObject.SourceDirectory -ToSession $s -Destination $destinationFolderPath -Recurse -Force
foreach ($file in $testObject.Files)
{
$copiedFilePath = ([string]$file).Replace("SourceDirectory", "DestinationDirectory\SourceDirectory")
$copiedFilePath | Should -Exist
(Get-Item $copiedFilePath).Length | Should -Be (Get-Item $file).Length
}
}
It "Copy one file to remote session fails when the remote directory does not exist." {
$filePath = CreateTestFile
$destinationFolderPath = GetDestinationFolderPath
$destinationFolderPath = Join-Path $destinationFolderPath "A\B\C\D\E"
$expectedFullyQualifiedErrorId = 'RemotePathNotFound,Microsoft.PowerShell.Commands.CopyItemCommand'
{ Copy-Item -Path $filePath -ToSession $s -Destination $destinationFolderPath -ErrorAction Stop } |
Should -Throw -ErrorId $expectedFullyQualifiedErrorId
}
It "Copy folder to remote session recursively works even if the target directory does not exist." {
$testObject = CreateTestDirectory -setReadOnlyAttribute
$destinationFolderPath = GetDestinationFolderPath
$destinationFolderPath = Join-Path $destinationFolderPath "FoderThatDoesNotExist"
Copy-Item -Path $testObject.SourceDirectory -ToSession $s -Destination $destinationFolderPath -Recurse -Force
foreach ($file in $testObject.Files)
{
$copiedFilePath = ([string]$file).Replace("SourceDirectory", "DestinationDirectory\FoderThatDoesNotExist")
$copiedFilePath | Should -Exist
(Get-Item $copiedFilePath).Length | Should -Be (Get-Item $file).Length
}
}
It "Copy one empty file to remote session." {
$filePath = CreateTestFile -emptyFile
$destinationFolderPath = GetDestinationFolderPath
$copiedFilePath = ([string]$filePath).Replace("SourceDirectory", "DestinationDirectory")
$copiedFilePath | Should -Not -Exist
Copy-Item -Path $filePath -ToSession $s -Destination $destinationFolderPath
$copiedFilePath | Should -Exist
(Get-Item $copiedFilePath).Length | Should -Be (Get-Item $filePath).Length
}
It "Copy-Item to session supports alternate data streams." {
$filePath = CreateTestFile
$destinationFolderPath = GetDestinationFolderPath
$streamContent = "This content is hidden"
$streamName = "Hidden"
Set-Content -Path $filePath -Value $streamContent -Stream $streamName
Copy-Item -Path $filePath -ToSession $s -Destination $destinationFolderPath -Verbose
ValidateCopyItemOperationForAlternateDataStream -filePath $filePath -streamName $streamName -expectedStreamContent $streamContent
}
}
Context "Validate Copy-Item from remote session." {
It "Copy one file from remote session." {
$filePath = CreateTestFile
$destinationFolderPath = GetDestinationFolderPath
$copiedFilePath = ([string]$filePath).Replace("SourceDirectory", "DestinationDirectory")
$copiedFilePath | Should -Not -Exist
Copy-Item -Path $filePath -FromSession $s -Destination $destinationFolderPath
ValidateCopyItemOperation -filePath $filePath
}
It "Copy one empty file from remote session." {
$filePath = CreateTestFile -emptyFile
$destinationFolderPath = GetDestinationFolderPath
$copiedFilePath = ([string]$filePath).Replace("SourceDirectory", "DestinationDirectory")
$copiedFilePath | Should -Not -Exist
Copy-Item -Path $filePath -FromSession $s -Destination $destinationFolderPath
ValidateCopyItemOperation -filePath $filePath
}
It "Copy folder from remote session recursively." {
$testObject = CreateTestDirectory
$destinationFolderPath = GetDestinationFolderPath
$files = @(Get-ChildItem $destinationFolderPath -Recurse -Force)
Copy-Item -Path $testObject.SourceDirectory -FromSession $s -Destination $destinationFolderPath -Recurse
foreach ($file in $testObject.Files)
{
$copiedFilePath = ([string]$file).Replace("SourceDirectory", "DestinationDirectory\SourceDirectory")
$copiedFilePath | Should -Exist
(Get-Item $copiedFilePath).Length | Should -Be (Get-Item $file).Length
}
}
It "Copy one file from remote session fails when the target directory does not exist." {
$filePath = CreateTestFile
$destinationFolderPath = GetDestinationFolderPath
$destinationFolderPath = Join-Path $destinationFolderPath "A\B\C\D\E"
$expectedFullyQualifiedErrorId = 'CopyItemRemotelyIOError,Microsoft.PowerShell.Commands.CopyItemCommand'
{ Copy-Item -Path $filePath -FromSession $s -Destination $destinationFolderPath -ErrorAction Stop } |
Should -Throw -ErrorId $expectedFullyQualifiedErrorId
}
It "Copy folder from remote session recursively works even if the target directory does not exist." {
$testObject = CreateTestDirectory
$destinationFolderPath = GetDestinationFolderPath
$destinationFolderPath = Join-Path $destinationFolderPath "FoderThatDoesNotExist"
$files = @(Get-ChildItem $destinationFolderPath -Recurse -Force)
Copy-Item -Path $testObject.SourceDirectory -FromSession $s -Destination $destinationFolderPath -Recurse
foreach ($file in $testObject.Files)
{
$copiedFilePath = ([string]$file).Replace("SourceDirectory", "DestinationDirectory\FoderThatDoesNotExist")
$copiedFilePath | Should -Exist
(Get-Item $copiedFilePath).Length | Should -Be (Get-Item $file).Length
}
}
It "Copy a read only file from a remote session." {
$filePath = CreateTestFile -setReadOnlyAttribute
$destinationFolderPath = GetDestinationFolderPath
$copiedFilePath = ([string]$filePath).Replace("SourceDirectory", "DestinationDirectory")
Copy-Item -Path $filePath -FromSession $s -Destination $destinationFolderPath -Force
ValidateCopyItemOperation -filePath $filePath
}
It "Copy-Item for a read only file works with no '-force' parameter." {
$filePath = CreateTestFile -setReadOnlyAttribute
$destinationFolderPath = GetDestinationFolderPath
Copy-Item -Path $filePath -FromSession $s -Destination $destinationFolderPath
ValidateCopyItemOperation -filePath $filePath
}
It "Copy-Item -FromSession works even when trying to copy an assembly that is currently being used by another process." {
$testAssembly = GenerateTestAssembly
$destinationFolderPath = GetDestinationFolderPath
Import-Module $testAssembly.Path -Force
try
{
Copy-Item -Path $testAssembly.Path -FromSession $s -Destination $destinationFolderPath
ValidateCopyItemOperation -filePath $testAssembly.Path
}
finally
{
Remove-Module $testAssembly.ModuleName -Force -ErrorAction SilentlyContinue
}
}
It "Copy-Item from session supports alternate data streams." {
$filePath = CreateTestFile
$destinationFolderPath = GetDestinationFolderPath
$streamContent = "This content is hidden"
$streamName = "Hidden"
Set-Content -Path $filePath -Value $streamContent -Stream $streamName
Copy-Item -Path $filePath -FromSession $s -Destination $destinationFolderPath
ValidateCopyItemOperationForAlternateDataStream -filePath $filePath -streamName $streamName -expectedStreamContent $streamContent
}
It "Copy file to the same directory fails." {
$filePath = CreateTestFile
{ Copy-Item -Path $filePath -Destination $sourceDirectory -FromSession $s -ErrorAction Stop } | Should -Throw -ErrorId "System.IO.IOException,WriteException"
}
It "Copy directory with a -Destination parameter given as a file path fails." {
$filePath = CreateTestFile
$folderToCopy = GetDestinationFolderPath
{ Copy-Item -Path $folderToCopy -Destination $filePath -FromSession $s -ErrorAction Stop } | Should -Throw -ErrorId "CopyError,Microsoft.PowerShell.Commands.CopyItemCommand"
}
It "Copy-Item parameters -FromSession and -ToSession are mutually exclusive." {
try
{
$s1 = New-PSSession -ComputerName . -ErrorAction SilentlyContinue
$s1 | Should -Not -BeNullOrEmpty
$filePath = CreateTestFile
$destinationFolderPath = GetDestinationFolderPath
{ Copy-Item -Path $filePath -Destination $destinationFolderPath -FromSession $s -ToSession $s1 -ErrorAction Stop } | Should -Throw -ErrorId "InvalidInput,Microsoft.PowerShell.Commands.CopyItemCommand"
}
finally
{
Remove-PSSession -Session $s1 -ErrorAction SilentlyContinue
}
}
}
Context "Validate Copy-Item Remotely using wildcards" {
It "Copy-Item from session using wildcards." {
$testObject = CreateTestDirectory
$destinationFolderPath = GetDestinationFolderPath
$sourcePathWithWildcards = "$($testObject.SourceDirectory)\A\*.txt"
Copy-Item -Path $sourcePathWithWildcards -FromSession $s -Destination $destinationFolderPath -Force
$sourceFiles = @(Get-Item $sourcePathWithWildcards)
foreach ($file in $sourceFiles)
{
$copiedFilePath = Join-Path $destinationFolderPath (Split-Path $file -Leaf)
$copiedFilePath | Should -Exist
(Get-Item $copiedFilePath).Length | Should -Be (Get-Item $file).Length
}
}
It "Copy-Item to session using wildcards." {
$testObject = CreateTestDirectory
$destinationFolderPath = GetDestinationFolderPath
$sourcePathWithWildcards = "$($testObject.SourceDirectory)\A\*.txt"
Copy-Item -Path $sourcePathWithWildcards -ToSession $s -Destination $destinationFolderPath -Force
$sourceFiles = @(Get-Item $sourcePathWithWildcards)
foreach ($file in $sourceFiles)
{
$copiedFilePath = Join-Path $destinationFolderPath (Split-Path $file -Leaf)
$copiedFilePath | Should -Exist
(Get-Item $copiedFilePath).Length | Should -Be (Get-Item $file).Length
}
}
}
Context "Validate FullyQualifiedErrorIds for remote source and destination paths." {
BeforeAll {
# Create test file.
$testFilePath = Join-Path "TestDrive:" "testfile.txt"
if (Test-Path $testFilePath)
{
Remove-Item $testFilePath -Force -ErrorAction SilentlyContinue
}
"File test content" | Out-File $testFilePath -Force
}
function Test-CopyItemError
{
param ($path, $destination, $expectedFullyQualifiedErrorId, $fromSession = $false)
if ($fromSession)
{
It "Copy-Item FromSession -Path '$path' throws $expectedFullyQualifiedErrorId" {
{ Copy-Item -Path $path -FromSession $s -Destination $destination -ErrorAction Stop } |
Should -Throw -ErrorId $expectedFullyQualifiedErrorId
}
}
else
{
It "Copy-Item ToSession -Destination '$path' throws $expectedFullyQualifiedErrorId" {
{ Copy-Item -Path $path -ToSession $s -Destination $destination -ErrorAction Stop } |
Should -Throw -ErrorId $expectedFullyQualifiedErrorId
}
}
}
$invalidSourcePathtestCases = @(
@{
Path = "HKLM:\SOFTWARE"
Destination = $env:SystemDrive
ExpectedFullyQualifiedErrorId = "NamedParameterNotFound,Microsoft.PowerShell.Commands.CopyItemCommand"
FromSession = $true
}
@{
Path = ".\Source"
Destination = $env:SystemDrive
ExpectedFullyQualifiedErrorId = "RemotePathIsNotAbsolute,Microsoft.PowerShell.Commands.CopyItemCommand"
FromSession = $true
}
@{
Path = $env:SystemDrive + "\X\Y\Z"
Destination = $env:SystemDrive + "\A\B\C"
ExpectedFullyQualifiedErrorId = "RemotePathNotFound,Microsoft.PowerShell.Commands.CopyItemCommand"
FromSession = $true
}
@{
Path = $null
Destination = $env:SystemDrive
ExpectedFullyQualifiedErrorId = "ParameterArgumentValidationErrorNullNotAllowed,Microsoft.PowerShell.Commands.CopyItemCommand"
FromSession = $true
}
@{
Path = ''
Destination = $env:SystemDrive
ExpectedFullyQualifiedErrorId = "ParameterArgumentValidationErrorEmptyStringNotAllowed,Microsoft.PowerShell.Commands.CopyItemCommand"
FromSession = $true
}
@{
Path = "$env:SystemDrive\nonexistdir\*"
Destination = "$env:SystemDrive\psTest"
ExpectedFullyQualifiedErrorId = "RemotePathNotFound,Microsoft.PowerShell.Commands.CopyItemCommand"
FromSession = $true
}
)
foreach ($testCase in $invalidSourcePathtestCases) {
Test-CopyItemError @testCase
}
$invalidDestinationPathtestCases = @(
@{
Path = $testFilePath
Destination = ".\Source"
ExpectedFullyQualifiedErrorId = "RemotePathIsNotAbsolute,Microsoft.PowerShell.Commands.CopyItemCommand"
}
@{
Path = $testFilePath
Destination = $env:SystemDrive + "\X\A\B\C"
ExpectedFullyQualifiedErrorId = "RemotePathNotFound,Microsoft.PowerShell.Commands.CopyItemCommand"
}
@{
Path = $testFilePath
Destination = $null
ExpectedFullyQualifiedErrorId = "CopyItemRemoteDestinationIsNullOrEmpty,Microsoft.PowerShell.Commands.CopyItemCommand"
}
@{
Path = $testFilePath
Destination = ""
ExpectedFullyQualifiedErrorId = "CopyItemRemoteDestinationIsNullOrEmpty,Microsoft.PowerShell.Commands.CopyItemCommand"
}
@{
Path = "$env:SystemDrive\nonexistdir\*"
Destination = "$env:SystemDrive\psTest"
ExpectedFullyQualifiedErrorId = "PathNotFound,Microsoft.PowerShell.Commands.CopyItemCommand"
}
)
foreach ($testCase in $invalidDestinationPathtestCases) {
Test-CopyItemError @testCase
}
}
}
Describe "Validate Copy-Item error for target sessions not in FullLanguageMode." -Tags "Feature" {
BeforeAll {
$testDirectory = "TestDrive:\"
# Create the test file and directories.
$source = "$testDirectory\Source"
$destination = "$testDirectory\Destination"
New-Item $source -ItemType Directory -Force | Out-Null
New-Item $destination -ItemType Directory -Force | Out-Null
$testFilePath = Join-Path $source "testfile.txt"
"File test content" | Out-File $testFilePath -Force
# Keep track of the sessions.
$testSessions = @{}
# Keep track of the session names to be unregistered.
$sessionToUnregister = @()
$languageModes = @("ConstrainedLanguage", "NoLanguage", "RestrictedLanguage")
$id = (Get-Random).ToString()
foreach ($languageMode in $languageModes)
{
$sessionName = $languageMode + "_" + $id
$sessionToUnregister += $sessionName
$configFilePath = Join-Path $testDirectory "test.pssc"
# Create the session.
Write-Host "Creating pssession with '$languageMode' ..."
New-PSSessionConfigurationFile -Path $configFilePath -SessionType Default -LanguageMode $languageMode
Register-PSSessionConfiguration -Name $sessionName -Path $configFilePath -Force | Out-Null
$testSession = New-PSSession -ConfigurationName $sessionName
# Validate that the session is opened.
$testSession.State | Should -Be "Opened"
# Add the new session to the list.
$testSessions[$languageMode] = $testSession
# Remove the pssc file.
Remove-Item $configFilePath -Force -ErrorAction SilentlyContinue
}
}
AfterAll {
$testSessions.Values | Remove-PSSession -ErrorAction SilentlyContinue
$sessionToUnregister | ForEach-Object {
Unregister-PSSessionConfiguration -Name $_ -Force -ErrorAction SilentlyContinue
}
}
foreach ($languageMode in $testSessions.Keys)
{
$session = $testSessions[$languageMode]
It "Copy-Item throws 'SessionIsNotInFullLanguageMode' error for a session in '$languageMode'" {
# FromSession
{ Copy-Item -Path $testFilePath -FromSession $session -Destination $destination -Force -Verbose -ErrorAction Stop } |
Should -Throw -ErrorId "SessionIsNotInFullLanguageMode,Microsoft.PowerShell.Commands.CopyItemCommand"
# ToSession
{ Copy-Item -Path $testFilePath -ToSession $session -Destination $destination -Force -Verbose -ErrorAction Stop } |
Should -Throw -ErrorId "SessionIsNotInFullLanguageMode,Microsoft.PowerShell.Commands.CopyItemCommand"
}
}
}
Describe "Copy-Item can use Recurse and Exclude together" -Tags "Feature" {
Context "Local and Remote Tests" {
BeforeAll {
$s = New-PSSession -ComputerName . -ErrorAction SilentlyContinue
if (-not $s)
{
throw "Failed to create PSSession for remote copy operations."
}
$null = New-Item -ItemType Directory -Path "TestDrive:\Parent\Sub"
$null = New-Item -Path "TestDrive:\Parent\p1.txt" -Value "test"
$null = New-Item -Path "TestDrive:\Parent\p2.txt" -Value "test"
$null = New-Item -Path "TestDrive:\Parent\s4.txt" -Value "test"
$null = New-Item -Path "TestDrive:\Parent\Sub\s1.txt" -Value "test"
$null = New-Item -Path "TestDrive:\Parent\Sub\s2.txt" -Value "test"
$null = New-Item -Path "TestDrive:\Parent\Sub\s3.txt" -Value "test"
$null = New-Item -Path "TestDrive:\Parent\Sub\p3.txt" -Value "testcl"
}
It "can exclude files at sub directory" {
Copy-Item -Path TestDrive:\Parent\* -Recurse -Exclude s*.txt -Destination TestDrive:\Temp -Force
$copiedFiles = Get-ChildItem -Recurse -Path TestDrive:\Temp
$copiedFiles.Count | Should -Be 3
}
It "can exclude files at sub directory to a session" {
Copy-Item -Path TestDrive:\Parent\* -Recurse -Exclude s*.txt -Destination $TestDrive\Temp2 -Force -ToSession $s
$copiedFiles = Get-ChildItem -Recurse -Path TestDrive:\Temp
$copiedFiles.Count | Should -Be 3
}
It "can exclude files at sub directory from a session" {
Copy-Item -Path $TestDrive\Parent\* -Recurse -Exclude s*.txt -Destination TestDrive:\Temp3 -FromSession $s
$copiedFiles = Get-ChildItem -Recurse -Path TestDrive:\Temp2
$copiedFiles.Count | Should -Be 3
}
AfterAll {
Remove-PSSession -Session $s -ErrorAction SilentlyContinue
}
}
}
Describe "Copy-Item remotely bug fixes" -Tags "Feature" {
BeforeAll {
$s = New-PSSession -ComputerName . -ErrorAction SilentlyContinue
if (-not $s)
{
throw "Failed to create PSSession for remote copy operations."
}
$originalContent = "test file 1 - Source"
$newContent = "This is some new content"
$null = New-Item -ItemType Directory -Path "TestDrive:\Source"
$null = New-Item -ItemType Directory -Path "TestDrive:\Destination"
}
AfterAll {
Remove-PSSession -Session $s -ErrorAction SilentlyContinue
}
BeforeEach {
# Create the same file in the source and destination
Set-Content -Path "TestDrive:\Source\testFile1.txt" -Value $originalContent -Force
Set-Content -Path "TestDrive:\Destination\testFile1.txt" -Value $originalContent -Force
}
Context "Copy-Item remotely overwrites a destination file if it exists." {
BeforeEach {
# Overwrite the source file
Set-Content -Path "TestDrive:\Source\testFile1.txt" -Value $newContent
}
It "Copy item -tosession overwrites the content of an existing file." {
# Copy file to session
Copy-Item -Path "TestDrive:\Source\testFile1.txt" -Destination "$TestDrive\Destination\testFile1.txt" -ToSession $s
# Validate the file was overwritten
$fileContent = Get-Content "TestDrive:\Destination\testFile1.txt" -ErrorAction SilentlyContinue -Raw
$fileContent | Should -Match $newContent
}
It "Copy item -fromsession overwrites the content of an existing file." {
# Copy file to session
Copy-Item -Path "$TestDrive\Source\testFile1.txt" -Destination "TestDrive:\Destination\testFile1.txt" -FromSession $s
# Validate the file was overwritten
$fileContent = Get-Content "TestDrive:\Destination\testFile1.txt" -ErrorAction SilentlyContinue -Raw
$fileContent | Should -Match $newContent
}
}
Context "Copy-Item remotely creates a destination file if it does not exist." {
BeforeEach {
if (Test-Path "TestDrive:\AnotherDestination")
{
Remove-Item "TestDrive:\AnotherDestination" -Force -Recurse -ErrorAction SilentlyContinue
}
$null = New-Item -ItemType Directory -Path "TestDrive:\AnotherDestination"
# Ensure the file does not exist
"TestDrive:\AnotherDestination\FileThatDoesNotExist.txt" | Should -Not -Exist
}
It "Copy-Item -tosession creates the file if it does not exist on the remote destination." {
# Copy file to session
Copy-Item -Path "TestDrive:\Source\testFile1.txt" -Destination "$TestDrive\AnotherDestination\FileThatDoesNotExist.txt" -ToSession $s
# Verify that the file was created
"TestDrive:\AnotherDestination\FileThatDoesNotExist.txt" | Should -Exist
}
It "Copy-Item -fromsession creates the file if it does not exist on the local machine." {
# Copy file from session
Copy-Item -Path "$TestDrive\Source\testFile1.txt" -Destination "TestDrive:\AnotherDestination\FileThatDoesNotExist.txt" -FromSession $s
# Verify that the file was created
"TestDrive:\AnotherDestination\FileThatDoesNotExist.txt" | Should -Exist
}
}
}
|