forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSet-PSBreakpoint.Tests.ps1
More file actions
229 lines (188 loc) · 7.39 KB
/
Copy pathSet-PSBreakpoint.Tests.ps1
File metadata and controls
229 lines (188 loc) · 7.39 KB
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
$ps = Join-Path -Path $PsHome -ChildPath "powershell"
Describe "Set-PSBreakpoint DRT Unit Tests" -Tags "CI" {
#Set up
$scriptFileName = Join-Path $TestDrive -ChildPath breakpointTestScript.ps1
$scriptFileNameBug = Join-Path -Path $TestDrive -ChildPath SetPSBreakpointTests.ExposeBug154112.ps1
$contents = @"
function Hello
{
`$greeting = 'Hello, world!'
write-host `$greeting
}
function Goodbye
{
`$message = 'Good bye, cruel world!'
write-host `$message
}
Hello
Goodbye
# The following 2 statements produce null tokens (needed to verify 105473)
#
`$table = @{}
return
"@
$contentsBug = @"
set-psbreakpoint -variable foo
set-psbreakpoint -command foo
"@
$contents > $scriptFileName
$contentsBug > $scriptFileNameBug
It "Should be able to set psbreakpoints for -Line" {
$brk = Set-PSBreakpoint -Line 13 -Script $scriptFileName
$brk.Line | Should Be 13
Remove-PSBreakPoint -Id $brk.Id
}
It "Should be able to set psbreakpoints for -Line and -column" {
$brk = set-psbreakpoint -line 13 -column 1 -script $scriptFileName
$brk.Line | Should Be 13
$brk.Column | Should Be 1
Remove-PSBreakPoint -Id $brk.Id
}
It "Should be able to set psbreakpoints for -Line and -action" {
$brk = set-psbreakpoint -line 13 -action {{ break; }} -script $scriptFileName
$brk.Line | Should Be 13
$brk.Action | Should Match "break"
Remove-PSBreakPoint -Id $brk.Id
}
It "Should be able to set psbreakpoints for -Line, -column and -action" {
$brk = set-psbreakpoint -line 13 -column 1 -action {{ break; }} -script $scriptFileName
$brk.Line | Should Be 13
$brk.Column | Should Be 1
$brk.Action | Should Match "break"
Remove-PSBreakPoint -Id $brk.Id
}
It "-script and -line can take multiple items" {
$brk = sbp -line 11,12,13 -column 1 -script $scriptFileName,$scriptFileName
$brk.Line | Should Be 11,12,13
$brk.Column | Should Be 1
Remove-PSBreakPoint -Id $brk.Id
}
It "-script and -line are positional" {
$brk = sbp $scriptFileName 13
$brk.Line | Should Be 13
Remove-PSBreakPoint -Id $brk.Id
}
It "-script, -line and -column are positional" {
$brk = sbp $scriptFileName 13 1
$brk.Line | Should Be 13
$brk.Column | Should Be 1
Remove-PSBreakPoint -Id $brk.Id
}
It "Should throw Exception when missing mandatory parameter -line" -Pending {
$output = & $ps -noninteractive -command "sbp -column 1 -script $scriptFileName"
[system.string]::Join(" ", $output) | Should Match "MissingMandatoryParameter,Microsoft.PowerShell.Commands.SetPSBreakpointCommand"
}
It "Should throw Exception when missing mandatory parameter" -Pending {
$output = & $ps -noprofile -noninteractive -command "sbp -line 1"
[system.string]::Join(" ", $output) | Should Match "MissingMandatoryParameter,Microsoft.PowerShell.Commands.SetPSBreakpointCommand"
}
It "Should be able to set psbreakpoints for -command" {
$brk = set-psbreakpoint -command "write-host"
$brk.Command | Should Be "write-host"
Remove-PSBreakPoint -Id $brk.Id
}
It "Should be able to set psbreakpoints for -command, -script" {
$brk = set-psbreakpoint -command "write-host" -script $scriptFileName
$brk.Command | Should Be "write-host"
Remove-PSBreakPoint -Id $brk.Id
}
It "Should be able to set psbreakpoints for -command, -action and -script" {
$brk = set-psbreakpoint -command "write-host" -action {{ break; }} -script $scriptFileName
$brk.Action | Should Match "break"
Remove-PSBreakPoint -Id $brk.Id
}
It "-Command can take multiple items" {
$brk = set-psbreakpoint -command write-host,Hello
$brk.Command | Should Be write-host,Hello
Remove-PSBreakPoint -Id $brk.Id
}
It "-Script is positional" {
$brk = set-psbreakpoint -command "Hello" $scriptFileName
$brk.Command | Should Be "Hello"
Remove-PSBreakPoint -Id $brk.Id
$brk = set-psbreakpoint $scriptFileName -command "Hello"
$brk.Command | Should Be "Hello"
Remove-PSBreakPoint -Id $brk.Id
}
It "Should be able to set breakpoints on functions" {
$brk = set-psbreakpoint -command Hello,Goodbye -script $scriptFileName
$brk.Command | Should Be Hello,Goodbye
Remove-PSBreakPoint -Id $brk.Id
}
It "Should be throw Exception when Column number less than 1" {
try {
set-psbreakpoint -line 1 -column -1 -script $scriptFileName
Throw "Execution OK"
}
catch {
$_.FullyQualifiedErrorId | Should Be "ParameterArgumentValidationError,Microsoft.PowerShell.Commands.SetPSBreakpointCommand"
}
}
It "Should be throw Exception when Line number less than 1" {
$ErrorActionPreference = "Stop"
try {
set-psbreakpoint -line -1 -script $scriptFileName
Throw "Execution OK"
}
catch {
$_.FullyQualifiedErrorId | Should Be "SetPSBreakpoint:LineLessThanOne,Microsoft.PowerShell.Commands.SetPSBreakpointCommand"
}
$ErrorActionPreference = "SilentlyContinue"
}
It "Remove implicit script from 'set-psbreakpoint -script'" {
& $ps -noprofile $scriptFileNameBug
$breakpoint = Get-PSBreakpoint -Script $scriptFileNameBug
$breakpoint | Should BeNullOrEmpty
}
It "Fail to set psbreakpoints when script is a file of wrong type" {
$tempFile = [System.IO.Path]::GetTempFileName()
$ErrorActionPreference = "Stop"
{
Set-PSBreakpoint -Script $tempFile -Line 1
} | Should Throw
$ErrorActionPreference = "SilentlyContinue"
Remove-Item $tempFile -Force
}
It "Fail to set psbreakpoints when script file does not exist" {
$ErrorActionPreference = "Stop"
${script.ps1} = 10
{
Set-PSBreakpoint -Script variable:\script.ps1 -Line 1
} | Should Throw
$ErrorActionPreference = "SilentlyContinue"
}
# clean up
Remove-Item -Path $scriptFileName -Force
Remove-Item -Path $scriptFileNameBug -Force
}
Describe "Set-PSBreakpoint" -Tags "CI" {
# Set up test script
$testScript = Join-Path -Path $PSScriptRoot -ChildPath psbreakpointtestscript.ps1
"`$var = 1 " > $testScript
It "Should be able to set a psbreakpoint on a line" {
$lineNumber = 1
$brk = Set-PSBreakpoint -Line $lineNumber -Script $testScript
$brk.Line | Should Be $lineNumber
Remove-PSBreakPoint -Id $brk.Id
}
It "Should throw when a string is entered for a line number" {
{
$lineNumber = "one"
Set-PSBreakpoint -Line $lineNumber -Script $testScript
} | Should Throw
}
It "Should be able to set a psbreakpoint on a Command" {
$command = "theCommand"
$brk = Set-PSBreakpoint -Command $command -Script $testScript
$brk.Command | Should Be $command
Remove-PSBreakPoint -Id $brk.Id
}
It "Should be able to set a psbreakpoint on a variable" {
$var = "theVariable"
$brk = Set-PSBreakpoint -Command $var -Script $testScript
$brk.Command | Should Be $var
Remove-PSBreakPoint -Id $brk.Id
}
# clean up after ourselves
Remove-Item -Path $testScript
}