forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNativeCommandProcessor.Tests.ps1
More file actions
220 lines (193 loc) · 8.33 KB
/
Copy pathNativeCommandProcessor.Tests.ps1
File metadata and controls
220 lines (193 loc) · 8.33 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
Describe 'native commands with pipeline' -tags 'Feature' {
BeforeAll {
$powershell = Join-Path -Path $PsHome -ChildPath "powershell"
}
It "native | ps | native doesn't block" {
$iss = [initialsessionstate]::CreateDefault2();
$rs = [runspacefactory]::CreateRunspace($iss)
$rs.Open()
$ps = [powershell]::Create()
$ps.Runspace = $rs
$ps.AddScript("& $powershell -noprofile -command '100;
Start-Sleep -Seconds 100' |
ForEach-Object { if (`$_ -eq 100) { 'foo'; exit; }}").BeginInvoke()
# waiting 30 seconds, because powershell startup time could be long on the slow machines,
# such as CI
Wait-UntilTrue { $rs.RunspaceAvailability -eq 'Available' } -timeout 30000 -interval 100 | Should Be $true
$ps.Stop()
$rs.ResetRunspaceState()
}
It "native | native | native should work fine" {
if ($IsWindows) {
$result = @(ping.exe | findstr.exe count | findstr.exe ping)
$result[0] | Should Match "Usage: ping"
} else {
$result = @(ps aux | grep powershell | grep -v grep)
$result[0] | Should Match "powershell"
}
}
}
Describe "Native Command Processor" -tags "Feature" {
# If powershell receives a StopProcessing, it should kill the native process and all child processes
# this test should pass and no longer Pending when #2561 is fixed
It "Should kill native process tree" -Pending {
# make sure no test processes are running
Get-Process testexe -ErrorAction SilentlyContinue | Stop-Process
[int] $numToCreate = 2
$ps = [PowerShell]::Create().AddCommand("testexe")
$ps.AddArgument("-createchildprocess")
$ps.AddArgument($numToCreate)
$async = $ps.BeginInvoke()
$ps.InvocationStateInfo.State | Should Be "Running"
[bool] $childrenCreated = $false
while (-not $childrenCreated)
{
$childprocesses = Get-Process testexe -ErrorAction SilentlyContinue
if ($childprocesses.count -eq $numToCreate+1)
{
$childrenCreated = $true
}
}
$startTime = Get-Date
$beginsync = $ps.BeginStop($null, $async)
# wait no more than 5 secs for the processes to be terminated, otherwise test has failed
while (((Get-Date) - $startTime).TotalSeconds -lt 5)
{
if (($childprocesses.hasexited -eq $true).count -eq $numToCreate+1)
{
break
}
}
$childprocesses = Get-Process testexe
$count = $childprocesses.count
$childprocesses | Stop-Process
$count | Should Be 0
}
It "Should not block running Windows executables" -Skip:(!$IsWindows -or !(Get-Command notepad.exe)) {
function FindNewNotepad
{
Get-Process -Name notepad -ErrorAction Ignore | Where-Object { $_.Id -notin $dontKill }
}
# We need to kill the windows process we start and can't know the process id, so get a list of
# notepad processes already running and don't kill any of those.
$dontKill = Get-Process -Name notepad -ErrorAction Ignore | ForEach-Object { $_.Id }
try
{
$ps = [powershell]::Create().AddScript('notepad.exe; "ran notepad"')
$async = $ps.BeginInvoke()
# Wait for up to 30 seconds for either the pipeline to finish (should mean the test succeeded) or
# for a new instance of notepad to have started (which mean we're blocked)
$counter = 0
while (!$async.AsyncWaitHandle.WaitOne(10000) -and $counter -lt 3 -and !(FindNewNotepad))
{
$counter++
}
# Stop the new instance of notepad
$newNotepad = FindNewNotepad
$newNotepad | Should Not Be $null
$newNotepad | Stop-Process
$async.IsCompleted | Should Be $true
$ps.EndInvoke($async) | Should Be "ran notepad"
}
finally
{
if (!$async.IsCompleted)
{
$ps.Stop()
}
$ps.Dispose()
}
}
}
Describe "Open a text file with NativeCommandProcessor" -tags @("Feature", "RequireAdminOnWindows") {
BeforeAll {
if ($IsWindows) {
$TestFile = Join-Path -Path $TestDrive -ChildPath "TextFileTest.foo"
} else {
$TestFile = Join-Path -Path $TestDrive -ChildPath "TextFileTest.txt"
}
Set-Content -Path $TestFile -Value "Hello" -Force
$supportedEnvironment = $true
if ($IsLinux) {
$appFolder = "$HOME/.local/share/applications"
$supportedEnvironment = Test-Path $appFolder
if ($supportedEnvironment) {
$mimeDefault = xdg-mime query default text/plain
Remove-Item $HOME/nativeCommandProcessor.Success -Force -ErrorAction SilentlyContinue
Set-Content -Path "$appFolder/nativeCommandProcessor.desktop" -Force -Value @"
[Desktop Entry]
Version=1.0
Name=nativeCommandProcessor
Comment=Validate_native_command_processor_open_text_file
Exec=/bin/sh -c 'echo %u > ~/nativeCommandProcessor.Success'
Icon=utilities-terminal
Terminal=true
Type=Application
Categories=Application;
"@
xdg-mime default nativeCommandProcessor.desktop text/plain
}
}
elseif ($IsWindows) {
$supportedEnvironment = [System.Management.Automation.Platform]::IsWindowsDesktop
if ($supportedEnvironment) {
cmd /c assoc .foo=foofile
cmd /c ftype foofile=cmd /c echo %1^> $TestDrive\foo.txt
Remove-Item $TestDrive\foo.txt -Force -ErrorAction SilentlyContinue
}
}
}
AfterAll {
Remove-Item -Path $TestFile -Force -ErrorAction SilentlyContinue
if ($IsLinux -and $supportedEnvironment) {
xdg-mime default $mimeDefault text/plain
Remove-Item $appFolder/nativeCommandProcessor.desktop -Force -ErrorAction SilentlyContinue
Remove-Item $HOME/nativeCommandProcessor.Success -Force -ErrorAction SilentlyContinue
}
elseif ($IsWindows -and $supportedEnvironment) {
cmd /c assoc .foo=
cmd /c ftype foofile=
}
}
It "Should open text file without error" -Skip:(!$supportedEnvironment) {
if ($IsOSX) {
$expectedTitle = Split-Path $TestFile -Leaf
open -F -a TextEdit
$beforeCount = [int]('tell application "TextEdit" to count of windows' | osascript)
& $TestFile
$startTime = Get-Date
$title = [String]::Empty
while (((Get-Date) - $startTime).TotalSeconds -lt 30 -and ($title -ne $expectedTitle)) {
Start-Sleep -Milliseconds 100
$title = 'tell application "TextEdit" to get name of front window' | osascript
}
$afterCount = [int]('tell application "TextEdit" to count of windows' | osascript)
$afterCount | Should Be ($beforeCount + 1)
$title | Should Be $expectedTitle
"tell application ""TextEdit"" to close window ""$expectedTitle""" | osascript
'tell application "TextEdit" to quit' | osascript
}
elseif ($IsLinux) {
# Validate on Linux by reassociating default app for text file
& $TestFile
$startTime = Get-Date
# It may take time for handler to start
while (((Get-Date) - $startTime).TotalSeconds -lt 10 -and (-not (Test-Path "$HOME/nativeCommandProcessor.Success"))) {
Start-Sleep -Milliseconds 100
}
Get-Content $HOME/nativeCommandProcessor.Success | Should Be $TestFile
}
else {
& $TestFile
$startTime = Get-Date
while (((Get-Date) - $startTime).TotalSeconds -lt 10 -and (!(Test-Path $TestDrive\foo.txt))) {
Start-Sleep -Milliseconds 100
}
"$TestDrive\foo.txt" | Should Exist
Get-Content $TestDrive\foo.txt | Should BeExactly $TestFile
}
}
It "Opening a file with an unregistered extension on Windows should fail" -Skip:(!$IsWindows) {
{ $dllFile = "$PSHOME\System.Management.Automation.dll"; & $dllFile } | ShouldBeErrorId "NativeCommandFailed"
}
}