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
fc8dbd3c
Unverified
Commit
fc8dbd3c
authored
Sep 05, 2018
by
Danny Tuppeny
Committed by
GitHub
Sep 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move asset_bundle_variant_test over to memory file system (#21426)
parent
eb9c975e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
18 deletions
+26
-18
asset_bundle_variant_test.dart
packages/flutter_tools/test/asset_bundle_variant_test.dart
+26
-18
No files found.
packages/flutter_tools/test/asset_bundle_variant_test.dart
View file @
fc8dbd3c
...
...
@@ -5,36 +5,43 @@
import
'dart:convert'
;
import
'package:file/file.dart'
;
import
'package:file/memory.dart'
;
import
'package:flutter_tools/src/asset.dart'
;
import
'package:flutter_tools/src/base/file_system.dart'
;
import
'package:flutter_tools/src/base/platform.dart'
;
import
'package:flutter_tools/src/cache.dart'
;
import
'src/common.dart'
;
import
'src/context.dart'
;
import
'src/pubspec_schema.dart'
;
void
main
(
)
{
// These tests do not use a memory file system because we want to ensure that
// asset bundles work correctly on Windows and Posix systems.
Directory
tempDir
;
Directory
oldCurrentDir
;
setUp
(()
async
{
tempDir
=
fs
.
systemTempDirectory
.
createTempSync
(
'flutter_asset_bundle_variant_test.'
);
oldCurrentDir
=
fs
.
currentDirectory
;
fs
.
currentDirectory
=
tempDir
;
});
tearDown
(()
{
fs
.
currentDirectory
=
oldCurrentDir
;
tryToDelete
(
tempDir
);
});
String
fixPath
(
String
path
)
{
// The in-memory file system is strict about slashes on Windows being the
// correct way so until https://github.com/google/file.dart/issues/112 is
// fixed we fix them here.
// TODO(dantup): Remove this function once the above issue is fixed and
// rolls into Flutter.
return
path
?.
replaceAll
(
'/'
,
fs
.
path
.
separator
);
}
group
(
'AssetBundle asset variants'
,
()
{
FileSystem
testFileSystem
;
setUp
(()
async
{
testFileSystem
=
new
MemoryFileSystem
(
style:
platform
.
isWindows
?
FileSystemStyle
.
windows
:
FileSystemStyle
.
posix
,
);
testFileSystem
.
currentDirectory
=
testFileSystem
.
systemTempDirectory
.
createTempSync
(
'flutter_asset_bundle_variant_test.'
);
});
testUsingContext
(
'main asset and variants'
,
()
async
{
// Setting flutterRoot here so that it picks up the MemoryFileSystem's
// path separator.
Cache
.
flutterRoot
=
getFlutterRoot
();
writeEmptySchemaFile
(
fs
);
fs
.
file
(
'pubspec.yaml'
)
..
createSync
()
...
...
@@ -58,7 +65,7 @@ flutter:
'a/b/c/var3/foo'
,
];
for
(
String
asset
in
assets
)
{
fs
.
file
(
asset
)
fs
.
file
(
fixPath
(
asset
)
)
..
createSync
(
recursive:
true
)
..
writeAsStringSync
(
asset
);
}
...
...
@@ -72,7 +79,7 @@ flutter:
expect
(
utf8
.
decode
(
await
bundle
.
entries
[
asset
].
contentsAsBytes
()),
asset
);
}
fs
.
file
(
'a/b/c/foo'
).
deleteSync
();
fs
.
file
(
fixPath
(
'a/b/c/foo'
)
).
deleteSync
();
bundle
=
AssetBundleFactory
.
instance
.
createBundle
();
await
bundle
.
build
(
manifestPath:
'pubspec.yaml'
);
...
...
@@ -83,7 +90,8 @@ flutter:
expect
(
bundle
.
entries
.
containsKey
(
asset
),
true
);
expect
(
utf8
.
decode
(
await
bundle
.
entries
[
asset
].
contentsAsBytes
()),
asset
);
}
},
overrides:
<
Type
,
Generator
>{
FileSystem:
()
=>
testFileSystem
,
});
});
}
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