-
Notifications
You must be signed in to change notification settings - Fork 225
/
MSFT_SqlServerEndpoint.Tests.ps1
741 lines (595 loc) · 34.5 KB
/
MSFT_SqlServerEndpoint.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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
<#
.SYNOPSIS
Automated unit test for MSFT_SqlServerEndpoint DSC resource.
.NOTES
To run this script locally, please make sure to first run the bootstrap
script. Read more at
https://github.com/PowerShell/SqlServerDsc/blob/dev/CONTRIBUTING.md#bootstrap-script-assert-testenvironment
#>
$script:DSCModuleName = 'SqlServerDsc'
$script:DSCResourceName = 'MSFT_SqlServerEndpoint'
if ($env:APPVEYOR -eq $true -and $env:CONFIGURATION -ne 'Unit')
{
Write-Verbose -Message ('Unit test for {0} will be skipped unless $env:CONFIGURATION is set to ''Unit''.' -f $script:DSCResourceName) -Verbose
return
}
#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
$TestEnvironment = Initialize-TestEnvironment `
-DSCModuleName $script:DSCModuleName `
-DSCResourceName $script:DSCResourceName `
-TestType Unit
#endregion HEADER
function Invoke-TestSetup {
# Loading mocked classes
Add-Type -Path (Join-Path -Path $script:moduleRoot -ChildPath 'Tests\Unit\Stubs\SMO.cs')
}
function Invoke-TestCleanup {
Restore-TestEnvironment -TestEnvironment $TestEnvironment
}
# Begin Testing
try
{
Invoke-TestSetup
InModuleScope $script:DSCResourceName {
$mockServerName = 'localhost'
$mockInstanceName = 'INSTANCE1'
$mockPrincipal = 'COMPANY\SqlServiceAcct'
$mockOtherPrincipal = 'COMPANY\OtherAcct'
$mockEndpointName = 'DefaultEndpointMirror'
$mockEndpointType = 'DatabaseMirroring'
$mockEndpointListenerPort = 5022
$mockEndpointListenerIpAddress = '0.0.0.0' # 0.0.0.0 means listen on all IP addresses.
$mockEndpointOwner = 'sa'
$mockOtherEndpointName = 'UnknownEndpoint'
$mockOtherEndpointType = 'UnknownType'
$mockOtherEndpointListenerPort = 9001
$mockOtherEndpointListenerIpAddress = '192.168.0.20'
$mockOtherEndpointOwner = 'COMPANY\OtherAcct'
$script:mockMethodAlterRan = $false
$script:mockMethodCreateRan = $false
$script:mockMethodDropRan = $false
$script:mockMethodStartRan = $false
$mockDynamicEndpointName = $mockEndpointName
$mockDynamicEndpointType = $mockEndpointType
$mockDynamicEndpointListenerPort = $mockEndpointListenerPort
$mockDynamicEndpointListenerIpAddress = $mockEndpointListenerIpAddress
$mockDynamicEndpointOwner = $mockEndpointOwner
$mockEndpointObject = {
# TypeName: Microsoft.SqlServer.Management.Smo.Endpoint
return New-Object -TypeName Object |
Add-Member -MemberType NoteProperty -Name 'Name' -Value $mockDynamicEndpointName -PassThru |
Add-Member -MemberType NoteProperty -Name 'EndpointType' -Value $mockDynamicEndpointType -PassThru |
Add-Member -MemberType NoteProperty -Name 'ProtocolType' -Value $null -PassThru |
Add-Member -MemberType NoteProperty -Name 'Owner' -Value $mockDynamicEndpointOwner -PassThru |
Add-Member -MemberType ScriptProperty -Name 'Protocol' -Value {
return New-Object -TypeName Object |
Add-Member -MemberType ScriptProperty -Name 'Tcp' -Value {
return New-Object -TypeName Object |
Add-Member -MemberType NoteProperty -Name 'ListenerPort' -Value $mockDynamicEndpointListenerPort -PassThru |
Add-Member -MemberType NoteProperty -Name 'ListenerIPAddress' -Value $mockDynamicEndpointListenerIpAddress -PassThru -Force
} -PassThru -Force
} -PassThru |
Add-Member -MemberType ScriptProperty -Name 'Payload' -Value {
return New-Object -TypeName Object |
Add-Member -MemberType ScriptProperty -Name 'DatabaseMirroring' -Value {
return New-Object -TypeName Object |
Add-Member -MemberType NoteProperty -Name 'ServerMirroringRole' -Value $null -PassThru |
Add-Member -MemberType NoteProperty -Name 'EndpointEncryption' -Value $null -PassThru |
Add-Member -MemberType NoteProperty -Name 'EndpointEncryptionAlgorithm' -Value $null -PassThru -Force
} -PassThru -Force
} -PassThru |
Add-Member -MemberType ScriptMethod -Name 'Alter' -Value {
$script:mockMethodAlterRan = $true
if ( $this.Name -ne $mockExpectedNameWhenCallingMethod )
{
throw "Called mocked Alter() method on and endpoint with wrong name. Expected '{0}'. But was '{1}'." `
-f $mockExpectedNameWhenCallingMethod, $this.Name
}
} -PassThru |
Add-Member -MemberType ScriptMethod -Name 'Drop' -Value {
$script:mockMethodDropRan = $true
if ( $this.Name -ne $mockExpectedNameWhenCallingMethod )
{
throw "Called mocked Drop() method on and endpoint with wrong name. Expected '{0}'. But was '{1}'." `
-f $mockExpectedNameWhenCallingMethod, $this.Name
}
} -PassThru |
Add-Member -MemberType ScriptMethod -Name 'Start' -Value {
$script:mockMethodStartRan = $true
} -PassThru |
Add-Member -MemberType ScriptMethod -Name 'Create' -Value {
$script:mockMethodCreateRan = $true
if ( $this.Name -ne $mockExpectedNameWhenCallingMethod )
{
throw "Called mocked Create() method on and endpoint with wrong name. Expected '{0}'. But was '{1}'." `
-f $mockExpectedNameWhenCallingMethod, $this.Name
}
} -PassThru -Force
}
$mockConnectSql = {
return New-Object -TypeName Object |
Add-Member -MemberType ScriptProperty -Name Endpoints -Value {
return @(
@{
# This executes the script block $mockEndpointObject and returns a mocked Microsoft.SqlServer.Management.Smo.Endpoint
$mockDynamicEndpointName = & $mockEndpointObject
}
)
} -PassThru -Force
}
$mockNewObjectEndPoint = {
# This executes the script block $mockEndpointObject and returns a mocked Microsoft.SqlServer.Management.Smo.Endpoint
return & $mockEndpointObject
}
$mockNewObjectEndPoint_ParameterFilter = {
$TypeName -eq 'Microsoft.SqlServer.Management.Smo.Endpoint'
}
$defaultParameters = @{
InstanceName = $mockInstanceName
ServerName = $mockServerName
EndpointName = $mockEndpointName
}
Describe 'MSFT_SqlServerEndpoint\Get-TargetResource' -Tag 'Get' {
BeforeEach {
$testParameters = $defaultParameters
Mock -CommandName Connect-SQL -MockWith $mockConnectSql -Verifiable
}
# Make sure the mock does not return the correct endpoint
$mockDynamicEndpointName = $mockOtherEndpointName
Context 'When the system is not in the desired state' {
It 'Should return the desired state as absent' {
$result = Get-TargetResource @testParameters
$result.Ensure | Should -Be 'Absent'
}
It 'Should return the same values as passed as parameters' {
$result = Get-TargetResource @testParameters
$result.ServerName | Should -Be $testParameters.ServerName
$result.InstanceName | Should -Be $testParameters.InstanceName
}
It 'Should not return any values in the properties for the endpoint' {
$result = Get-TargetResource @testParameters
$result.EndpointName | Should -Be ''
$result.Port | Should -Be ''
$result.IpAddress | Should -Be ''
$result.Owner | Should -Be ''
}
It 'Should call the mock function Connect-SQL' {
Get-TargetResource @testParameters | Out-Null
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
}
# Make sure the mock do return the correct endpoint
$mockDynamicEndpointName = $mockEndpointName
Context 'When the system is in the desired state' {
It 'Should return the desired state as present' {
$result = Get-TargetResource @testParameters
$result.Ensure | Should -Be 'Present'
}
It 'Should return the same values as passed as parameters' {
$result = Get-TargetResource @testParameters
$result.ServerName | Should -Be $testParameters.ServerName
$result.InstanceName | Should -Be $testParameters.InstanceName
$result.EndpointName | Should -Be $testParameters.EndpointName
$result.Port | Should -Be $mockEndpointListenerPort
$result.IpAddress | Should -Be $mockEndpointListenerIpAddress
$result.Owner | Should -Be $mockEndpointOwner
}
It 'Should call the mock function Connect-SQL' {
$result = Get-TargetResource @testParameters
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Make sure the mock return the endpoint with wrong endpoint type
$mockDynamicEndpointType = $mockOtherEndpointType
Context 'When endpoint exist but with wrong endpoint type' {
It 'Should throw the correct error' {
{ Get-TargetResource @testParameters } | Should -Throw 'Endpoint ''DefaultEndpointMirror'' does exist, but it is not of type ''DatabaseMirroring''.'
}
}
# Make sure the mock return the endpoint with correct endpoint type
$mockDynamicEndpointType = $mockEndpointType
}
Context 'When Connect-SQL returns nothing' {
It 'Should throw the correct error' {
Mock -CommandName Connect-SQL -MockWith {
return $null
}
{ Get-TargetResource @testParameters } | Should -Throw 'Was unable to connect to the instance ''localhost\INSTANCE1'''
}
}
Assert-VerifiableMock
}
Describe 'MSFT_SqlServerEndpoint\Test-TargetResource' -Tag 'Test' {
BeforeEach {
$testParameters = $defaultParameters.Clone()
Mock -CommandName Connect-SQL -MockWith $mockConnectSql -Verifiable
}
Context 'When the system is not in the desired state' {
# Make sure the mock does not return the correct endpoint
$mockDynamicEndpointName = $mockOtherEndpointName
It 'Should return that desired state is absent when wanted desired state is to be Present (using default values)' {
$testParameters.Add('Ensure', 'Present')
$result = Test-TargetResource @testParameters
$result | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
It 'Should return that desired state is absent when wanted desired state is to be Present (setting all parameters)' {
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('Port', $mockEndpointListenerPort)
$testParameters.Add('IpAddress', $mockEndpointListenerIpAddress)
$testParameters.Add('Owner', $mockEndpointOwner)
$result = Test-TargetResource @testParameters
$result | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Make sure the mock do return the correct endpoint
$mockDynamicEndpointName = $mockEndpointName
It 'Should return that desired state is absent when wanted desired state is to be Absent' {
$testParameters.Add('Ensure', 'Absent')
$result = Test-TargetResource @testParameters
$result | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Make sure the mock do return the correct endpoint, but does not return the correct endpoint listener port
$mockDynamicEndpointName = $mockEndpointName
$mockDynamicEndpointListenerPort = $mockOtherEndpointListenerPort
Context 'When listener port is not in desired state' {
It 'Should return that desired state is absent' {
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('Port', $mockEndpointListenerPort)
$result = Test-TargetResource @testParameters
$result | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
}
# Make sure the mock do return the correct endpoint listener port
$mockDynamicEndpointListenerPort = $mockEndpointListenerPort
# Make sure the mock do return the correct endpoint, but does not return the correct endpoint listener IP address
$mockDynamicEndpointName = $mockEndpointName
$mockDynamicEndpointListenerIpAddress = $mockOtherEndpointListenerIpAddress
Context 'When listener IP address is not in desired state' {
It 'Should return that desired state is absent' {
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('IpAddress', $mockEndpointListenerIpAddress)
$result = Test-TargetResource @testParameters
$result | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
}
# Make sure the mock do return the correct endpoint listener IP address
$mockDynamicEndpointListenerIpAddress = $mockEndpointListenerIpAddress
# Make sure the mock do return the correct endpoint, but does not return the correct endpoint listener IP address
$mockDynamicEndpointName = $mockEndpointName
$mockDynamicEndpointOwner = $mockOtherEndpointOwner
Context 'When listener Owner is not in desired state' {
It 'Should return that desired state is absent' {
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('Owner', $mockEndpointOwner)
$result = Test-TargetResource @testParameters
$result | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
}
# Make sure the mock do return the correct endpoint listener IP address
$mockDynamicEndpointOwner = $mockEndpointOwner
}
Context 'When the system is in the desired state' {
# Make sure the mock do return the correct endpoint
$mockDynamicEndpointName = $mockEndpointName
It 'Should return that desired state is present when wanted desired state is to be Present (using default values)' {
$result = Test-TargetResource @testParameters
$result | Should -Be $true
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Make sure the mock does not return the correct endpoint
$mockDynamicEndpointName = $mockOtherEndpointName
It 'Should return that desired state is present when wanted desired state is to be Absent' {
$testParameters.Add('Ensure', 'Absent')
$result = Test-TargetResource @testParameters
$result | Should -Be $true
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
}
Assert-VerifiableMock
}
Describe 'MSFT_SqlServerEndpoint\Set-TargetResource' -Tag 'Set' {
BeforeEach {
$testParameters = $defaultParameters.Clone()
Mock -CommandName Connect-SQL -MockWith $mockConnectSql -Verifiable
Mock -CommandName New-Object -MockWith $mockNewObjectEndPoint -ParameterFilter $mockNewObjectEndPoint_ParameterFilter -Verifiable
}
Context 'When the system is not in the desired state' {
# Make sure the mock do return the correct endpoint
$mockDynamicEndpointName = $mockEndpointName
# Set all method call tests variables to $false
$script:mockMethodCreateRan = $false
$script:mockMethodStartRan = $false
$script:mockMethodAlterRan = $false
$script:mockMethodDropRan = $false
# Set what the expected endpoint name should be when Create() method is called.
$mockExpectedNameWhenCallingMethod = $mockEndpointName
It 'Should call the method Create when desired state is to be Present (using default values)' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Absent'
}
} -Verifiable
{ Set-TargetResource @testParameters } | Should -Not -Throw
$script:mockMethodCreateRan | Should -Be $true
$script:mockMethodStartRan | Should -Be $true
$script:mockMethodAlterRan | Should -Be $false
$script:mockMethodDropRan | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Set all method call tests variables to $false
$script:mockMethodCreateRan = $false
$script:mockMethodStartRan = $false
$script:mockMethodAlterRan = $false
$script:mockMethodDropRan = $false
# Set what the expected endpoint name should be when Create() method is called.
$mockExpectedNameWhenCallingMethod = $mockEndpointName
It 'Should call the method Create when desired state is to be Present (setting all parameters)' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Absent'
}
} -Verifiable
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('Port', $mockEndpointListenerPort)
$testParameters.Add('IpAddress', $mockEndpointListenerIpAddress)
$testParameters.Add('Owner', $mockEndpointOwner)
{ Set-TargetResource @testParameters } | Should -Not -Throw
$script:mockMethodCreateRan | Should -Be $true
$script:mockMethodStartRan | Should -Be $true
$script:mockMethodAlterRan | Should -Be $false
$script:mockMethodDropRan | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Set all method call tests variables to $false
$script:mockMethodCreateRan = $false
$script:mockMethodStartRan = $false
$script:mockMethodAlterRan = $false
$script:mockMethodDropRan = $false
# Set what the expected endpoint name should be when Drop() method is called.
$mockExpectedNameWhenCallingMethod = $mockEndpointName
It 'Should call the method Drop when desired state is to be Absent' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Present'
}
} -Verifiable
$testParameters.Add('Ensure', 'Absent')
{ Set-TargetResource @testParameters } | Should -Not -Throw
$script:mockMethodCreateRan | Should -Be $false
$script:mockMethodStartRan | Should -Be $false
$script:mockMethodAlterRan | Should -Be $false
$script:mockMethodDropRan | Should -Be $true
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Set all method call tests variables to $false
$script:mockMethodCreateRan = $false
$script:mockMethodStartRan = $false
$script:mockMethodAlterRan = $false
$script:mockMethodDropRan = $false
# Set what the expected endpoint name should be when Alter() method is called.
$mockExpectedNameWhenCallingMethod = $mockEndpointName
It 'Should call Alter method when listener port is not in desired state' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Present'
Port = $mockEndpointListenerPort
IpAddress = $mockEndpointListenerIpAddress
}
} -Verifiable
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('Port', $mockOtherEndpointListenerPort)
$testParameters.Add('IpAddress', $mockEndpointListenerIpAddress)
$testParameters.Add('Owner', $mockEndpointOwner)
{ Set-TargetResource @testParameters } | Should -Not -Throw
$script:mockMethodCreateRan | Should -Be $false
$script:mockMethodStartRan | Should -Be $false
$script:mockMethodAlterRan | Should -Be $true
$script:mockMethodDropRan | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Set all method call tests variables to $false
$script:mockMethodCreateRan = $false
$script:mockMethodStartRan = $false
$script:mockMethodAlterRan = $false
$script:mockMethodDropRan = $false
# Set what the expected endpoint name should be when Alter() method is called.
$mockExpectedNameWhenCallingMethod = $mockEndpointName
It 'Should call Alter method when listener IP address is not in desired state' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Present'
Port = $mockEndpointListenerPort
IpAddress = $mockEndpointListenerIpAddress
}
} -Verifiable
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('Port', $mockEndpointListenerPort)
$testParameters.Add('IpAddress', $mockOtherEndpointListenerIpAddress)
$testParameters.Add('Owner', $mockEndpointOwner)
{ Set-TargetResource @testParameters } | Should -Not -Throw
$script:mockMethodCreateRan | Should -Be $false
$script:mockMethodStartRan | Should -Be $false
$script:mockMethodAlterRan | Should -Be $true
$script:mockMethodDropRan | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Set all method call tests variables to $false
$script:mockMethodCreateRan = $false
$script:mockMethodStartRan = $false
$script:mockMethodAlterRan = $false
$script:mockMethodDropRan = $false
# Set what the expected endpoint name should be when Alter() method is called.
$mockExpectedNameWhenCallingMethod = $mockEndpointName
It 'Should call Alter method when Owner is not in desired state' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Present'
Port = $mockEndpointListenerPort
IpAddress = $mockEndpointListenerIpAddress
}
} -Verifiable
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('Port', $mockEndpointListenerPort)
$testParameters.Add('IpAddress', $mockEndpointListenerIpAddress)
$testParameters.Add('Owner', $mockOtherEndpointOwner)
{ Set-TargetResource @testParameters } | Should -Not -Throw
$script:mockMethodCreateRan | Should -Be $false
$script:mockMethodStartRan | Should -Be $false
$script:mockMethodAlterRan | Should -Be $true
$script:mockMethodDropRan | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Make sure the mock does not return the correct endpoint
$mockDynamicEndpointName = $mockOtherEndpointName
Context 'When endpoint is missing when Ensure is set to Present' {
It 'Should throw the correct error' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Present'
Port = $mockEndpointListenerPort
IpAddress = $mockEndpointListenerIpAddress
Owner = $mockEndpointOwner
}
} -Verifiable
{ Set-TargetResource @testParameters } | Should -Throw 'Endpoint ''DefaultEndpointMirror'' does not exist'
}
}
Context 'When endpoint is missing when Ensure is set to Absent' {
It 'Should throw the correct error' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Present'
Port = $mockEndpointListenerPort
IpAddress = $mockEndpointListenerIpAddress
Owner = $mockEndpointOwner
}
} -Verifiable
$testParameters.Add('Ensure', 'Absent')
{ Set-TargetResource @testParameters } | Should -Throw 'Endpoint ''DefaultEndpointMirror'' does not exist'
}
}
Context 'When Connect-SQL returns nothing' {
It 'Should throw the correct error' {
Mock -CommandName Get-TargetResource -Verifiable
Mock -CommandName Connect-SQL -MockWith {
return $null
}
{ Set-TargetResource @testParameters } | Should -Throw 'Was unable to connect to the instance ''localhost\INSTANCE1'''
}
}
}
Context ' ' {
# Make sure the mock do return the correct endpoint
$mockDynamicEndpointName = $mockEndpointName
$mockDynamicEndpointListenerPort = $mockEndpointListenerPort
$mockDynamicEndpointListenerIpAddress = $mockEndpointListenerIpAddress
$mockDynamicEndpointOwner = $mockEndpointOwner
# Set all method call tests variables to $false
$script:mockMethodCreateRan = $false
$script:mockMethodStartRan = $false
$script:mockMethodAlterRan = $false
$script:mockMethodDropRan = $false
It 'Should not call any methods when desired state is already Present' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Present'
Port = $mockEndpointListenerPort
IpAddress = $mockEndpointListenerIpAddress
Owner = $mockEndpointOwner
}
} -Verifiable
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('Port', $mockEndpointListenerPort)
$testParameters.Add('IpAddress', $mockEndpointListenerIpAddress)
$testParameters.Add('Owner', $mockEndpointOwner)
{ Set-TargetResource @testParameters } | Should -Not -Throw
$script:mockMethodCreateRan | Should -Be $false
$script:mockMethodStartRan | Should -Be $false
$script:mockMethodAlterRan | Should -Be $false
$script:mockMethodDropRan | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
# Make sure the mock does not return the correct endpoint
$mockDynamicEndpointName = $mockOtherEndpointName
# Set all method call tests variables to $false
$script:mockMethodCreateRan = $false
$script:mockMethodStartRan = $false
$script:mockMethodAlterRan = $false
$script:mockMethodDropRan = $false
It 'Should not call any methods when desired state is already Absent' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Absent'
}
} -Verifiable
$testParameters.Add('Ensure', 'Absent')
{ Set-TargetResource @testParameters } | Should -Not -Throw
$script:mockMethodCreateRan | Should -Be $false
$script:mockMethodStartRan | Should -Be $false
$script:mockMethodAlterRan | Should -Be $false
$script:mockMethodDropRan | Should -Be $false
Assert-MockCalled Connect-SQL -Exactly -Times 1 -Scope It
}
}
# Make sure the mock do return the correct endpoint
$mockDynamicEndpointName = $mockEndpointName
$mockExpectedNameWhenCallingMethod = $mockOtherEndpointName
Context 'Testing mocks' {
Context 'When mocked Create() method is called with the wrong endpoint name' {
It 'Should throw the correct error' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Absent'
}
} -Verifiable
{ Set-TargetResource @testParameters } | Should -Throw 'Exception calling "Create" with "0" argument(s): "Called mocked Create() method on and endpoint with wrong name. Expected ''UnknownEndpoint''. But was ''DefaultEndpointMirror''."'
}
}
Context 'When mocked Drop() method is called with the wrong endpoint name' {
It 'Should throw the correct error' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Present'
}
} -Verifiable
$testParameters.Add('Ensure', 'Absent')
{ Set-TargetResource @testParameters } | Should -Throw 'Exception calling "Drop" with "0" argument(s): "Called mocked Drop() method on and endpoint with wrong name. Expected ''UnknownEndpoint''. But was ''DefaultEndpointMirror''."'
}
}
Context 'When mocked Alter() method is called with the wrong endpoint name' {
It 'Should throw the correct error' {
Mock -CommandName Get-TargetResource -MockWith {
return @{
Ensure = 'Present'
Port = $mockEndpointListenerPort
IpAddress = $mockEndpointListenerIpAddress
}
} -Verifiable
$testParameters.Add('Ensure', 'Present')
$testParameters.Add('Port', $mockOtherEndpointListenerPort)
$testParameters.Add('IpAddress', $mockEndpointListenerIpAddress)
$testParameters.Add('Owner', $mockEndpointOwner)
{ Set-TargetResource @testParameters } | Should -Throw 'Exception calling "Alter" with "0" argument(s): "Called mocked Alter() method on and endpoint with wrong name. Expected ''UnknownEndpoint''. But was ''DefaultEndpointMirror''."'
}
}
}
Assert-VerifiableMock
}
}
}
finally
{
Invoke-TestCleanup
}