forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3-RunScriptCompleteExample.ps1
162 lines (132 loc) · 4.93 KB
/
3-RunScriptCompleteExample.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
155
156
157
158
159
160
161
162
<#
.DESCRIPTION
This example shows one way to create the SQL script files and how to run
those files.
#>
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments', '', Justification='The variable $ConfigurationData is used by the HQRM test')]
param ()
$ConfigurationData = @{
AllNodes = @(
@{
NodeName = 'localhost'
ServerName = $env:COMPUTERNAME
InstanceName = 'DSCTEST'
DatabaseName = 'ScriptDatabase1'
GetSqlScriptPath = Join-Path -Path $env:SystemDrive -ChildPath ([System.IO.Path]::GetRandomFileName())
SetSqlScriptPath = Join-Path -Path $env:SystemDrive -ChildPath ([System.IO.Path]::GetRandomFileName())
TestSqlScriptPath = Join-Path -Path $env:SystemDrive -ChildPath ([System.IO.Path]::GetRandomFileName())
GetSqlScript = @'
SELECT Name FROM sys.databases WHERE Name = '$(DatabaseName)' FOR JSON AUTO
'@
TestSqlScript = @'
if (select count(name) from sys.databases where name = '$(DatabaseName)') = 0
BEGIN
RAISERROR ('Did not find database [$(DatabaseName)]', 16, 1)
END
ELSE
BEGIN
PRINT 'Found database [$(DatabaseName)]'
END
'@
SetSqlScript = @'
CREATE DATABASE [$(DatabaseName)]
'@
# Not recommended in production. Only set here to pass CI.
PsDscAllowPlainTextPassword = $true
}
)
}
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
$SqlAdministratorCredential
)
Import-DscResource -ModuleName 'xPSDesiredStateConfiguration' -ModuleVersion '9.1.0'
Import-DscResource -ModuleName 'SqlServerDsc'
node localhost
{
xScript 'CreateFile_GetSqlScript'
{
SetScript = {
$Using:Node.GetSqlScript | Out-File -FilePath $Using:Node.GetSqlScriptPath -Encoding ascii -NoClobber -Force
}
TestScript = {
<#
This takes the string of the $GetScript parameter and creates
a new script block (during runtime in the resource) and then
runs that script block.
#>
$getScriptResult = & ([ScriptBlock]::Create($GetScript))
return $getScriptResult.Result -eq $Using:Node.GetSqlScript
}
GetScript = {
$fileContent = $null
if (Test-Path -Path $Using:Node.GetSqlScriptPath)
{
$fileContent = Get-Content -Path $Using:Node.GetSqlScriptPath -Raw
}
return @{
Result = $fileContent
}
}
}
xScript 'CreateFile_TestSqlScript'
{
SetScript = {
$Using:Node.TestSqlScript | Out-File -FilePath $Using:Node.TestSqlScriptPath -Encoding ascii -NoClobber -Force
}
TestScript = {
$getScriptResult = & ([ScriptBlock]::Create($GetScript))
return $getScriptResult.Result -eq $Using:Node.TestSqlScript
}
GetScript = {
$fileContent = $null
if (Test-Path -Path $Using:Node.TestSqlScriptPath)
{
$fileContent = Get-Content -Path $Using:Node.TestSqlScriptPath -Raw
}
return @{
Result = $fileContent
}
}
}
Script 'CreateFile_SetSqlScript'
{
SetScript = {
$Using:Node.SetSqlScript | Out-File -FilePath $Using:Node.SetSqlScriptPath -Encoding ascii -NoClobber -Force
}
TestScript = {
$getScriptResult = & ([ScriptBlock]::Create($GetScript))
return $getScriptResult.Result -eq $Using:Node.SetSqlScript
}
GetScript = {
$fileContent = $null
if (Test-Path -Path $Using:Node.SetSqlScriptPath)
{
$fileContent = Get-Content -Path $Using:Node.SetSqlScriptPath -Raw
}
return @{
Result = $fileContent
}
}
}
SqlScript 'Integration_Test'
{
Id = 'Integration_Test'
ServerName = $Node.ServerName
InstanceName = $Node.InstanceName
GetFilePath = $Node.GetSqlScriptPath
TestFilePath = $Node.TestSqlScriptPath
SetFilePath = $Node.SetSqlScriptPath
Variable = @(
('DatabaseName={0}' -f $Node.DatabaseName)
)
QueryTimeout = 30
PsDscRunAsCredential = $SqlAdministratorCredential
}
}
}