// 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 'dart:async'; import 'package:flutter/gestures.dart'; import 'package:flutter/material.dart'; import 'package:flutter/scheduler.dart'; import 'package:flutter/widgets.dart'; import 'package:flutter_test/flutter_test.dart'; import 'error.dart'; import 'find.dart'; import 'gesture.dart'; import 'health.dart'; import 'input.dart'; import 'message.dart'; const String _extensionMethodName = 'driver'; const String _extensionMethod = 'ext.flutter.$_extensionMethodName'; const Duration _kDefaultTimeout = const Duration(seconds: 5); class _DriverBinding extends WidgetsFlutterBinding { // TODO(ianh): refactor so we're not extending a concrete binding @override void initServiceExtensions() { super.initServiceExtensions(); FlutterDriverExtension extension = new FlutterDriverExtension(); registerServiceExtension( name: _extensionMethodName, callback: extension.call ); } } /// Enables Flutter Driver VM service extension. /// /// This extension is required for tests that use `package:flutter_driver` to /// drive applications from a separate process. /// /// Call this function prior to running your application, e.g. before you call /// `runApp`. void enableFlutterDriverExtension() { assert(WidgetsBinding.instance == null); new _DriverBinding(); assert(WidgetsBinding.instance is _DriverBinding); } /// Handles a command and returns a result. typedef Future<Result> CommandHandlerCallback(Command c); /// Deserializes JSON map to a command object. typedef Command CommandDeserializerCallback(Map<String, String> params); /// Runs the finder and returns the [Element] found, or `null`. typedef Finder FinderConstructor(SerializableFinder finder); class FlutterDriverExtension { static final Logger _log = new Logger('FlutterDriverExtension'); FlutterDriverExtension() { _commandHandlers.addAll(<String, CommandHandlerCallback>{ 'get_health': getHealth, 'tap': tap, 'get_text': getText, 'scroll': scroll, 'scrollIntoView': scrollIntoView, 'setInputText': _setInputText, 'submitInputText': _submitInputText, 'waitFor': waitFor, }); _commandDeserializers.addAll(<String, CommandDeserializerCallback>{ 'get_health': GetHealth.deserialize, 'tap': Tap.deserialize, 'get_text': GetText.deserialize, 'scroll': Scroll.deserialize, 'scrollIntoView': ScrollIntoView.deserialize, 'setInputText': SetInputText.deserialize, 'submitInputText': SubmitInputText.deserialize, 'waitFor': WaitFor.deserialize, }); _finders.addAll(<String, FinderConstructor>{ 'ByText': _createByTextFinder, 'ByTooltipMessage': _createByTooltipMessageFinder, 'ByValueKey': _createByValueKeyFinder, }); } final WidgetController prober = new WidgetController(WidgetsBinding.instance); final Map<String, CommandHandlerCallback> _commandHandlers = <String, CommandHandlerCallback>{}; final Map<String, CommandDeserializerCallback> _commandDeserializers = <String, CommandDeserializerCallback>{}; final Map<String, FinderConstructor> _finders = <String, FinderConstructor>{}; Future<Map<String, dynamic>> call(Map<String, String> params) async { try { String commandKind = params['command']; CommandHandlerCallback commandHandler = _commandHandlers[commandKind]; CommandDeserializerCallback commandDeserializer = _commandDeserializers[commandKind]; if (commandHandler == null || commandDeserializer == null) throw 'Extension $_extensionMethod does not support command $commandKind'; Command command = commandDeserializer(params); return (await commandHandler(command)).toJson(); } catch (error, stackTrace) { _log.error('Uncaught extension error: $error\n$stackTrace'); rethrow; } } Stream<Duration> _onFrameReadyStream; Stream<Duration> get _onFrameReady { if (_onFrameReadyStream == null) { // Lazy-initialize the frame callback because the renderer is not yet // available at the time the extension is registered. StreamController<Duration> frameReadyController = new StreamController<Duration>.broadcast(sync: true); SchedulerBinding.instance.addPersistentFrameCallback((Duration timestamp) { frameReadyController.add(timestamp); }); _onFrameReadyStream = frameReadyController.stream; } return _onFrameReadyStream; } Future<Health> getHealth(GetHealth command) async => new Health(HealthStatus.ok); /// Runs `finder` repeatedly until it finds one or more [Element]s, or times out. /// /// The timeout is five seconds. Future<Finder> _waitForElement(Finder finder) { // Short-circuit if the element is already on the UI if (finder.precache()) return new Future<Finder>.value(finder); // No element yet, so we retry on frames rendered in the future. Completer<Finder> completer = new Completer<Finder>(); StreamSubscription<Duration> subscription; Timer timeout = new Timer(_kDefaultTimeout, () { subscription.cancel(); completer.completeError('Timed out waiting for ${finder.description}'); }); subscription = _onFrameReady.listen((Duration duration) { if (finder.precache()) { subscription.cancel(); timeout.cancel(); completer.complete(finder); } }); return completer.future; } Finder _createByTextFinder(ByText arguments) { return find.text(arguments.text); } Finder _createByTooltipMessageFinder(ByTooltipMessage arguments) { return find.byElementPredicate((Element element) { Widget widget = element.widget; if (widget is Tooltip) return widget.message == arguments.text; return false; }); } Finder _createByValueKeyFinder(ByValueKey arguments) { return find.byKey(new ValueKey<dynamic>(arguments.keyValue)); } Finder _createFinder(SerializableFinder finder) { FinderConstructor constructor = _finders[finder.finderType]; if (constructor == null) throw 'Unsupported finder type: ${finder.finderType}'; return constructor(finder); } Future<TapResult> tap(Tap command) async { prober.tap(await _waitForElement(_createFinder(command.finder))); return new TapResult(); } Future<WaitForResult> waitFor(WaitFor command) async { if ((await _waitForElement(_createFinder(command.finder))).evaluate().isNotEmpty) return new WaitForResult(); else return null; } Future<ScrollResult> scroll(Scroll command) async { Finder target = await _waitForElement(_createFinder(command.finder)); final int totalMoves = command.duration.inMicroseconds * command.frequency ~/ Duration.MICROSECONDS_PER_SECOND; Offset delta = new Offset(command.dx, command.dy) / totalMoves.toDouble(); Duration pause = command.duration ~/ totalMoves; Point startLocation = prober.getCenter(target); Point currentLocation = startLocation; TestPointer pointer = new TestPointer(1); HitTestResult hitTest = new HitTestResult(); prober.binding.hitTest(hitTest, startLocation); prober.binding.dispatchEvent(pointer.down(startLocation), hitTest); await new Future<Null>.value(); // so that down and move don't happen in the same microtask for (int moves = 0; moves < totalMoves; moves++) { currentLocation = currentLocation + delta; prober.binding.dispatchEvent(pointer.move(currentLocation), hitTest); await new Future<Null>.delayed(pause); } prober.binding.dispatchEvent(pointer.up(), hitTest); return new ScrollResult(); } Future<ScrollResult> scrollIntoView(ScrollIntoView command) async { Finder target = await _waitForElement(_createFinder(command.finder)); await Scrollable.ensureVisible(target.evaluate().single); return new ScrollResult(); } Future<SetInputTextResult> _setInputText(SetInputText command) async { Finder target = await _waitForElement(_createFinder(command.finder)); Input input = target.evaluate().single.widget; input.onChanged(new InputValue(text: command.text)); return new SetInputTextResult(); } Future<SubmitInputTextResult> _submitInputText(SubmitInputText command) async { Finder target = await _waitForElement(_createFinder(command.finder)); Input input = target.evaluate().single.widget; input.onSubmitted(input.value); return new SubmitInputTextResult(input.value.text); } Future<GetTextResult> getText(GetText command) async { Finder target = await _waitForElement(_createFinder(command.finder)); // TODO(yjbanov): support more ways to read text Text text = target.evaluate().single.widget; return new GetTextResult(text.data); } }