Describe "SFTP Test Cases" -Tags "CI" { BeforeAll { if($OpenSSHTestInfo -eq $null) { Throw "`$OpenSSHTestInfo is null. Please run Setup-OpenSSHTestEnvironment to setup test environment." } $rootDirectory = "$($OpenSSHTestInfo["TestDataPath"])\SFTP" $outputFileName = "output.txt" $batchFileName = "sftp-batchcmds.txt" $outputFilePath = Join-Path $rootDirectory $outputFileName $batchFilePath = Join-Path $rootDirectory $batchFileName $tempFileName = "tempFile.txt" $tempFilePath = Join-Path $rootDirectory $tempFileName $tempUnicodeFileName = "tempFile_язык.txt" $tempUnicodeFilePath = Join-Path $rootDirectory $tempUnicodeFileName $clientDirectory = Join-Path $rootDirectory 'client_dir' $serverDirectory = Join-Path $rootDirectory 'server_dir' $null = New-Item $clientDirectory -ItemType directory -Force $null = New-Item $serverDirectory -ItemType directory -Force $null = New-Item $batchFilePath -ItemType file -Force $null = New-Item $outputFilePath -ItemType file -Force $null = New-Item $tempFilePath -ItemType file -Force -value "temp file data" $null = New-Item $tempUnicodeFilePath -ItemType file -Force -value "temp file data" $server = $OpenSSHTestInfo["Target"] $port = $OpenSSHTestInfo["Port"] $ssouser = $OpenSSHTestInfo["SSOUser"] $script:testId = 1 $testData1 = @( @{ title = "put, ls for non-unicode file names" options = '' commands = "put $tempFilePath $serverDirectory ls $serverDirectory" expectedoutput = (join-path $serverdirectory $tempFileName) }, @{ title = "get, ls for non-unicode file names" options = '' commands = "get $tempFilePath $clientDirectory ls $clientDirectory" expectedoutput = (join-path $clientDirectory $tempFileName) }, @{ title = "mput, ls for non-unicode file names" options = '' commands = "mput $tempFilePath $serverDirectory ls $serverDirectory" expectedoutput = (join-path $serverdirectory $tempFileName) }, @{ title = "mget, ls for non-unicode file names" options = '' commands = "mget $tempFilePath $clientDirectory ls $clientDirectory" expectedoutput = (join-path $clientDirectory $tempFileName) }, @{ title = "mkdir, cd, pwd for non-unicode directory names" options = '' commands = "cd $serverdirectory mkdir server_test_dir cd server_test_dir pwd" expectedoutput = (join-path $serverdirectory "server_test_dir") }, @{ Title = "lmkdir, lcd, lpwd for non-unicode directory names" Options = '' Commands = "lcd $clientDirectory lmkdir client_test_dir lcd client_test_dir lpwd" ExpectedOutput = (Join-Path $clientDirectory "client_test_dir") }, @{ title = "put, ls for unicode file names" options = '' commands = "put $tempUnicodeFilePath $serverDirectory ls $serverDirectory" expectedoutput = (join-path $serverdirectory $tempUnicodeFileName) }, @{ title = "get, ls for unicode file names" options = '' commands = "get $tempUnicodeFilePath $clientDirectory ls $clientDirectory" expectedoutput = (join-path $clientDirectory $tempUnicodeFileName) }, @{ title = "mput, ls for unicode file names" options = '' commands = "mput $tempUnicodeFilePath $serverDirectory ls $serverDirectory" expectedoutput = (join-path $serverdirectory $tempUnicodeFileName) }, @{ title = "mget, ls for unicode file names" options = '' commands = "mget $tempUnicodeFilePath $clientDirectory ls $clientDirectory" expectedoutput = (join-path $clientDirectory $tempUnicodeFileName) }, @{ title = "mkdir, cd, pwd for unicode directory names" options = '' commands = "cd $serverdirectory mkdir server_test_dir_язык cd server_test_dir_язык pwd" expectedoutput = (join-path $serverdirectory "server_test_dir_язык") }, @{ Title = "lmkdir, lcd, lpwd for unicode directory names" Options = '' Commands = "lcd $clientDirectory lmkdir client_test_dir_язык lcd client_test_dir_язык lpwd lls $clientDirectory" ExpectedOutput = (Join-Path $clientDirectory "client_test_dir_язык") } ) $testData2 = @( @{ title = "rm, rmdir, rename for unicode file, directory" options = '-b $batchFilePath' tmpFileName1 = $tempUnicodeFileName tmpFilePath1 = $tempUnicodeFilePath tmpFileName2 = "tempfile_язык_2.txt" tmpFilePath2 = (join-path $serverDirectory "tempfile_язык_2.txt") tmpDirectoryName1 = "test_dir_язык_1" tmpDirectoryPath1 = (join-path $serverDirectory "test_dir_язык_1") tmpDirectoryName2 = "test_dir_язык_2" tmpDirectoryPath2 = (join-path $serverDirectory "test_dir_язык_2") }, @{ title = "rm, rmdir, rename for non-unicode file, directory" options = '-b $batchFilePath' tmpFileName1 = $tempFileName tmpFilePath1 = $tempFilePath tmpFileName2 = "tempfile_2.txt" tmpFilePath2 = (join-path $serverDirectory "tempfile_2.txt") tmpDirectoryName1 = "test_dir_1" tmpDirectoryPath1 = (join-path $serverDirectory "test_dir_1") tmpDirectoryName2 = "test_dir_2" tmpDirectoryPath2 = (join-path $serverDirectory "test_dir_2") } ) # 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 Clear-Content "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\sftp-server.log" -Force -ErrorAction ignore } function CopyDebugLogs { if($OpenSSHTestInfo["DebugMode"]) { Copy-Item "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\ssh-agent.log" "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\ssh-agent_$script:testId.log" -Force Copy-Item "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\sshd.log" "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\sshd_$script:testId.log" -Force Copy-Item "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\sftp-server.log" "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\sftp-server_$script:testId.log" -Force $script:testId++ # 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 Clear-Content "$($OpenSSHTestInfo['OpenSSHBinPath'])\logs\sftp-server.log" -Force -ErrorAction ignore } } } AfterAll { if(!$OpenSSHTestInfo["DebugMode"]) { Get-Item $rootDirectory | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue } } BeforeEach { Get-ChildItem $serverDirectory | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue Get-ChildItem $clientDirectory | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue Remove-Item $batchFilePath Remove-Item $outputFilePath } AfterEach { CopyDebugLogs } It '