-
Notifications
You must be signed in to change notification settings - Fork 225
/
MSFT_xSQLServerMaxDop.Tests.ps1
506 lines (407 loc) · 21.1 KB
/
MSFT_xSQLServerMaxDop.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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
$script:DSCModuleName = 'xSQLServer'
$script:DSCResourceName = 'MSFT_xSQLServerMaxDop'
#region HEADER
# Unit Test Template Version: 1.2.0
$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 (Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1') -Force
# Loading mocked classes
Add-Type -Path ( Join-Path -Path ( Join-Path -Path $PSScriptRoot -ChildPath Stubs ) -ChildPath SMO.cs )
$TestEnvironment = Initialize-TestEnvironment `
-DSCModuleName $script:DSCModuleName `
-DSCResourceName $script:DSCResourceName `
-TestType Unit
#endregion HEADER
function Invoke-TestSetup {
}
function Invoke-TestCleanup {
Restore-TestEnvironment -TestEnvironment $TestEnvironment
}
# Begin Testing
try
{
Invoke-TestSetup
InModuleScope $script:DSCResourceName {
$mockSQLServerName = 'localhost'
$mockSQLServerInstanceName = 'MSSQLSERVER'
$mockMaxDegreeOfParallelism = 4
$mockExpectedMaxDopForAlterMethod = 1
$mockInvalidOperationForAlterMethod = $false
$mockNumberOfLogicalProcessors = 4
$mockNumberOfCores = 4
$mockProcessOnlyOnActiveNode = $true
# Default parameters that are used for the It-blocks
$mockDefaultParameters = @{
SQLInstanceName = $mockSQLServerInstanceName
SQLServer = $mockSQLServerName
}
#region Function mocks
$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 ScriptProperty -Name Configuration -Value {
return @( ( New-Object Object |
Add-Member -MemberType ScriptProperty -Name MaxDegreeOfParallelism -Value {
return @( ( New-Object Object |
Add-Member -MemberType NoteProperty -Name DisplayName -Value 'max degree of parallelism' -PassThru |
Add-Member -MemberType NoteProperty -Name Description -Value 'maximum degree of parallelism' -PassThru |
Add-Member -MemberType NoteProperty -Name RunValue -Value $mockMaxDegreeOfParallelism -PassThru |
Add-Member -MemberType NoteProperty -Name ConfigValue -Value $mockMaxDegreeOfParallelism -PassThru -Force
) )
} -PassThru -Force
) )
} -PassThru |
Add-Member -MemberType ScriptMethod -Name Alter -Value {
if ( $this.Configuration.MaxDegreeOfParallelism.ConfigValue -ne $mockExpectedMaxDopForAlterMethod )
{
throw "Called mocked Alter() method without setting the right MaxDegreeOfParallelism. Expected '{0}'. But was '{1}'." `
-f $mockExpectedMaxDopForAlterMethod, $this.Configuration.MaxDegreeOfParallelism.ConfigValue
}
if ($mockInvalidOperationForAlterMethod)
{
throw 'Mock Alter Method was called with invalid operation.'
}
} -PassThru -Force
)
)
}
$mockCimInstance_Win32Processor = {
return @(
(
New-Object Object |
Add-Member -MemberType NoteProperty -Name NumberOfLogicalProcessors -Value $mockNumberOfLogicalProcessors -PassThru |
Add-Member -MemberType NoteProperty -Name NumberOfCores -Value $mockNumberOfCores -PassThru -Force
)
)
}
#endregion
Describe "MSFT_xSQLServerMaxDop\Get-TargetResource" -Tag 'Get'{
Mock -CommandName Connect-SQL -MockWith $mockConnectSQL -Verifiable
Mock -CommandName Test-ActiveNode -MockWith { return $mockProcessOnlyOnActiveNode } -Verifiable
Context 'When the system is either in the desired state or not in the desired state' {
$testParameters = $mockDefaultParameters
$result = Get-TargetResource @testParameters
It 'Should return the current value for MaxDop' {
$result.MaxDop | Should -Be $mockMaxDegreeOfParallelism
}
It 'Should return the same values as passed as parameters' {
$result.SQLServer | Should -Be $testParameters.SQLServer
$result.SQLInstanceName | Should -Be $testParameters.SQLInstanceName
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
It 'Should call the mock function Test-ActiveNode' {
Assert-MockCalled Test-ActiveNode -Exactly -Times 1 -Scope Context
}
}
Assert-VerifiableMock
}
Describe "MSFT_xSQLServerMaxDop\Test-TargetResource" -Tag 'Test'{
BeforeEach {
Mock -CommandName Connect-SQL -MockWith $mockConnectSQL -Verifiable
Mock -CommandName Test-ActiveNode -MockWith {
$mockProcessOnlyOnActiveNode
} -Verifiable
Mock -CommandName Get-CimInstance -MockWith $mockCimInstance_Win32Processor -ParameterFilter {
$ClassName -eq 'Win32_Processor'
} -Verifiable
Mock -CommandName Get-CimInstance -MockWith {
throw 'Mocked function Get-CimInstance was called with the wrong set of parameter filters.'
}
}
Context 'When the system is not in the desired state and DynamicAlloc is set to false' {
$testParameters = $mockDefaultParameters
$testParameters += @{
MaxDop = 1
DynamicAlloc = $false
Ensure = 'Present'
}
It 'Should return the state as false when desired MaxDop is the wrong value' {
$result = Test-TargetResource @testParameters
$result | Should -Be $false
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
It 'Should not call the mock function Get-CimInstance' {
Assert-MockCalled Get-CimInstance -Exactly -Times 0 -Scope Context
}
}
$mockMaxDegreeOfParallelism = 6
Context 'When the system is in the desired state and DynamicAlloc is set to false' {
$testParameters = $mockDefaultParameters
$testParameters += @{
MaxDop = 6
DynamicAlloc = $false
}
It 'Should return the state as true when desired MaxDop is the correct value' {
$result = Test-TargetResource @testParameters
$result | Should -Be $true
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
It 'Should not call the mock function Get-CimInstance' {
Assert-MockCalled Get-CimInstance -Exactly -Times 0 -Scope Context
}
}
$mockMaxDegreeOfParallelism = 4
Context 'When the system is in the desired state and DynamicAlloc is set to true' {
$testParameters = $mockDefaultParameters
$testParameters += @{
DynamicAlloc = $true
}
It 'Should return the state as true when desired MaxDop is present' {
$result = Test-TargetResource @testParameters
$result | Should -Be $true
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
It 'Should call the mock function Get-CimInstance with ClassName equal to Win32_Processor' {
Assert-MockCalled Get-CimInstance -Exactly -Times 1 -ParameterFilter {
$ClassName -eq 'Win32_Processor'
} -Scope Context
}
}
$mockNumberOfCores = 2
Context 'When the system is not in the desired state, DynamicAlloc is set to true, NumberOfLogicalProcessors = 4 and NumberOfCores = 2' {
$testParameters = $mockDefaultParameters
$testParameters += @{
DynamicAlloc = $true
}
It 'Should return the state as false when desired MaxDop is the wrong value' {
$result = Test-TargetResource @testParameters
$result | Should -Be $false
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
It 'Should call the mock function Get-CimInstance with ClassName equal to Win32_Processor' {
Assert-MockCalled Get-CimInstance -Exactly -Times 1 -ParameterFilter {
$ClassName -eq 'Win32_Processor'
} -Scope Context
}
}
$mockNumberOfLogicalProcessors = 1
Context 'When the system is not in the desired state, DynamicAlloc is set to true, NumberOfLogicalProcessors = 1 and NumberOfCores = 2' {
$testParameters = $mockDefaultParameters
$testParameters += @{
DynamicAlloc = $true
}
It 'Should return the state as false when desired MaxDop is the wrong value' {
$result = Test-TargetResource @testParameters
$result | Should -Be $false
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
It 'Should call the mock function Get-CimInstance with ClassName equal to Win32_Processor' {
Assert-MockCalled Get-CimInstance -Exactly -Times 1 -ParameterFilter {
$ClassName -eq 'Win32_Processor'
} -Scope Context
}
}
$mockNumberOfLogicalProcessors = 4
$mockNumberOfCores = 8
Context 'When the system is not in the desired state, DynamicAlloc is set to true, NumberOfLogicalProcessors = 4 and NumberOfCores = 8' {
$testParameters = $mockDefaultParameters
$testParameters += @{
DynamicAlloc = $true
}
It 'Should return the state as false when desired MaxDop is the wrong value' {
$result = Test-TargetResource @testParameters
$result | Should -Be $false
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
It 'Should call the mock function Get-CimInstance with ClassName equal to Win32_Processor' {
Assert-MockCalled Get-CimInstance -Exactly -Times 1 -ParameterFilter {
$ClassName -eq 'Win32_Processor'
} -Scope Context
}
}
Context 'When the system is not in the desired state and Ensure is set to absent' {
$testParameters = $mockDefaultParameters
$testParameters += @{
Ensure = 'Absent'
}
It 'Should return the state as false when desired MaxDop is the wrong value' {
$result = Test-TargetResource @testParameters
$result | Should -Be $false
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
}
Context 'When the system is not in the desired state and Ensure is set to absent and ProcessOnlyOnActiveNode is set to true' {
AfterAll {
$mockProcessOnlyOnActiveNode = $true
}
BeforeAll {
$testParameters = $mockDefaultParameters
$testParameters += @{
Ensure = 'Absent'
ProcessOnlyOnActiveNode = $true
}
$mockProcessOnlyOnActiveNode = $false
}
It 'Should return the state as true' {
$result = Test-TargetResource @testParameters
$result | Should -Be $true
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
}
$mockMaxDegreeOfParallelism = 0
Context 'When the system is in the desired state and Ensure is set to absent' {
$testParameters = $mockDefaultParameters
$testParameters += @{
Ensure = 'Absent'
}
It 'Should return the state as true when desired MaxDop is the correct value' {
$result = Test-TargetResource @testParameters
$result | Should -Be $true
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
}
Context 'When the MaxDop parameter is not null and DynamicAlloc set to true' {
$testParameters = $mockDefaultParameters
$testParameters += @{
MaxDop = 4
DynamicAlloc = $true
}
It 'Should throw the correct error' {
{ Test-TargetResource @testParameters } | Should -Throw 'MaxDop parameter must be set to $null or not assigned if DynamicAlloc parameter is set to $true.'
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
}
# This is regression test for issue #576
Context 'When the system is in the desired state and SQLServer is not set' {
$testParameters = $mockDefaultParameters
$testParameters.Remove('SQLServer')
$testParameters += @{
Ensure = 'Absent'
}
It 'Should not throw an error' {
{ Test-TargetResource @testParameters } | Should -Not -Throw
}
}
Assert-VerifiableMock
}
Describe "MSFT_xSQLServerMaxDop\Set-TargetResource" -Tag 'Set'{
BeforeEach {
Mock -CommandName Connect-SQL -MockWith $mockConnectSQL -Verifiable
Mock -CommandName Get-CimInstance -MockWith $mockCimInstance_Win32Processor -ParameterFilter {
$ClassName -eq 'Win32_Processor'
} -Verifiable
Mock -CommandName Get-CimInstance -MockWith {
throw 'Mocked function Get-CimInstance was called with the wrong set of parameter filters.'
}
}
Context 'When the MaxDop parameter is not null and DynamicAlloc set to true' {
$testParameters = $mockDefaultParameters
$testParameters += @{
MaxDop = 4
DynamicAlloc = $true
Ensure = 'Present'
}
It 'Should throw the correct error' {
{ Set-TargetResource @testParameters } | Should -Throw 'MaxDop parameter must be set to $null or not assigned if DynamicAlloc parameter is set to $true.'
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
}
$mockMaxDegreeOfParallelism = 0
$mockExpectedMaxDopForAlterMethod = 0
Context 'When the Ensure parameter is set to Absent' {
$testParameters = $mockDefaultParameters
$testParameters += @{
Ensure = 'Absent'
}
It 'Should Not Throw when Ensure parameter is set to Absent' {
{ Set-TargetResource @testParameters } | Should -Not -Throw
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
}
$mockMaxDegreeOfParallelism = 1
$mockExpectedMaxDopForAlterMethod = 1
Context 'When the desired MaxDop parameter is not set' {
$testParameters = $mockDefaultParameters
$testParameters += @{
MaxDop = 1
DynamicAlloc = $false
Ensure = 'Present'
}
It 'Should Not Throw when MaxDop parameter is not null and DynamicAlloc set to false' {
{ Set-TargetResource @testParameters } | Should -Not -Throw
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
}
$mockMaxDegreeOfParallelism = 2
$mockExpectedMaxDopForAlterMethod = 2
$mockNumberOfLogicalProcessors = 4
$mockNumberOfCores = 2
Context 'When the system is not in the desired state and DynamicAlloc is set to true' {
$testParameters = $mockDefaultParameters
$testParameters += @{
DynamicAlloc = $true
Ensure = 'Present'
}
It 'Should Not Throw when MaxDop parameter is not null and DynamicAlloc set to false' {
{ Set-TargetResource @testParameters } | Should -Not -Throw
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
It 'Should call the mock function Get-CimInstance with ClassName equal to Win32_Processor' {
Assert-MockCalled Get-CimInstance -Exactly -Times 1 -ParameterFilter {
$ClassName -eq 'Win32_Processor'
} -Scope Context
}
}
$mockInvalidOperationForAlterMethod = $true
Context 'When the desired MaxDop parameter is not set' {
$testParameters = $mockDefaultParameters
$testParameters += @{
MaxDop = 1
DynamicAlloc = $false
Ensure = 'Present'
}
It 'Shoud throw the correct error when Alter() method was called with invalid operation' {
$throwInvalidOperation = ('Unexpected result when trying to configure the max degree of parallelism ' + `
'server configuration option. InnerException: Exception calling "Alter" ' + `
'with "0" argument(s): "Mock Alter Method was called with invalid operation."')
{ Set-TargetResource @testParameters } | Should -Throw $throwInvalidOperation
}
It 'Should call the mock function Connect-SQL' {
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope Context
}
}
Assert-VerifiableMock
}
}
}
finally
{
Invoke-TestCleanup
}