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
d3fd62c8
Unverified
Commit
d3fd62c8
authored
Sep 02, 2020
by
Jonah Williams
Committed by
GitHub
Sep 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] exit with helpful message if where is missing on windows (#65112)
parent
68c1b441
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
os.dart
packages/flutter_tools/lib/src/base/os.dart
+13
-1
os_test.dart
packages/flutter_tools/test/general.shard/base/os_test.dart
+8
-0
No files found.
packages/flutter_tools/lib/src/base/os.dart
View file @
d3fd62c8
...
@@ -8,6 +8,7 @@ import 'package:meta/meta.dart';
...
@@ -8,6 +8,7 @@ import 'package:meta/meta.dart';
import
'package:process/process.dart'
;
import
'package:process/process.dart'
;
import
'../globals.dart'
as
globals
;
import
'../globals.dart'
as
globals
;
import
'common.dart'
;
import
'file_system.dart'
;
import
'file_system.dart'
;
import
'io.dart'
;
import
'io.dart'
;
import
'logger.dart'
;
import
'logger.dart'
;
...
@@ -289,7 +290,18 @@ class _WindowsUtils extends OperatingSystemUtils {
...
@@ -289,7 +290,18 @@ class _WindowsUtils extends OperatingSystemUtils {
@override
@override
List
<
File
>
_which
(
String
execName
,
{
bool
all
=
false
})
{
List
<
File
>
_which
(
String
execName
,
{
bool
all
=
false
})
{
// `where` always returns all matches, not just the first one.
// `where` always returns all matches, not just the first one.
final
ProcessResult
result
=
_processManager
.
runSync
(<
String
>[
'where'
,
execName
]);
ProcessResult
result
;
try
{
result
=
_processManager
.
runSync
(<
String
>[
'where'
,
execName
]);
}
on
ArgumentError
{
// `where` could be missing if system32 is not on the PATH.
throwToolExit
(
'Cannot find the executable for `where`. This can happen if the System32 '
'folder (e.g. C:
\\
Windows
\\
System32 ) is removed from the PATH environment '
'variable. Ensure that this is present and then try again after restarting '
'the terminal and/or IDE.'
);
}
if
(
result
.
exitCode
!=
0
)
{
if
(
result
.
exitCode
!=
0
)
{
return
const
<
File
>[];
return
const
<
File
>[];
}
}
...
...
packages/flutter_tools/test/general.shard/base/os_test.dart
View file @
d3fd62c8
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
import
'package:file/file.dart'
;
import
'package:file/file.dart'
;
import
'package:file/memory.dart'
;
import
'package:file/memory.dart'
;
import
'package:flutter_tools/src/base/common.dart'
;
import
'package:flutter_tools/src/base/file_system.dart'
;
import
'package:flutter_tools/src/base/file_system.dart'
;
import
'package:flutter_tools/src/base/io.dart'
;
import
'package:flutter_tools/src/base/io.dart'
;
import
'package:flutter_tools/src/base/logger.dart'
;
import
'package:flutter_tools/src/base/logger.dart'
;
...
@@ -62,6 +63,13 @@ void main() {
...
@@ -62,6 +63,13 @@ void main() {
});
});
group
(
'which on Windows'
,
()
{
group
(
'which on Windows'
,
()
{
testWithoutContext
(
'throws tool exit if where throws an argument error'
,
()
async
{
when
(
mockProcessManager
.
runSync
(<
String
>[
'where'
,
kExecutable
]))
.
thenThrow
(
ArgumentError
(
'Cannot find executable for where'
));
final
OperatingSystemUtils
utils
=
createOSUtils
(
FakePlatform
(
operatingSystem:
'windows'
));
expect
(()
=>
utils
.
which
(
kExecutable
),
throwsA
(
isA
<
ToolExit
>()));
});
testWithoutContext
(
'returns null when executable does not exist'
,
()
async
{
testWithoutContext
(
'returns null when executable does not exist'
,
()
async
{
when
(
mockProcessManager
.
runSync
(<
String
>[
'where'
,
kExecutable
]))
when
(
mockProcessManager
.
runSync
(<
String
>[
'where'
,
kExecutable
]))
.
thenReturn
(
ProcessResult
(
0
,
1
,
null
,
null
));
.
thenReturn
(
ProcessResult
(
0
,
1
,
null
,
null
));
...
...
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