Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
526339b6
Commit
526339b6
authored
Aug 09, 2019
by
David Martos
Committed by
Christopher Fujino
Aug 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid killing Flutter tool process (#37471) (#37500)
parent
52fb11ec
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
64 additions
and
6 deletions
+64
-6
desktop.dart
packages/flutter_tools/lib/src/desktop.dart
+8
-2
windows_device.dart
packages/flutter_tools/lib/src/windows/windows_device.dart
+9
-2
linux_device_test.dart
...ter_tools/test/general.shard/linux/linux_device_test.dart
+14
-1
macos_device_test.dart
...ter_tools/test/general.shard/macos/macos_device_test.dart
+19
-0
windows_device_test.dart
...tools/test/general.shard/windows/windows_device_test.dart
+14
-1
No files found.
packages/flutter_tools/lib/src/desktop.dart
View file @
526339b6
...
...
@@ -29,9 +29,15 @@ Future<bool> killProcess(String executable) async {
if
(
values
.
length
<
2
)
{
continue
;
}
final
String
pid
=
values
[
1
];
final
String
processPid
=
values
[
1
];
final
String
currentRunningProcessPid
=
pid
.
toString
();
// Don't kill the flutter tool process
if
(
processPid
==
currentRunningProcessPid
)
{
continue
;
}
final
ProcessResult
killResult
=
await
processManager
.
run
(<
String
>[
'kill'
,
pid
,
'kill'
,
p
rocessP
id
,
]);
succeeded
&=
killResult
.
exitCode
==
0
;
}
...
...
packages/flutter_tools/lib/src/windows/windows_device.dart
View file @
526339b6
...
...
@@ -156,7 +156,7 @@ class WindowsDevices extends PollingDeviceDiscovery {
Future
<
List
<
String
>>
getDiagnostics
()
async
=>
const
<
String
>[];
}
final
RegExp
_whitespace
=
RegExp
(
r'\
w
+'
);
final
RegExp
_whitespace
=
RegExp
(
r'\
s
+'
);
/// Returns the running process matching `process` name.
///
...
...
@@ -174,8 +174,15 @@ List<String> runningProcess(String processName) {
continue
;
}
final
List
<
String
>
parts
=
process
.
split
(
_whitespace
);
final
String
processPid
=
parts
[
0
];
final
String
currentRunningProcessPid
=
pid
.
toString
();
// Don't kill the flutter tool process
if
(
processPid
==
currentRunningProcessPid
)
{
continue
;
}
final
List
<
String
>
data
=
<
String
>[
p
arts
[
0
]
,
// ID
p
rocessPid
,
// ID
parts
[
1
],
// Name
];
return
data
;
...
...
packages/flutter_tools/test/general.shard/linux/linux_device_test.dart
View file @
526339b6
...
...
@@ -22,16 +22,21 @@ void main() {
final
LinuxDevice
device
=
LinuxDevice
();
final
MockPlatform
notLinux
=
MockPlatform
();
final
MockProcessManager
mockProcessManager
=
MockProcessManager
();
const
String
flutterToolCommand
=
'flutter --someoption somevalue'
;
when
(
notLinux
.
isLinux
).
thenReturn
(
false
);
when
(
mockProcessManager
.
run
(<
String
>[
'ps'
,
'aux'
,
])).
thenAnswer
((
Invocation
invocation
)
async
{
// The flutter tool process is returned as output to the ps aux command
final
MockProcessResult
result
=
MockProcessResult
();
when
(
result
.
exitCode
).
thenReturn
(
0
);
when
<
String
>(
result
.
stdout
).
thenReturn
(
''
);
when
<
String
>(
result
.
stdout
).
thenReturn
(
'
username
$pid
$flutterToolCommand
'
);
return
result
;
});
when
(
mockProcessManager
.
run
(<
String
>[
'kill'
,
'
$pid
'
,
])).
thenThrow
(
Exception
(
'Flutter tool process has been killed'
));
testUsingContext
(
'defaults'
,
()
async
{
final
PrebuiltLinuxApp
linuxApp
=
PrebuiltLinuxApp
(
executable:
'foo'
);
...
...
@@ -55,6 +60,14 @@ void main() {
expect
(
portForwarder
.
forwardedPorts
.
isEmpty
,
true
);
});
testUsingContext
(
'The current running process is not killed when stopping the app'
,
()
async
{
// The name of the executable is the same as a command line argument to the flutter tool
final
PrebuiltLinuxApp
linuxApp
=
PrebuiltLinuxApp
(
executable:
'somevalue'
);
expect
(
await
device
.
stopApp
(
linuxApp
),
true
);
},
overrides:
<
Type
,
Generator
>{
ProcessManager:
()
=>
mockProcessManager
,
});
testUsingContext
(
'No devices listed if platform unsupported'
,
()
async
{
expect
(
await
LinuxDevices
().
devices
,
<
Device
>[]);
},
overrides:
<
Type
,
Generator
>{
...
...
packages/flutter_tools/test/general.shard/macos/macos_device_test.dart
View file @
526339b6
...
...
@@ -96,6 +96,25 @@ tester 17193 0.0 0.2 4791128 37820 ?? S 2:27PM 0:00.09 /Applica
FileSystem:
()
=>
mockFileSystem
,
ProcessManager:
()
=>
mockProcessManager
,
});
testUsingContext
(
'The current running process is not killed when stopping the app'
,
()
async
{
final
String
psOut
=
'''
tester
$pid
0.0 0.2 4791128 37820 ?? S 2:27PM 0:00.09 flutter run --use-application-binary /Applications/foo
'''
;
final
MockMacOSApp
mockMacOSApp
=
MockMacOSApp
();
// The name of the executable is the same as a command line argument to the flutter tool
when
(
mockMacOSApp
.
executable
(
any
)).
thenReturn
(
'/Applications/foo'
);
when
(
mockProcessManager
.
run
(<
String
>[
'ps'
,
'aux'
])).
thenAnswer
((
Invocation
invocation
)
async
{
return
ProcessResult
(
1
,
0
,
psOut
,
''
);
});
when
(
mockProcessManager
.
run
(<
String
>[
'kill'
,
'
$pid
'
,
])).
thenThrow
(
Exception
(
'Flutter tool process has been killed'
));
expect
(
await
device
.
stopApp
(
mockMacOSApp
),
true
);
},
overrides:
<
Type
,
Generator
>{
ProcessManager:
()
=>
mockProcessManager
,
});
});
test
(
'noop port forwarding'
,
()
async
{
...
...
packages/flutter_tools/test/general.shard/windows/windows_device_test.dart
View file @
526339b6
...
...
@@ -22,17 +22,22 @@ void main() {
final
WindowsDevice
device
=
WindowsDevice
();
final
MockPlatform
notWindows
=
MockPlatform
();
final
MockProcessManager
mockProcessManager
=
MockProcessManager
();
const
String
flutterToolBinary
=
'flutter.exe'
;
when
(
notWindows
.
isWindows
).
thenReturn
(
false
);
when
(
notWindows
.
environment
).
thenReturn
(
const
<
String
,
String
>{});
when
(
mockProcessManager
.
runSync
(<
String
>[
'powershell'
,
'-script="Get-CimInstance Win32_Process"'
])).
thenAnswer
((
Invocation
invocation
)
{
// The flutter tool process is returned as output to the powershell script
final
MockProcessResult
result
=
MockProcessResult
();
when
(
result
.
exitCode
).
thenReturn
(
0
);
when
<
String
>(
result
.
stdout
).
thenReturn
(
''
);
when
<
String
>(
result
.
stdout
).
thenReturn
(
'
$pid
$flutterToolBinary
'
);
return
result
;
});
when
(
mockProcessManager
.
run
(<
String
>[
'Taskkill'
,
'/PID'
,
'
$pid
'
,
'/F'
])).
thenThrow
(
Exception
(
'Flutter tool process has been killed'
));
testUsingContext
(
'defaults'
,
()
async
{
final
PrebuiltWindowsApp
windowsApp
=
PrebuiltWindowsApp
(
executable:
'foo'
);
...
...
@@ -82,6 +87,14 @@ void main() {
},
overrides:
<
Type
,
Generator
>{
FileSystem:
()
=>
MemoryFileSystem
(),
});
testUsingContext
(
'The current running process is not killed when stopping the app'
,
()
async
{
// The name of the executable is the same as the flutter tool one
final
PrebuiltWindowsApp
windowsApp
=
PrebuiltWindowsApp
(
executable:
flutterToolBinary
);
expect
(
await
device
.
stopApp
(
windowsApp
),
false
);
},
overrides:
<
Type
,
Generator
>{
ProcessManager:
()
=>
mockProcessManager
,
});
});
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment