forked from OctopusDeploy/OctopusDSC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-test-dependencies.ps1
155 lines (118 loc) · 5.66 KB
/
install-test-dependencies.ps1
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12,[System.Net.SecurityProtocolType]::Tls11,[System.Net.SecurityProtocolType]::Tls
if (-not (Test-Path "c:\ProgramData\Chocolatey")) {
write-output "##teamcity[blockOpened name='Installing Chocolatey']"
write-output "Installing Chocolatey"
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
if ($LASTEXITCODE -ne 0) { exit 1 }
write-output "##teamcity[blockClosed name='Installing Chocolatey']"
}
if (-not (Test-Path "C:\tools\ruby25")) {
write-output "##teamcity[blockOpened name='Install Ruby']"
choco install ruby --allow-empty-checksums --yes --version 2.5.0.1 --no-progress
if ($LASTEXITCODE -ne 0) { exit 1 }
refreshenv
if ($LASTEXITCODE -ne 0) { exit 1 }
if (-not (Test-Path "c:\temp")) {
New-Item "C:\temp" -Type Directory | out-null
}
Invoke-WebRequest "https://rubygems.org/downloads/rubygems-update-2.7.4.gem" -outFile "C:\temp\rubygems-update-2.7.4.gem"
& C:\tools\ruby25\bin\gem.cmd install --local C:\temp\rubygems-update-2.7.4.gem
if ($LASTEXITCODE -ne 0) { exit 1 }
& C:\tools\ruby25\bin\update_rubygems.bat --no-ri --no-rdoc
if ($LASTEXITCODE -ne 0) { exit 1 }
write-output "##teamcity[blockClosed name='Install Ruby']"
write-output "##teamcity[blockOpened name='Install ServerSpec']"
write-output "running 'C:\tools\ruby25\bin\gem.cmd install bundler --version 1.16.1 --no-ri --no-rdoc'"
& C:\tools\ruby25\bin\gem.cmd install bundler --version 1.16.1 --no-ri --no-rdoc --force
if ($LASTEXITCODE -ne 0) { exit 1 }
write-output "##teamcity[blockClosed name='Install ServerSpec']"
}
write-output "##teamcity[blockOpened name='Configuring SQL Server']"
Write-Output "Determining SQL Server service name"
$serviceName = 'MSSQL$SQLEXPRESS'
$service = Get-Service $serviceName -ErrorAction SilentlyContinue
if ($null -eq $service) {
$serviceName = "MSSQLSERVER"
}
Write-Output "Service name is '$serviceName'"
write-output "Configuring SQL Server to allow TCP/IP connections"
[reflection.assembly]::LoadWithPartialName("Microsoft.SqlServer.SqlWmiManagement") | out-null
$wmi = new-object ('Microsoft.SqlServer.Management.Smo.Wmi.ManagedComputer')
# Enable the TCP protocol on the default instance.
$uri = "ManagedComputer[@Name='$($env:computername)']"
$smoObject = $wmi.GetSmoObject($uri)
$instanceName = $smoObject.ServerInstances[0].Name
$tcp = ($smoObject.ServerInstances[0].ServerProtocols | Where-Object {$_.Name -eq "Tcp"});
$tcp.IsEnabled = $true
$tcp.Alter()
Write-Output "Restarting service"
Restart-Service $serviceName -Force
if ($instanceName -ne "SQLEXPRESS") {
write-output "Adding sql alias to allow logging in as '(local)\SQLEXPRESS' to the actual server at '(local)'"
# tests are configured to refer to the server at '(local)\SQLEXPRESS'
$x86 = "HKLM:\Software\Microsoft\MSSQLServer\Client\ConnectTo"
$x64 = "HKLM:\Software\Wow6432Node\Microsoft\MSSQLServer\Client\ConnectTo"
if (-not (test-path -path $x86)) {
New-Item $x86 | out-null
}
if (-not (test-path -path $x64)) {
New-Item $x64 | out-null
}
$TCPAlias = "DBMSSOCN,(local),1433"
$KeyName = "(local)\SQLEXPRESS"
$itemProperty = Get-ItemProperty -Path $x86 -Name $KeyName -ErrorAction SilentlyContinue
if ($null -eq $itemProperty) {
New-ItemProperty -Path $x86 -Name $KeyName -PropertyType String -Value $TCPAlias | out-null
}
$itemProperty = Get-ItemProperty -Path $x64 -Name $KeyName -ErrorAction SilentlyContinue
if ($null -eq $itemProperty) {
New-ItemProperty -Path $x64 -Name $KeyName -PropertyType String -Value $TCPAlias | out-null
}
Write-Output "Restarting service"
Restart-Service $serviceName -Force
}
else {
write-output "Skipping adding sql alias, as the instance name is already '(local)\SQLEXPRESS'."
}
write-output "Granting access to 'NT AUTHORITY\SYSTEM"
write-output " - finding osql.exe"
$versions = @('100', '110', '120', '130', '140')
foreach($version in $versions) {
$oSqlPath = "C:/Program Files/Microsoft SQL Server/$version/Tools/Binn/osql.exe"
if (Test-Path $oSqlPath) {
break;
}
}
if (-not (Test-Path $oSqlPath)) {
Write-Output "Unable to find osql.exe!"
exit 1
}
write-output " - found it at $oSqlPath"
write-output " - creating login for 'NT AUTHORITY\SYSTEM'"
& "$oSqlPath" "-E" "-S" "(local)\SQLEXPRESS" "-Q" "`"IF NOT EXISTS(SELECT Name FROM sys.server_principals WITH (TABLOCK) WHERE Name = 'NT AUTHORITY\SYSTEM') BEGIN CREATE LOGIN [NT AUTHORITY\SYSTEM] FROM WINDOWS; END`""
if ($LASTEXITCODE -ne 0) {
write-output " - failed with exit code $LASTEXITCODE"
exit 1
}
write-output " - adding 'NT AUTHORITY\SYSTEM' to SYSADMIN role"
& "$oSqlPath" "-E" "-S" "(local)\SQLEXPRESS" "-Q" "`"SP_ADDSRVROLEMEMBER 'NT AUTHORITY\SYSTEM','SYSADMIN'`""
if ($LASTEXITCODE -ne 0) {
write-output " - failed with exit code $LASTEXITCODE"
exit 1
}
write-output "Configuring SQL Server to mixed mode authentication"
[System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.SMO') | out-null
$s = new-object ('Microsoft.SqlServer.Management.Smo.Server') '(local)\SQLEXPRESS'
$s.Settings.LoginMode = [Microsoft.SqlServer.Management.SMO.ServerLoginMode]::Mixed
$s.Alter()
Restart-Service $serviceName -Force
write-output "##teamcity[blockClosed name='Configuring SQL Server']"
write-output "##teamcity[blockOpened name='Installing gem bundle']"
write-output "Installing msys2"
& choco install msys2 --yes --no-progress
if ($LASTEXITCODE -ne 0) { exit 1 }
Set-Location c:\temp\tests
write-output "installing gem bundle"
& C:\tools\ruby25\bin\bundle.bat _1.16.1_ install --path=vendor
if ($LASTEXITCODE -ne 0) { exit 1 }
write-output "##teamcity[blockClosed name='Install gem bundle']"