-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathMSFT_SystemLocale.Tests.ps1
173 lines (150 loc) · 6.25 KB
/
MSFT_SystemLocale.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
$script:DSCModuleName = 'ComputerManagementDsc'
$script:DSCResourceName = 'MSFT_SystemLocale'
Import-Module -Name (Join-Path -Path (Join-Path -Path (Split-Path $PSScriptRoot -Parent) -ChildPath 'TestHelpers') -ChildPath 'CommonTestHelper.psm1') -Global
#region HEADER
# Unit Test Template Version: 1.1.0
[String] $moduleRoot = Split-Path -Parent (Split-Path -Parent (Split-Path -Parent $Script:MyInvocation.MyCommand.Path))
if ( (-not (Test-Path -Path (Join-Path -Path $moduleRoot -ChildPath 'DSCResource.Tests'))) -or `
(-not (Test-Path -Path (Join-Path -Path $moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1'))) )
{
& git @('clone', 'https://github.com/PowerShell/DscResource.Tests.git', (Join-Path -Path $moduleRoot -ChildPath '\DSCResource.Tests\'))
}
Import-Module (Join-Path -Path $moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1') -Force
$TestEnvironment = Initialize-TestEnvironment `
-DSCModuleName $script:DSCModuleName `
-DSCResourceName $script:DSCResourceName `
-TestType Unit
#endregion HEADER
# Begin Testing
try
{
#region Pester Tests
$testSystemLocale = 'en-US'
$testAltSystemLocale = 'en-AU'
$badSystemLocale = 'zzz-ZZZ'
$localizedData = InModuleScope $script:DSCResourceName {
$LocalizedData
}
Describe 'Schema' {
it 'IsSingleInstance should be mandatory with one value.' {
$systemLocaleResource = Get-DscResource -Name SystemLocale
$systemLocaleResource.Properties.Where{
$_.Name -eq 'IsSingleInstance'
}.IsMandatory | Should -BeTrue
$systemLocaleResource.Properties.Where{
$_.Name -eq 'IsSingleInstance'
}.Values | Should -Be 'Yes'
}
}
Describe "$($script:DSCResourceName)\Get-TargetResource" {
Mock -CommandName Get-WinSystemLocale `
-ModuleName $($script:DSCResourceName) `
-MockWith { @{
LCID = '1033'
Name = 'en-US'
DisplayName = 'English (United States)'
} }
Context 'System Locale is the desired state' {
$systemLocale = Get-TargetResource `
-SystemLocale $testSystemLocale `
-IsSingleInstance 'Yes'
It 'Should return hashtable with Key SystemLocale' {
$systemLocale.ContainsKey('SystemLocale') | Should -BeTrue
}
It "Should return hashtable with Value that matches '$testSystemLocale'" {
$systemLocale.SystemLocale = $testSystemLocale
}
}
}
Describe "$($script:DSCResourceName)\Set-TargetResource" {
Mock -CommandName Get-WinSystemLocale `
-ModuleName $($script:DSCResourceName) `
-MockWith { @{
LCID = '1033'
Name = 'en-US'
DisplayName = 'English (United States)'
} }
Mock -CommandName Set-WinSystemLocale `
-ModuleName $($script:DSCResourceName)
Context 'System Locale is the desired state' {
It 'Should not throw exception' {
{
Set-TargetResource `
-SystemLocale $testSystemLocale `
-IsSingleInstance 'Yes'
} | Should -Not -Throw
}
It 'Should not call Set-WinSystemLocale' {
Assert-MockCalled `
-CommandName Set-WinSystemLocale `
-ModuleName $($script:DSCResourceName) `
-Exactly 0
}
}
Context 'System Locale is not in the desired state' {
It 'Should not throw exception' {
{
Set-TargetResource `
-SystemLocale $testAltSystemLocale `
-IsSingleInstance 'Yes'
} | Should -Not -Throw
}
It 'Should call Set-WinSystemLocale' {
Assert-MockCalled `
-CommandName Set-WinSystemLocale `
-ModuleName $($script:DSCResourceName) `
-Exactly 1
}
}
}
Describe "$($script:DSCResourceName)\Test-TargetResource" {
Mock -CommandName Get-WinSystemLocale `
-ModuleName $($script:DSCResourceName) `
-MockWith { @{
LCID = '1033'
Name = 'en-US'
DisplayName = 'English (United States)'
} }
It 'Should throw the expected exception' {
$errorRecord = Get-InvalidArgumentRecord `
-Message ($localizedData.InvalidSystemLocaleError -f $badSystemLocale) `
-ArgumentName 'SystemLocale'
{ Test-TargetResource `
-SystemLocale $badSystemLocale `
-IsSingleInstance 'Yes' } | Should -Throw $errorRecord
}
It 'Should return true when Test is passed System Locale that is already set' {
Test-TargetResource `
-SystemLocale $testSystemLocale `
-IsSingleInstance 'Yes' | Should -BeTrue
}
It 'Should return false when Test is passed System Locale that is not set' {
Test-TargetResource `
-SystemLocale $testAltSystemLocale `
-IsSingleInstance 'Yes' | Should -BeFalse
}
}
InModuleScope $script:DSCResourceName {
# Redeclare these variables so that they can be accessed within the InModuleScope block
$script:DSCResourceName = 'MSFT_SystemLocale'
$testSystemLocale = 'en-US'
$badSystemLocale = 'zzz-ZZZ'
Describe "$($script:DSCResourceName)\Test-SystemLocaleValue" {
It 'Should return true when a valid System Locale is passed' {
Test-SystemLocaleValue `
-SystemLocale $testSystemLocale | Should -BeTrue
}
It 'Should return false when an invalid System Locale is passed' {
Test-SystemLocaleValue `
-SystemLocale $badSystemLocale | Should -BeFalse
}
}
} #end InModuleScope $DSCResourceName
#endregion
}
finally
{
#region FOOTER
Restore-TestEnvironment -TestEnvironment $TestEnvironment
#endregion
}