-
Notifications
You must be signed in to change notification settings - Fork 225
/
MSFT_SqlDatabaseDefaultLocation.Tests.ps1
300 lines (249 loc) · 12.3 KB
/
MSFT_SqlDatabaseDefaultLocation.Tests.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#region Header
# Unit Test Template Version: 1.2.1
$script:moduleRoot = Split-Path -Parent (Split-Path -Parent $PSScriptRoot)
if ( (-not (Test-Path -Path (Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests'))) -or `
(-not (Test-Path -Path (Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1'))) )
{
& git @('clone','https://github.com/PowerShell/DscResource.Tests.git',(Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests'))
}
Import-Module -Name ( Join-Path -Path ( Join-Path -Path $PSScriptRoot -ChildPath Stubs ) -ChildPath SQLPSStub.psm1 ) -Force -Global
Import-Module -Name (Join-Path -Path $script:moduleRoot -ChildPath (Join-Path -Path 'DSCResource.Tests' -ChildPath 'TestHelper.psm1')) -Force
Add-Type -Path ( Join-Path -Path ( Join-Path -Path $PSScriptRoot -ChildPath Stubs ) -ChildPath SMO.cs )
$TestEnvironment = Initialize-TestEnvironment `
-DSCModuleName 'SqlServerDSC' `
-DSCResourceName 'MSFT_SqlDatabaseDefaultLocation' `
-TestType Unit
#endregion HEADER
function Invoke-TestSetup {}
function Invoke-TestCleanup {
Restore-TestEnvironment -TestEnvironment $TestEnvironment
}
# Begin Testing
try
{
Invoke-TestSetup
InModuleScope 'MSFT_SqlDatabaseDefaultLocation' {
$mockSqlServerName = 'localhost'
$mockSqlServerInstanceName = 'MSSQLSERVER'
$mockSQLDataPath = 'C:\Program Files\Data\'
$mockSqlLogPath = 'C:\Program Files\Log\'
$mockSqlBackupPath = 'C:\Program Files\Backup\'
$mockSqlAlterDataPath = 'C:\Program Files\'
$mockSqlAlterLogPath = 'C:\Program Files\'
$mockSqlAlterBackupPath = 'C:\Program Files\'
$mockRestartService = $true
$mockExpectedAlterDataPath = $env:temp
$mockExpectedAlterLogPath = $env:temp
$mockExpectedAlterBackupPath = $env:temp
$mockInvalidPathForData = 'C:\InvalidPath'
$mockInvalidPathForLog = 'C:\InvalidPath'
$mockInvalidPathForBackup = 'C:\InvalidPath'
$mockInvalidOperationForAlterMethod = $false
$mockProcessOnlyOnActiveNode = $true
$script:WasMethodAlterCalled = $false
#region Function mocks
# Default parameters that are used for the It-blocks
$mockDefaultParameters = @{
SQLInstanceName = $mockSqlServerInstanceName
SQLServer = $mockSqlServerName
}
$mockConnectSQL = {
return New-Object Object -TypeName Microsoft.SqlServer.Management.Smo.Server |
Add-Member -MemberType NoteProperty -Name InstanceName -Value $mockSqlServerInstanceName -PassThru -Force |
Add-Member -MemberType NoteProperty -Name ComputerNamePhysicalNetBIOS -Value $mockSqlServerName -PassThru -Force |
Add-Member -MemberType NoteProperty -Name DefaultFile -Value $mockSqlDataPath -PassThru -Force |
Add-Member -MemberType NoteProperty -Name DefaultLog -Value $mockSqlLogPath -PassThru -Force |
Add-Member -MemberType NoteProperty -Name BackupDirectory -Value $mockSqlBackupPath -PassThru -Force |
Add-Member -MemberType ScriptMethod -Name Alter -Value {
if ($mockInvalidOperationForAlterMethod)
{
throw 'Mock Alter Method was called with invalid operation.'
}
$script:WasMethodAlterCalled = $true
} -PassThru -Force
}
$testCases = @(
@{
Type = 'Data'
Path = $mockSqlDataPath
AlterPath = $mockSqlAlterDataPath
ExepectedAlterPath = $mockExpectedAlterDataPath
InvalidPath = $mockInvalidPathForData
},
@{
Type = 'Log'
Path = $mockSqlLogPath
AlterPath = $mockSqlAlterLogPath
ExepectedAlterPath = $mockExpectedAlterLogPath
InvalidPath = $mockInvalidPathForLog
},
@{
Type = 'Backup'
Path = $mockSqlBackupPath
AlterPath = $mockSqlAlterBackupPath
ExepectedAlterPath = $mockExpectedAlterBackupPath
InvalidPath = $mockInvalidPathForBackup
}
)
#endregion
Describe 'MSFT_SqlDatabaseDefaultLocation\Get-TargetResource' -Tag 'Get'{
BeforeEach {
Mock -CommandName Connect-SQL -MockWith $mockConnectSQL -Verifiable
Mock -CommandName Test-ActiveNode -Mockwith {
param
(
[psobject]
$ServerObject
)
return $true
} -Verifiable
}
Context 'When the system is either in the desired state or not in the desired state' {
It 'Should get the default path for <Type> with the value <Path>' -TestCases $testCases {
param
(
$Type,
$Path
)
$getTargetResourceResult = Get-TargetResource @mockDefaultParameters -Type $Type -Path $Path
$getTargetResourceResult.Path | Should -Be $Path
$getTargetResourceResult.Type | Should -Be $Type
$getTargetResourceResult.SQLServer | Should -Be $mockDefaultParameters.SQLServer
$getTargetResourceResult.SQLInstanceName | Should -Be $mockDefaultParameters.SQLInstanceName
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
}
}
Describe 'MSFT_SqlDatabaseDefaultLocation\Test-TargetResource' -Tag 'Test'{
BeforeEach {
Mock -CommandName Connect-SQL -MockWith $mockConnectSQL -Verifiable
Mock -CommandName Test-ActiveNode -MockWith {
$mockProcessOnlyOnActiveNode
} -Verifiable
}
Context 'When the system is in the desired state.' {
It 'Should return true when the desired state of the <Type> path has the value <Path>' -TestCases $testCases {
param
(
$Type,
$Path
)
$testTargetResourceResult = Test-TargetResource @mockDefaultParameters -Type $Type -Path $Path
$testTargetResourceResult | Should -Be $true
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
}
Context 'When the system is not in the desired state.' {
It 'Should return false when the desired state of the <Type> path does not equal <Path>' -TestCases $testCases {
param
(
$Type,
$Path,
$AlterPath
)
$testTargetResourceResult = Test-TargetResource @mockDefaultParameters -Type $Type -Path $AlterPath
$testTargetResourceResult | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
}
Context 'When the ProcessOnlyOnActiveNode parameter is passed' {
AfterAll {
$mockProcessOnlyOnActiveNode = $mockProcessOnlyOnActiveNodeOriginal
}
BeforeAll {
$mockProcessOnlyOnActiveNodeOriginal = $mockProcessOnlyOnActiveNode
$mockProcessOnlyOnActiveNode = $false
}
It 'Should be "true" when ProcessOnlyOnActiveNode is <mockProcessOnlyOnActiveNode>.' {
$testTargetResourceParameters = $mockDefaultParameters
$testTargetResourceParameters += @{
Path = $mockSqlDataPath
Type = 'Data'
ProcessOnlyOnActiveNode = $mockProcessOnlyOnActiveNode
}
Test-TargetResource @testTargetResourceParameters | Should -Be $true
Assert-MockCalled -CommandName Connect-SQL -Scope It -Times 1 -Exactly
Assert-MockCalled -CommandName Test-ActiveNode -Scope It -Times 1 -Exactly
}
It 'Should be "true" when ProcessOnlyOnActiveNode is <mockProcessOnlyOnActiveNodeOriginal>.' {
$testTargetResourceParameters = $mockDefaultParameters
$testTargetResourceParameters += @{
Path = $mockSqlDataPath
Type = 'Data'
ProcessOnlyOnActiveNode = $mockProcessOnlyOnActiveNodeOriginal
}
Test-TargetResource @testTargetResourceParameters | Should -Be $true
Assert-MockCalled -CommandName Connect-SQL -Scope It -Times 1 -Exactly
Assert-MockCalled -CommandName Test-ActiveNode -Scope It -Times 1 -Exactly
}
}
}
Describe 'MSFT_SqlDatabaseDefaultLocation\Set-TargetResource' -Tag 'Set'{
BeforeEach {
Mock -CommandName Connect-SQL -MockWith $mockConnectSQL -Verifiable
Mock -CommandName Restart-SqlService -Verifiable
# This is used to evaluate if mocked Alter() method was called.
$script:WasMethodAlterCalled = $false
}
Context 'When the system is not in the desired state.' {
It 'Should not throw when the path is successfully changed.' -TestCases $testCases {
param
(
$Type,
$Path,
$AlterPath
)
$setTargetResourceParameters = @{
Type = $Type
Path = $AlterPath
RestartService = $mockRestartService
}
{Set-TargetResource @mockDefaultParameters @setTargetResourceParameters} | Should -Not -Throw
$script:WasMethodAlterCalled | Should -Be $true
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
Assert-MockCalled Restart-SqlService -Exactly -Times 1 -Scope It
}
It 'Should throw when the path is invalid.' -TestCases $testCases {
param
(
$Type,
$InvalidPath
)
$setTargetResourceParameters = @{
Type = $Type
Path = $InvalidPath
RestartService = $mockRestartService
}
$throwInvalidPath = "The path '$InvalidPath' does not exist."
{Set-TargetResource @mockDefaultParameters @setTargetResourceParameters} | Should -Throw $throwInvalidPath
$script:WasMethodAlterCalled | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 0 -Scope It
Assert-MockCalled Restart-SqlService -Exactly -Times 0 -Scope It
}
}
$mockInvalidOperationForAlterMethod = $true
It 'Should throw the correct error when Alter() method was called with invalid operation' -TestCases $testCases {
param
(
$Type,
$Path,
$AlterPath,
$ExepectedAlterPath
)
$throwInvalidOperation = "Changing the default path failed."
$setTargetResourceParameters = @{
Type = $Type
Path = $ExepectedAlterPath
RestartService = $mockRestartService
}
{Set-TargetResource @mockDefaultParameters @setTargetResourceParameters} | Should -Throw $throwInvalidOperation
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
Assert-MockCalled Restart-SqlService -Exactly -Times 0 -Scope It
}
}
}
}
finally
{
Invoke-TestCleanup
}