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
7850e252
Unverified
Commit
7850e252
authored
Dec 18, 2019
by
Lau Ching Jun
Committed by
GitHub
Dec 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Is executable doesn't mean a+x (#47359)
parent
1967a36e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
4 deletions
+43
-4
gradle_utils.dart
packages/flutter_tools/lib/src/android/gradle_utils.dart
+12
-4
gradle_utils_test.dart
...r_tools/test/general.shard/android/gradle_utils_test.dart
+31
-0
No files found.
packages/flutter_tools/lib/src/android/gradle_utils.dart
View file @
7850e252
...
...
@@ -107,7 +107,7 @@ class GradleUtils {
return
!
destinationFile
.
existsSync
();
},
onFileCopied:
(
File
sourceFile
,
File
destinationFile
)
{
if
(
_has
ExecutePermission
(
sourceFile
))
{
if
(
_has
AnyExecutableFlagSet
(
sourceFile
))
{
_giveExecutePermissionIfNeeded
(
destinationFile
);
}
},
...
...
@@ -153,17 +153,25 @@ String getGradleVersionForAndroidPlugin(Directory directory) {
const
int
_kExecPermissionMask
=
0x49
;
// a+x
/// Returns [true] if [executable] has
execute permission
.
bool
_has
ExecutePermission
(
File
executable
)
{
/// Returns [true] if [executable] has
all executable flag set
.
bool
_has
AllExecutableFlagSet
(
File
executable
)
{
final
FileStat
stat
=
executable
.
statSync
();
assert
(
stat
.
type
!=
FileSystemEntityType
.
notFound
);
printTrace
(
'
${executable.path}
mode:
${stat.mode}
${stat.modeString()}
.'
);
return
stat
.
mode
&
_kExecPermissionMask
==
_kExecPermissionMask
;
}
/// Returns [true] if [executable] has any executable flag set.
bool
_hasAnyExecutableFlagSet
(
File
executable
)
{
final
FileStat
stat
=
executable
.
statSync
();
assert
(
stat
.
type
!=
FileSystemEntityType
.
notFound
);
printTrace
(
'
${executable.path}
mode:
${stat.mode}
${stat.modeString()}
.'
);
return
stat
.
mode
&
_kExecPermissionMask
!=
0
;
}
/// Gives execute permission to [executable] if it doesn't have it already.
void
_giveExecutePermissionIfNeeded
(
File
executable
)
{
if
(!
_has
ExecutePermission
(
executable
))
{
if
(!
_has
AllExecutableFlagSet
(
executable
))
{
printTrace
(
'Trying to give execute permission to
${executable.path}
.'
);
os
.
makeExecutable
(
executable
);
}
...
...
packages/flutter_tools/test/general.shard/android/gradle_utils_test.dart
View file @
7850e252
...
...
@@ -285,6 +285,37 @@ void main() {
GradleUtils:
()
=>
gradleUtils
,
});
testUsingContext
(
'gives execute permission to gradle even when not all permission flags are set'
,
()
{
final
FlutterProject
flutterProject
=
MockFlutterProject
();
final
AndroidProject
androidProject
=
MockAndroidProject
();
when
(
flutterProject
.
android
).
thenReturn
(
androidProject
);
final
FileStat
gradleStat
=
MockFileStat
();
when
(
gradleStat
.
mode
).
thenReturn
(
400
);
final
File
gradlew
=
MockFile
();
when
(
gradlew
.
path
).
thenReturn
(
'gradlew'
);
when
(
gradlew
.
absolute
).
thenReturn
(
gradlew
);
when
(
gradlew
.
statSync
()).
thenReturn
(
gradleStat
);
when
(
gradlew
.
existsSync
()).
thenReturn
(
true
);
final
Directory
androidDirectory
=
MockDirectory
();
when
(
androidDirectory
.
childFile
(
gradlewFilename
)).
thenReturn
(
gradlew
);
when
(
androidProject
.
hostAppGradleRoot
).
thenReturn
(
androidDirectory
);
when
(
gradleUtils
.
injectGradleWrapperIfNeeded
(
any
)).
thenReturn
(
null
);
when
(
gradleUtils
.
migrateToR8
(
any
)).
thenReturn
(
null
);
GradleUtils
().
getExecutable
(
flutterProject
);
verify
(
operatingSystemUtils
.
makeExecutable
(
gradlew
)).
called
(
1
);
},
overrides:
<
Type
,
Generator
>{
FileSystem:
()
=>
memoryFileSystem
,
ProcessManager:
()
=>
FakeProcessManager
.
any
(),
OperatingSystemUtils:
()
=>
operatingSystemUtils
,
GradleUtils:
()
=>
gradleUtils
,
});
testUsingContext
(
'doesn
\'
t give execute permission to gradle if not needed'
,
()
{
final
FlutterProject
flutterProject
=
MockFlutterProject
();
final
AndroidProject
androidProject
=
MockAndroidProject
();
...
...
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