37 lines
1.2 KiB
PowerShell
37 lines
1.2 KiB
PowerShell
$tC = 1
|
|
$tI = 0
|
|
$suite = "portfwd"
|
|
|
|
Describe "E2E scenarios for port forwarding" -Tags "CI" {
|
|
BeforeAll {
|
|
$testDir = Join-Path $OpenSSHTestInfo["TestDataPath"] $suite
|
|
if(-not (Test-Path $testDir))
|
|
{
|
|
$null = New-Item $testDir -ItemType directory -Force -ErrorAction SilentlyContinue
|
|
}
|
|
}
|
|
|
|
BeforeEach {
|
|
$stderrFile=Join-Path $testDir "$tC.$tI.stderr.txt"
|
|
$stdoutFile=Join-Path $testDir "$tC.$tI.stdout.txt"
|
|
$logFile = Join-Path $testDir "$tC.$tI.log.txt"
|
|
}
|
|
AfterEach {$tI++;}
|
|
|
|
Context "$tC - Basic port forwarding scenarios" {
|
|
BeforeAll {$tI=1}
|
|
AfterAll{$tC++}
|
|
|
|
#TODO - this relies on winrm (that is windows specific)
|
|
It "$tC.$tI - local port forwarding" {
|
|
ssh -L 5432:127.0.0.1:47001 test_target powershell.exe Test-WSMan -computer 127.0.0.1 -port 5432 | Set-Content $stdoutFile
|
|
$stdoutFile | Should Contain "wsmid"
|
|
}
|
|
|
|
It "$tC.$tI - remote port forwarding" {
|
|
ssh -R 5432:127.0.0.1:47001 test_target powershell.exe Test-WSMan -computer 127.0.0.1 -port 5432 | Set-Content $stdoutFile
|
|
$stdoutFile | Should Contain "wsmid"
|
|
}
|
|
}
|
|
}
|