61 lines
1.6 KiB
PowerShell
61 lines
1.6 KiB
PowerShell
if (! $PSScriptRoot) {
|
|
$PSScriptRoot = $args[0]
|
|
}
|
|
|
|
. "${PSScriptRoot}\helper.ps1"
|
|
|
|
Set-Location $env:PWD
|
|
|
|
$exit_code = 0
|
|
$tmpdir = New-Item -ItemType Directory -Path ([System.IO.Path]::GetTempPath()) -Name ([System.IO.Path]::GetRandomFileName())
|
|
$env:CSI_SANITY_TEMP_DIR = $tmpdir.FullName
|
|
|
|
if (! $env:CSI_SANITY_FOCUS) {
|
|
$env:CSI_SANITY_FOCUS = "Node Service"
|
|
}
|
|
|
|
if (! $env:CSI_SANITY_SKIP) {
|
|
$env:CSI_SANITY_SKIP = ""
|
|
}
|
|
|
|
# cleanse endpoint to something csi-sanity plays nicely with
|
|
$endpoint = ${env:CSI_ENDPOINT}
|
|
$endpoint = $endpoint.replace("C:\", "/")
|
|
$endpoint = $endpoint.replace("\", "/")
|
|
|
|
Write-Output "launching csi-sanity"
|
|
Write-Output "connecting to: ${endpoint}"
|
|
Write-Output "skip: ${env:CSI_SANITY_SKIP}"
|
|
Write-Output "focus: ${env:CSI_SANITY_FOCUS}"
|
|
|
|
csi-sanity.exe -"csi.endpoint" "unix://${endpoint}" `
|
|
-"ginkgo.failFast" `
|
|
-"csi.mountdir" "${env:CSI_SANITY_TEMP_DIR}\mnt" `
|
|
-"csi.stagingdir" "${env:CSI_SANITY_TEMP_DIR}\stage" `
|
|
-"csi.testvolumeexpandsize" 2147483648 `
|
|
-"csi.testvolumesize" 1073741824 `
|
|
-"ginkgo.focus" "${env:CSI_SANITY_FOCUS}"
|
|
|
|
# does not work the same as linux for some reason
|
|
#-"ginkgo.skip" "${env:CSI_SANITY_SKIP}" `
|
|
|
|
if (-not $?) {
|
|
$exit_code = $LASTEXITCODE
|
|
Write-Output "csi-sanity exit code: ${exit_code}"
|
|
$exit_code = 1
|
|
}
|
|
|
|
# remove tmp dir
|
|
Remove-Item -Path "$env:CSI_SANITY_TEMP_DIR" -Force -Recurse
|
|
|
|
#Exit $exit_code
|
|
Write-Output "exiting with exit code: ${exit_code}"
|
|
|
|
if ($exit_code -gt 0) {
|
|
throw "csi-sanity failed"
|
|
}
|
|
|
|
# these do not work for whatever reason
|
|
#Exit $exit_code
|
|
#[System.Environment]::Exit($exit_code)
|