mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This removes direct file access from within flutter_tools in favor of using `package:file` via a `FileSystem` that's accessed via the `ApplicationContext`. This lays the groundwork for us to be able to easily swap out the underlying file system when running Flutter tools, which will be used to provide a record/replay file system, analogous to what we have for process invocations.
86 lines
3.6 KiB
Dart
86 lines
3.6 KiB
Dart
// Copyright 2016 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:flutter_tools/src/asset.dart';
|
|
import 'package:flutter_tools/src/build_info.dart';
|
|
import 'package:flutter_tools/src/devfs.dart';
|
|
import 'package:flutter_tools/src/base/file_system.dart';
|
|
import 'package:path/path.dart' as path;
|
|
import 'package:test/test.dart';
|
|
|
|
import 'src/common.dart';
|
|
import 'src/context.dart';
|
|
import 'src/mocks.dart';
|
|
|
|
void main() {
|
|
String filePath = 'bar/foo.txt';
|
|
String filePath2 = 'foo/bar.txt';
|
|
Directory tempDir;
|
|
String basePath;
|
|
MockDevFSOperations devFSOperations = new MockDevFSOperations();
|
|
DevFS devFS;
|
|
AssetBundle assetBundle = new AssetBundle();
|
|
assetBundle.entries.add(new AssetBundleEntry.fromString('a.txt', ''));
|
|
group('devfs', () {
|
|
testUsingContext('create local file system', () async {
|
|
tempDir = fs.systemTempDirectory.createTempSync();
|
|
basePath = tempDir.path;
|
|
File file = fs.file(path.join(basePath, filePath));
|
|
await file.parent.create(recursive: true);
|
|
file.writeAsBytesSync(<int>[1, 2, 3]);
|
|
});
|
|
testUsingContext('create dev file system', () async {
|
|
devFS = new DevFS.operations(devFSOperations, 'test', tempDir);
|
|
await devFS.create();
|
|
expect(devFSOperations.contains('create test'), isTrue);
|
|
});
|
|
testUsingContext('populate dev file system', () async {
|
|
await devFS.update();
|
|
expect(devFSOperations.contains('writeFile test bar/foo.txt'), isTrue);
|
|
});
|
|
testUsingContext('add new file to local file system', () async {
|
|
File file = fs.file(path.join(basePath, filePath2));
|
|
await file.parent.create(recursive: true);
|
|
file.writeAsBytesSync(<int>[1, 2, 3, 4, 5, 6, 7]);
|
|
await devFS.update();
|
|
expect(devFSOperations.contains('writeFile test foo/bar.txt'), isTrue);
|
|
});
|
|
testUsingContext('modify existing file on local file system', () async {
|
|
File file = fs.file(path.join(basePath, filePath));
|
|
// Set the last modified time to 5 seconds in the past.
|
|
updateFileModificationTime(file.path, new DateTime.now(), -5);
|
|
await devFS.update();
|
|
await file.writeAsBytes(<int>[1, 2, 3, 4, 5, 6]);
|
|
await devFS.update();
|
|
expect(devFSOperations.contains('writeFile test bar/foo.txt'), isTrue);
|
|
});
|
|
testUsingContext('delete a file from the local file system', () async {
|
|
File file = fs.file(path.join(basePath, filePath));
|
|
await file.delete();
|
|
await devFS.update();
|
|
expect(devFSOperations.contains('deleteFile test bar/foo.txt'), isTrue);
|
|
});
|
|
testUsingContext('add file in an asset bundle', () async {
|
|
await devFS.update(bundle: assetBundle, bundleDirty: true);
|
|
expect(devFSOperations.contains(
|
|
'writeFile test ${getAssetBuildDirectory()}/a.txt'), isTrue);
|
|
});
|
|
testUsingContext('add a file to the asset bundle', () async {
|
|
assetBundle.entries.add(new AssetBundleEntry.fromString('b.txt', ''));
|
|
await devFS.update(bundle: assetBundle, bundleDirty: true);
|
|
expect(devFSOperations.contains(
|
|
'writeFile test ${getAssetBuildDirectory()}/b.txt'), isTrue);
|
|
});
|
|
testUsingContext('delete a file from the asset bundle', () async {
|
|
assetBundle.entries.clear();
|
|
await devFS.update(bundle: assetBundle, bundleDirty: true);
|
|
expect(devFSOperations.contains(
|
|
'deleteFile test ${getAssetBuildDirectory()}/b.txt'), isTrue);
|
|
});
|
|
testUsingContext('delete dev file system', () async {
|
|
await devFS.destroy();
|
|
});
|
|
});
|
|
}
|