blob: 6cbdd406c240f8c215acdc0a4e946a6673e22a15 (
plain)
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
|
param (
[Parameter()]
[string]$PackageIdentifier = $(throw "Usage: test.ps1 [test_pkg_ident] e.g. test.ps1 ci/user-windows/1.0.0/20190812103929")
)
# some of the functional tests require that winrm be configured
winrm quickconfig -quiet
$chef_gem_root = (hab pkg exec $PackageIdentifier gem.cmd which chef | Split-Path | Split-Path)
try {
Push-Location $chef_gem_root
$env:PATH = "C:\hab\bin;$env:PATH"
# Put chef's GEM_PATH in the machine environment so that the windows service
# tests will be able to consume the win32-service gem
$pkgEnv = hab pkg env $PackageIdentifier
$gemPath = $pkgEnv | Where-Object { $_.StartsWith("`$env:GEM_PATH=") }
SETX GEM_PATH $($gemPath.Split("=")[1]) /m
hab pkg binlink --force $PackageIdentifier
/hab/bin/rspec --format documentation --tag ~executables --tag ~choco_installed spec/functional
if (-not $?) { throw "functional testing failed"}
} finally {
Pop-Location
}
|