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
0a9ff388
Commit
0a9ff388
authored
Dec 19, 2019
by
Dan Field
Committed by
Flutter GitHub Bot
Dec 19, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Use platform appropriate filepaths" (#47395)
parent
d51956a9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
7 deletions
+15
-7
assets.dart
...es/flutter_tools/lib/src/build_system/targets/assets.dart
+1
-1
bundle.dart
packages/flutter_tools/lib/src/bundle.dart
+1
-1
assets_test.dart
.../test/general.shard/build_system/targets/assets_test.dart
+13
-5
No files found.
packages/flutter_tools/lib/src/build_system/targets/assets.dart
View file @
0a9ff388
...
...
@@ -34,7 +34,7 @@ Future<Depfile> copyAssets(Environment environment, Directory outputDirectory) a
assetBundle
.
entries
.
entries
.
map
<
Future
<
void
>>((
MapEntry
<
String
,
DevFSContent
>
entry
)
async
{
final
PoolResource
resource
=
await
pool
.
request
();
try
{
final
File
file
=
fs
.
file
(
outputDirectory
.
uri
.
resolve
(
entry
.
key
));
final
File
file
=
fs
.
file
(
fs
.
path
.
join
(
outputDirectory
.
path
,
entry
.
key
));
outputs
.
add
(
file
);
file
.
parent
.
createSync
(
recursive:
true
);
final
DevFSContent
content
=
entry
.
value
;
...
...
packages/flutter_tools/lib/src/bundle.dart
View file @
0a9ff388
...
...
@@ -195,7 +195,7 @@ Future<void> writeBundle(
assetEntries
.
entries
.
map
<
Future
<
void
>>((
MapEntry
<
String
,
DevFSContent
>
entry
)
async
{
final
PoolResource
resource
=
await
pool
.
request
();
try
{
final
File
file
=
fs
.
file
(
bundleDir
.
uri
.
resolve
(
entry
.
key
));
final
File
file
=
fs
.
file
(
fs
.
path
.
join
(
bundleDir
.
path
,
entry
.
key
));
file
.
parent
.
createSync
(
recursive:
true
);
await
file
.
writeAsBytes
(
await
entry
.
value
.
contentsAsBytes
());
}
finally
{
...
...
packages/flutter_tools/test/general.shard/build_system/targets/assets_test.dart
View file @
0a9ff388
...
...
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:io'
;
import
'package:flutter_tools/src/base/file_system.dart'
;
import
'package:flutter_tools/src/build_system/build_system.dart'
;
import
'package:flutter_tools/src/build_system/targets/assets.dart'
;
...
...
@@ -25,6 +27,8 @@ void main() {
..
createSync
(
recursive:
true
);
fs
.
file
(
fs
.
path
.
join
(
'assets'
,
'foo'
,
'bar.png'
))
..
createSync
(
recursive:
true
);
fs
.
file
(
fs
.
path
.
join
(
'assets'
,
'wildcard'
,
'#bar.png'
))
..
createSync
(
recursive:
true
);
fs
.
file
(
'.packages'
)
..
createSync
();
fs
.
file
(
'pubspec.yaml'
)
...
...
@@ -35,6 +39,7 @@ name: example
flutter:
assets:
- assets/foo/bar.png
- assets/wildcard/
'''
);
});
});
...
...
@@ -45,14 +50,16 @@ flutter:
expect
(
fs
.
file
(
fs
.
path
.
join
(
environment
.
buildDir
.
path
,
'flutter_assets'
,
'AssetManifest.json'
)).
existsSync
(),
true
);
expect
(
fs
.
file
(
fs
.
path
.
join
(
environment
.
buildDir
.
path
,
'flutter_assets'
,
'FontManifest.json'
)).
existsSync
(),
true
);
expect
(
fs
.
file
(
fs
.
path
.
join
(
environment
.
buildDir
.
path
,
'flutter_assets'
,
'LICENSE'
)).
existsSync
(),
true
);
expect
(
fs
.
file
(
fs
.
path
.
join
(
environment
.
buildDir
.
path
,
'flutter_assets'
,
'assets'
,
'foo'
,
'bar.png'
)).
existsSync
(),
true
);
// See https://github.com/flutter/flutter/issues/35293
expect
(
fs
.
file
(
fs
.
path
.
join
(
environment
.
buildDir
.
path
,
'flutter_assets'
,
'assets/foo/bar.png'
)).
existsSync
(),
true
);
// See https://github.com/flutter/flutter/issues/46163
expect
(
fs
.
file
(
fs
.
path
.
join
(
environment
.
buildDir
.
path
,
'flutter_assets'
,
'assets/wildcard/%23bar.png'
)).
existsSync
(),
true
);
}));
test
(
'Does not leave stale files in build directory'
,
()
=>
testbed
.
run
(()
async
{
await
buildSystem
.
build
(
const
CopyAssets
(),
environment
);
final
File
assetFile
=
fs
.
file
(
fs
.
path
.
join
(
environment
.
buildDir
.
path
,
'flutter_assets'
,
'assets'
,
'foo'
,
'bar.png'
));
expect
(
assetFile
.
existsSync
(),
true
);
expect
(
fs
.
file
(
fs
.
path
.
join
(
environment
.
buildDir
.
path
,
'flutter_assets'
,
'assets/foo/bar.png'
))
.
existsSync
(),
true
);
// Modify manifest to remove asset.
fs
.
file
(
'pubspec.yaml'
)
..
createSync
()
...
...
@@ -63,8 +70,9 @@ flutter:
'''
);
await
buildSystem
.
build
(
const
CopyAssets
(),
environment
);
expect
(
assetFile
.
existsSync
(),
false
);
}));
// See https://github.com/flutter/flutter/issues/35293
expect
(
fs
.
file
(
fs
.
path
.
join
(
environment
.
buildDir
.
path
,
'flutter_assets'
,
'assets/foo/bar.png'
)).
existsSync
(),
false
);
}),
skip:
Platform
.
isWindows
);
// See https://github.com/google/file.dart/issues/131
test
(
'FlutterPlugins updates required files as needed'
,
()
=>
testbed
.
run
(()
async
{
fs
.
file
(
'pubspec.yaml'
)
...
...
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