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
53e0c50a
Unverified
Commit
53e0c50a
authored
Jun 03, 2021
by
Jonah Williams
Committed by
GitHub
Jun 03, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] use ProcessManager.canRun instead of checking for ArgumentErrors (#83845)
parent
320f2771
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
48 deletions
+16
-48
os.dart
packages/flutter_tools/lib/src/base/os.dart
+9
-12
os_test.dart
packages/flutter_tools/test/general.shard/base/os_test.dart
+7
-36
No files found.
packages/flutter_tools/lib/src/base/os.dart
View file @
53e0c50a
...
...
@@ -222,13 +222,7 @@ class _PosixUtils extends OperatingSystemUtils {
// unzip -o -q zipfile -d dest
@override
void
unzip
(
File
file
,
Directory
targetDirectory
)
{
try
{
_processUtils
.
runSync
(
<
String
>[
'unzip'
,
'-o'
,
'-q'
,
file
.
path
,
'-d'
,
targetDirectory
.
path
],
throwOnError:
true
,
verboseExceptions:
true
,
);
}
on
ArgumentError
{
if
(!
_processManager
.
canRun
(
'unzip'
))
{
// unzip is not available. this error message is modeled after the download
// error in bin/internal/update_dart_sdk.sh
String
message
=
'Please install unzip.'
;
...
...
@@ -241,6 +235,11 @@ class _PosixUtils extends OperatingSystemUtils {
'Missing "unzip" tool. Unable to extract
${file.path}
.
\n
$message
'
);
}
_processUtils
.
runSync
(
<
String
>[
'unzip'
,
'-o'
,
'-q'
,
file
.
path
,
'-d'
,
targetDirectory
.
path
],
throwOnError:
true
,
verboseExceptions:
true
,
);
}
// tar -xzf tarball -C dest
...
...
@@ -454,11 +453,7 @@ class _WindowsUtils extends OperatingSystemUtils {
@override
List
<
File
>
_which
(
String
execName
,
{
bool
all
=
false
})
{
// `where` always returns all matches, not just the first one.
ProcessResult
result
;
try
{
result
=
_processManager
.
runSync
(<
String
>[
'where'
,
execName
]);
}
on
ArgumentError
{
if
(!
_processManager
.
canRun
(
'where'
))
{
// `where` could be missing if system32 is not on the PATH.
throwToolExit
(
'Cannot find the executable for `where`. This can happen if the System32 '
...
...
@@ -467,6 +462,8 @@ class _WindowsUtils extends OperatingSystemUtils {
'the terminal and/or IDE.'
);
}
// `where` always returns all matches, not just the first one.
final
ProcessResult
result
=
_processManager
.
runSync
(<
String
>[
'where'
,
execName
]);
if
(
result
.
exitCode
!=
0
)
{
return
const
<
File
>[];
}
...
...
packages/flutter_tools/test/general.shard/base/os_test.dart
View file @
53e0c50a
...
...
@@ -81,16 +81,8 @@ void main() {
});
group
(
'which on Windows'
,
()
{
testWithoutContext
(
'throws tool exit if where throws an argument error'
,
()
async
{
fakeProcessManager
.
addCommand
(
FakeCommand
(
command:
const
<
String
>[
'where'
,
kExecutable
,
],
exception:
ArgumentError
(
'Cannot find executable for where'
),
),
);
testWithoutContext
(
'throws tool exit if where.exe cannot be run'
,
()
async
{
fakeProcessManager
.
excludedExecutables
.
add
(
'where'
);
final
OperatingSystemUtils
utils
=
OperatingSystemUtils
(
fileSystem:
MemoryFileSystem
.
test
(),
...
...
@@ -544,17 +536,10 @@ void main() {
);
});
group
(
'display an install message when unzip
throws an ArgumentError
'
,
()
{
group
(
'display an install message when unzip
cannot be run
'
,
()
{
testWithoutContext
(
'Linux'
,
()
{
final
FileSystem
fileSystem
=
MemoryFileSystem
.
test
();
fakeProcessManager
.
addCommand
(
FakeCommand
(
command:
<
String
>[
'unzip'
,
'-o'
,
'-q'
,
'foo.zip'
,
'-d'
,
fileSystem
.
currentDirectory
.
path
,
],
exception:
ArgumentError
(),
),
);
fakeProcessManager
.
excludedExecutables
.
add
(
'unzip'
);
final
OperatingSystemUtils
linuxOsUtils
=
OperatingSystemUtils
(
fileSystem:
fileSystem
,
...
...
@@ -573,14 +558,7 @@ void main() {
testWithoutContext
(
'macOS'
,
()
{
final
FileSystem
fileSystem
=
MemoryFileSystem
.
test
();
fakeProcessManager
.
addCommand
(
FakeCommand
(
command:
<
String
>[
'unzip'
,
'-o'
,
'-q'
,
'foo.zip'
,
'-d'
,
fileSystem
.
currentDirectory
.
path
,
],
exception:
ArgumentError
(),
),
);
fakeProcessManager
.
excludedExecutables
.
add
(
'unzip'
);
final
OperatingSystemUtils
macOSUtils
=
OperatingSystemUtils
(
fileSystem:
fileSystem
,
...
...
@@ -590,7 +568,7 @@ void main() {
);
expect
(
()
=>
macOSUtils
.
unzip
(
fileSystem
.
file
(
'foo.zip'
),
fileSystem
.
currentDirectory
),
()
=>
macOSUtils
.
unzip
(
fileSystem
.
file
(
'foo.zip'
),
fileSystem
.
currentDirectory
),
throwsToolExit
(
message:
'Missing "unzip" tool. Unable to extract foo.zip.
\n
'
'Consider running "brew install unzip".'
),
...
...
@@ -599,14 +577,7 @@ void main() {
testWithoutContext
(
'unknown OS'
,
()
{
final
FileSystem
fileSystem
=
MemoryFileSystem
.
test
();
fakeProcessManager
.
addCommand
(
FakeCommand
(
command:
<
String
>[
'unzip'
,
'-o'
,
'-q'
,
'foo.zip'
,
'-d'
,
fileSystem
.
currentDirectory
.
path
,
],
exception:
ArgumentError
(),
),
);
fakeProcessManager
.
excludedExecutables
.
add
(
'unzip'
);
final
OperatingSystemUtils
unknownOsUtils
=
OperatingSystemUtils
(
fileSystem:
fileSystem
,
...
...
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