199 lines
8.4 KiB
PowerShell
199 lines
8.4 KiB
PowerShell
|
|
#covered -i -p -q -r -v -c -S -C
|
|
#todo: -F, -l and -P should be tested over the network
|
|
Describe "Tests for scp command" -Tags "CI" {
|
|
BeforeAll {
|
|
if($OpenSSHTestInfo -eq $null)
|
|
{
|
|
Throw "`$OpenSSHTestInfo is null. Please run Setup-OpenSSHTestEnvironment to setup test environment."
|
|
}
|
|
|
|
if(-not (Test-Path $OpenSSHTestInfo["TestDataPath"]))
|
|
{
|
|
$null = New-Item $OpenSSHTestInfo["TestDataPath"] -ItemType directory -Force -ErrorAction SilentlyContinue
|
|
}
|
|
|
|
$fileName1 = "test.txt"
|
|
$fileName2 = "test2.txt"
|
|
$SourceDirName = "SourceDir"
|
|
$SourceDir = Join-Path "$($OpenSSHTestInfo["TestDataPath"])\SCP" $SourceDirName
|
|
$SourceFilePath = Join-Path $SourceDir $fileName1
|
|
$DestinationDir = Join-Path "$($OpenSSHTestInfo["TestDataPath"])\SCP" "DestDir"
|
|
$DestinationFilePath = Join-Path $DestinationDir $fileName1
|
|
$NestedSourceDir= Join-Path $SourceDir "nested"
|
|
$NestedSourceFilePath = Join-Path $NestedSourceDir $fileName2
|
|
$null = New-Item $SourceDir -ItemType directory -Force -ErrorAction SilentlyContinue
|
|
$null = New-Item $NestedSourceDir -ItemType directory -Force -ErrorAction SilentlyContinue
|
|
$null = New-item -path $SourceFilePath -force -ErrorAction SilentlyContinue
|
|
$null = New-item -path $NestedSourceFilePath -force -ErrorAction SilentlyContinue
|
|
"Test content111" | Set-content -Path $SourceFilePath
|
|
"Test content in nested dir" | Set-content -Path $NestedSourceFilePath
|
|
$null = New-Item $DestinationDir -ItemType directory -Force -ErrorAction SilentlyContinue
|
|
$sshcmd = (get-command ssh).Path
|
|
|
|
$server = $OpenSSHTestInfo["Target"]
|
|
$port = $OpenSSHTestInfo["Port"]
|
|
$ssouser = $OpenSSHTestInfo["SSOUser"]
|
|
$script:logNum = 0
|
|
|
|
$testData = @(
|
|
@{
|
|
Title = 'Simple copy local file to local file'
|
|
Source = $SourceFilePath
|
|
Destination = $DestinationFilePath
|
|
Options = "-P $port "
|
|
},
|
|
@{
|
|
Title = 'Simple copy local file to remote file'
|
|
Source = $SourceFilePath
|
|
Destination = "$($ssouser)@$($server):$DestinationFilePath"
|
|
Options = "-P $port -S $sshcmd"
|
|
},
|
|
@{
|
|
Title = 'Simple copy remote file to local file'
|
|
Source = "$($ssouser)@$($server):$SourceFilePath"
|
|
Destination = $DestinationFilePath
|
|
Options = "-P $port -p -c aes128-ctr -C"
|
|
},
|
|
@{
|
|
Title = 'Simple copy local file to local dir'
|
|
Source = $SourceFilePath
|
|
Destination = $DestinationDir
|
|
Options = "-P $port "
|
|
},
|
|
@{
|
|
Title = 'simple copy local file to remote dir'
|
|
Source = $SourceFilePath
|
|
Destination = "$($ssouser)@$($server):$DestinationDir"
|
|
Options = "-P $port -C -q"
|
|
},
|
|
@{
|
|
Title = 'simple copy remote file to local dir'
|
|
Source = "$($ssouser)@$($server):$SourceFilePath"
|
|
Destination = $DestinationDir
|
|
Options = "-P $port "
|
|
}
|
|
)
|
|
|
|
$testData1 = @(
|
|
@{
|
|
Title = 'copy from local dir to remote dir'
|
|
Source = $sourceDir
|
|
Destination = "$($ssouser)@$($server):$DestinationDir"
|
|
Options = "-P $port -r -p -c aes128-ctr"
|
|
},
|
|
@{
|
|
Title = 'copy from local dir to local dir'
|
|
Source = $sourceDir
|
|
Destination = $DestinationDir
|
|
Options = "-r "
|
|
},
|
|
@{
|
|
Title = 'copy from remote dir to local dir'
|
|
Source = "$($ssouser)@$($server):$sourceDir"
|
|
Destination = $DestinationDir
|
|
Options = "-P $port -C -r -q"
|
|
}
|
|
)
|
|
|
|
# for the first time, delete the existing log files.
|
|
if ($OpenSSHTestInfo['DebugMode'])
|
|
{
|
|
Clear-Content "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\ssh-agent.log" -Force -ErrorAction ignore
|
|
Clear-Content "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\sshd.log" -Force -ErrorAction ignore
|
|
}
|
|
|
|
function CheckTarget {
|
|
param([string]$target)
|
|
if(-not (Test-path $target))
|
|
{
|
|
if( $OpenSSHTestInfo["DebugMode"])
|
|
{
|
|
Copy-Item "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\ssh-agent.log" "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\failedagent$script:logNum.log" -Force
|
|
Copy-Item "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\sshd.log" "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\failedsshd$script:logNum.log" -Force
|
|
|
|
$script:logNum++
|
|
|
|
# clear the ssh-agent, sshd logs so that next testcase will get fresh logs.
|
|
Clear-Content "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\ssh-agent.log" -Force -ErrorAction ignore
|
|
Clear-Content "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\sshd.log" -Force -ErrorAction ignore
|
|
}
|
|
|
|
return $false
|
|
}
|
|
return $true
|
|
}
|
|
}
|
|
AfterAll {
|
|
|
|
if($OpenSSHTestInfo -eq $null)
|
|
{
|
|
#do nothing
|
|
}
|
|
elseif( -not $OpenSSHTestInfo['DebugMode'])
|
|
{
|
|
if(-not [string]::IsNullOrEmpty($SourceDir))
|
|
{
|
|
Get-Item $SourceDir | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
|
|
}
|
|
if(-not [string]::IsNullOrEmpty($DestinationDir))
|
|
{
|
|
Get-Item $DestinationDir | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
|
|
}
|
|
}
|
|
}
|
|
|
|
BeforeAll {
|
|
$null = New-Item $DestinationDir -ItemType directory -Force -ErrorAction SilentlyContinue
|
|
}
|
|
|
|
AfterEach {
|
|
Get-ChildItem $DestinationDir -Recurse | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
|
|
}
|
|
|
|
|
|
It 'File copy: <Title> ' -TestCases:$testData {
|
|
param([string]$Title, $Source, $Destination, $Options)
|
|
|
|
iex "scp $Options $Source $Destination"
|
|
$LASTEXITCODE | Should Be 0
|
|
#validate file content. DestPath is the path to the file.
|
|
CheckTarget -target $DestinationFilePath | Should Be $true
|
|
|
|
$equal = @(Compare-Object (Get-ChildItem -path $SourceFilePath) (Get-ChildItem -path $DestinationFilePath) -Property Name, Length ).Length -eq 0
|
|
$equal | Should Be $true
|
|
|
|
if($Options.contains("-p"))
|
|
{
|
|
$equal = @(Compare-Object (Get-ChildItem -path $SourceFilePath).LastWriteTime.DateTime (Get-ChildItem -path $DestinationFilePath).LastWriteTime.DateTime ).Length -eq 0
|
|
$equal | Should Be $true
|
|
}
|
|
}
|
|
|
|
It 'Directory recursive copy: <Title> ' -TestCases:$testData1 {
|
|
param([string]$Title, $Source, $Destination, $Options)
|
|
|
|
iex "scp $Options $Source $Destination"
|
|
$LASTEXITCODE | Should Be 0
|
|
CheckTarget -target (join-path $DestinationDir $SourceDirName) | Should Be $true
|
|
|
|
$equal = @(Compare-Object (Get-Item -path $SourceDir ) (Get-Item -path (join-path $DestinationDir $SourceDirName) ) -Property Name, Length).Length -eq 0
|
|
$equal | Should Be $true
|
|
|
|
if($Options.contains("-p"))
|
|
{
|
|
$equal = @(Compare-Object (Get-Item -path $SourceDir).LastWriteTime.DateTime (Get-Item -path (join-path $DestinationDir $SourceDirName)).LastWriteTime.DateTime).Length -eq 0
|
|
$equal | Should Be $true
|
|
}
|
|
|
|
$equal = @(Compare-Object (Get-ChildItem -Recurse -path $SourceDir) (Get-ChildItem -Recurse -path (join-path $DestinationDir $SourceDirName) ) -Property Name, Length).Length -eq 0
|
|
$equal | Should Be $true
|
|
|
|
if($Options.contains("-p"))
|
|
{
|
|
$equal = @(Compare-Object (Get-ChildItem -Recurse -path $SourceDir).LastWriteTime.DateTime (Get-ChildItem -Recurse -path (join-path $DestinationDir $SourceDirName) ).LastWriteTime.DateTime).Length -eq 0
|
|
$equal | Should Be $true
|
|
}
|
|
}
|
|
}
|