Commit f16dea29 authored by Alexandre Ardhuin's avatar Alexandre Ardhuin Committed by Adam Barth

prefer const contructors in packages/flutter_driver (#8056)

parent b246c5e7
...@@ -11,7 +11,7 @@ import 'package:file/memory.dart'; ...@@ -11,7 +11,7 @@ import 'package:file/memory.dart';
/// The file system implementation used by this library. /// The file system implementation used by this library.
/// ///
/// See [useMemoryFileSystemForTesting] and [restoreFileSystem]. /// See [useMemoryFileSystemForTesting] and [restoreFileSystem].
FileSystem fs = new LocalFileSystem(); FileSystem fs = const LocalFileSystem();
/// Overrides the file system so it can be tested without hitting the hard /// Overrides the file system so it can be tested without hitting the hard
/// drive. /// drive.
...@@ -21,7 +21,7 @@ void useMemoryFileSystemForTesting() { ...@@ -21,7 +21,7 @@ void useMemoryFileSystemForTesting() {
/// Restores the file system to the default local file system implementation. /// Restores the file system to the default local file system implementation.
void restoreFileSystem() { void restoreFileSystem() {
fs = new LocalFileSystem(); fs = const LocalFileSystem();
} }
/// Flutter Driver test ouputs directory. /// Flutter Driver test ouputs directory.
......
...@@ -157,7 +157,7 @@ class FlutterDriver { ...@@ -157,7 +157,7 @@ class FlutterDriver {
isolate.pauseEvent is! VMPauseExceptionEvent && isolate.pauseEvent is! VMPauseExceptionEvent &&
isolate.pauseEvent is! VMPauseInterruptedEvent && isolate.pauseEvent is! VMPauseInterruptedEvent &&
isolate.pauseEvent is! VMResumeEvent) { isolate.pauseEvent is! VMResumeEvent) {
await new Future<Null>.delayed(new Duration(milliseconds: 300)); await new Future<Null>.delayed(const Duration(milliseconds: 300));
isolate = await vm.isolates.first.loadRunnable(); isolate = await vm.isolates.first.loadRunnable();
} }
......
...@@ -12,7 +12,7 @@ import 'package:path/path.dart' as path; ...@@ -12,7 +12,7 @@ import 'package:path/path.dart' as path;
import 'common.dart'; import 'common.dart';
import 'timeline.dart'; import 'timeline.dart';
final JsonEncoder _prettyEncoder = new JsonEncoder.withIndent(' '); final JsonEncoder _prettyEncoder = const JsonEncoder.withIndent(' ');
/// The maximum amount of time considered safe to spend for a frame's build /// The maximum amount of time considered safe to spend for a frame's build
/// phase. Anything past that is in the danger of missing the frame as 60FPS. /// phase. Anything past that is in the danger of missing the frame as 60FPS.
......
...@@ -120,7 +120,7 @@ void main() { ...@@ -120,7 +120,7 @@ void main() {
group('ByValueKey', () { group('ByValueKey', () {
test('restricts value types', () async { test('restricts value types', () async {
expect(() => find.byValueKey(null), expect(() => find.byValueKey(null),
throwsA(new isInstanceOf<DriverError>())); throwsA(const isInstanceOf<DriverError>()));
}); });
test('finds by ValueKey', () async { test('finds by ValueKey', () async {
...@@ -140,7 +140,7 @@ void main() { ...@@ -140,7 +140,7 @@ void main() {
group('tap', () { group('tap', () {
test('requires a target reference', () async { test('requires a target reference', () async {
expect(driver.tap(null), throwsA(new isInstanceOf<DriverError>())); expect(driver.tap(null), throwsA(const isInstanceOf<DriverError>()));
}); });
test('sends the tap command', () async { test('sends the tap command', () async {
...@@ -159,7 +159,7 @@ void main() { ...@@ -159,7 +159,7 @@ void main() {
group('getText', () { group('getText', () {
test('requires a target reference', () async { test('requires a target reference', () async {
expect(driver.getText(null), throwsA(new isInstanceOf<DriverError>())); expect(driver.getText(null), throwsA(const isInstanceOf<DriverError>()));
}); });
test('sends the getText command', () async { test('sends the getText command', () async {
...@@ -182,7 +182,7 @@ void main() { ...@@ -182,7 +182,7 @@ void main() {
group('waitFor', () { group('waitFor', () {
test('requires a target reference', () async { test('requires a target reference', () async {
expect(driver.waitFor(null), throwsA(new isInstanceOf<DriverError>())); expect(driver.waitFor(null), throwsA(const isInstanceOf<DriverError>()));
}); });
test('sends the waitFor command', () async { test('sends the waitFor command', () async {
...@@ -195,7 +195,7 @@ void main() { ...@@ -195,7 +195,7 @@ void main() {
}); });
return makeMockResponse(<String, dynamic>{}); return makeMockResponse(<String, dynamic>{});
}); });
await driver.waitFor(find.byTooltip('foo'), timeout: new Duration(seconds: 1)); await driver.waitFor(find.byTooltip('foo'), timeout: const Duration(seconds: 1));
}); });
}); });
...@@ -289,7 +289,7 @@ void main() { ...@@ -289,7 +289,7 @@ void main() {
return new Completer<Map<String, dynamic>>().future; return new Completer<Map<String, dynamic>>().future;
}); });
try { try {
await driver.waitFor(find.byTooltip('foo'), timeout: new Duration(milliseconds: 100)); await driver.waitFor(find.byTooltip('foo'), timeout: const Duration(milliseconds: 100));
fail('expected an exception'); fail('expected an exception');
} catch(error) { } catch(error) {
expect(error is DriverError, isTrue); expect(error is DriverError, isTrue);
......
...@@ -38,13 +38,13 @@ void main() { ...@@ -38,13 +38,13 @@ void main() {
return retryCount; return retryCount;
} }
}, },
new Duration(milliseconds: 30), const Duration(milliseconds: 30),
new Duration(milliseconds: 10) const Duration(milliseconds: 10)
), ),
completion(2) completion(2)
); );
fakeAsync.elapse(new Duration(milliseconds: 50)); fakeAsync.elapse(const Duration(milliseconds: 50));
// Check that we didn't retry more times than necessary // Check that we didn't retry more times than necessary
expect(retryCount, 2); expect(retryCount, 2);
...@@ -60,14 +60,14 @@ void main() { ...@@ -60,14 +60,14 @@ void main() {
// that `retry` keeps trying until the counter reaches 2. // that `retry` keeps trying until the counter reaches 2.
retry( retry(
() async => retryCount++, () async => retryCount++,
new Duration(milliseconds: 30), const Duration(milliseconds: 30),
new Duration(milliseconds: 10), const Duration(milliseconds: 10),
predicate: (int value) => value == 2 predicate: (int value) => value == 2
), ),
completion(2) completion(2)
); );
fakeAsync.elapse(new Duration(milliseconds: 50)); fakeAsync.elapse(const Duration(milliseconds: 50));
}); });
}); });
...@@ -83,15 +83,15 @@ void main() { ...@@ -83,15 +83,15 @@ void main() {
retryCount++; retryCount++;
throw 'error'; throw 'error';
}, },
new Duration(milliseconds: 7), const Duration(milliseconds: 7),
new Duration(milliseconds: 2) const Duration(milliseconds: 2)
).catchError((dynamic error, dynamic stackTrace) { ).catchError((dynamic error, dynamic stackTrace) {
timedOut = true; timedOut = true;
lastError = error; lastError = error;
lastStackTrace = stackTrace; lastStackTrace = stackTrace;
}); });
fakeAsync.elapse(new Duration(milliseconds: 10)); fakeAsync.elapse(const Duration(milliseconds: 10));
expect(timedOut, isTrue); expect(timedOut, isTrue);
expect(lastError, 'error'); expect(lastError, 'error');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment