summaryrefslogtreecommitdiff
path: root/scripts/bk_tests/bk_win_functional.ps1
blob: 9a9d50a63baba9e7c1222cbd6912c01dcf1d340a (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# The filename of the Ruby installer
$RubyFilename = "rubyinstaller-devkit-2.6.5-1-x64.exe"

# The sha256 of the Ruby installer (capitalized?)
$RubySHA256 = "BD2050496A149C7258ED4E2E44103756CA3A05C7328A939F0FDC97AE9616A96D"

# Where on disk to download Ruby to
$RubyPath = "$env:temp\$RubyFilename"

# Where to download Ruby from:
$RubyS3Path = "s3://public-cd-buildkite-cache/$RubyFilename"

Function DownloadRuby
{
  $RandDigits = Get-Random
  echo "Downloading Ruby + DevKit"

  aws s3 cp "$RubyS3Path" "$RubyPath.$RandDigits" | Out-Null # Out-Null is a hack to wait for the process to complete

  if ($LASTEXITCODE -ne 0) {
    echo "aws s3 download failed: $LASTEXITCODE"
    exit $LASTEXITCODE
  }

  $FileHash = (Get-FileHash "$RubyPath.$RandDigits" -Algorithm SHA256).Hash
  If ($FileHash -eq $RubySHA256) {
    echo "Downloaded SHA256 matches: $FileHash"
  } Else {
    echo "Downloaded file hash $FileHash does not match desired $RubySHA256"
    exit 1
  }

  # On a shared filesystem, sometimes a good file appears while we are downloading
  If (Test-Path $RubyPath) {
    $FileHash = (Get-FileHash "$RubyPath" -Algorithm SHA256).Hash
    If ($FileHash -eq $RubySHA256) {
      echo "A matching file appeared while downloading, using it."
      Remove-Item "$RubyPath.$RandDigits" -Force
      Return
    } Else {
      echo "Existing file does not match, bad hash: $FileHash"
      Remove-Item $RubyPath -Force
    }
  }

  echo "Moving file installer into place"
  Rename-Item -Path "$RubyPath.$RandDigits" -NewName $RubyFilename
}

Function InstallRuby
{
  If (Test-Path $RubyPath) {
    echo "$RubyPath already exists"

    $FileHash = (Get-FileHash "$RubyPath" -Algorithm SHA256).Hash
    If ($FileHash -eq $RubySHA256) {
      echo "Found matching Ruby + DevKit on disk"
    } Else {
      echo "SHA256 hash mismatch, re-downloading"
      DownloadRuby
    }
  } Else {
    echo "No Ruby found at $RubyPath, downloading"
    DownloadRuby
  }

  echo "Installing Ruby + DevKit"
  Start-Process $RubyPath -ArgumentList '/verysilent /dir=C:\\ruby26' -Wait

  echo "Cleaning up installation"
  Remove-Item $RubyPath -Force -ErrorAction SilentlyContinue
}

echo "--- system details"
$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture'
Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize

# chocolatey functional tests fail so delete the chocolatey binary to avoid triggering them
Remove-Item -Path C:\ProgramData\chocolatey\bin\choco.exe -ErrorAction SilentlyContinue

echo "--- install ruby + devkit"
$ErrorActionPreference = 'Stop'

InstallRuby

# Set-Item -Path Env:Path -Value to include ruby26
$Env:Path+=";C:\ruby26\bin"

echo "--- configure winrm"

winrm quickconfig -q
ruby -v
bundle --version

echo "--- bundle install"
bundle install --jobs=3 --retry=3 --without omnibus_package docgen chefstyle

echo "+++ bundle exec rake spec:functional"
bundle exec rake spec:functional

exit $LASTEXITCODE