find.dart 14.5 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
import 'dart:convert';

7 8
import 'package:meta/meta.dart';

9
import 'deserialization_factory.dart';
10 11 12
import 'error.dart';
import 'message.dart';

13
const List<Type> _supportedKeyValueTypes = <Type>[String, int];
14

15
DriverError _createInvalidKeyValueTypeError(String invalidType) {
16
  return DriverError('Unsupported key value type $invalidType. Flutter Driver only supports ${_supportedKeyValueTypes.join(", ")}');
17 18
}

19
/// A Flutter Driver command aimed at an object to be located by [finder].
20 21 22 23 24
///
/// Implementations must provide a concrete [kind]. If additional data is
/// required beyond the [finder] the implementation may override [serialize]
/// and add more keys to the returned map.
abstract class CommandWithTarget extends Command {
25
  /// Constructs this command given a [finder].
26
  CommandWithTarget(this.finder, {Duration? timeout}) : super(timeout: timeout) {
27
    assert(finder != null, '$runtimeType target cannot be null');
28 29
  }

30
  /// Deserializes this command from the value generated by [serialize].
31 32
  CommandWithTarget.deserialize(Map<String, String> json, DeserializeFinderFactory finderFactory)
    : finder = finderFactory.deserializeFinder(json),
33
      super.deserialize(json);
34

35 36 37 38 39 40 41 42 43 44 45
  /// Locates the object or objects targeted by this command.
  final SerializableFinder finder;

  /// This method is meant to be overridden if data in addition to [finder]
  /// is serialized to JSON.
  ///
  /// Example:
  ///
  ///     Map<String, String> toJson() => super.toJson()..addAll({
  ///       'foo': this.foo,
  ///     });
46
  @override
47 48
  Map<String, String> serialize() =>
      super.serialize()..addAll(finder.serialize());
49 50
}

51
/// A Flutter Driver command that waits until [finder] can locate the target.
52
class WaitFor extends CommandWithTarget {
53 54 55
  /// Creates a command that waits for the widget identified by [finder] to
  /// appear within the [timeout] amount of time.
  ///
56
  /// If [timeout] is not specified, the command defaults to no timeout.
57
  WaitFor(SerializableFinder finder, {Duration? timeout})
58
    : super(finder, timeout: timeout);
59

60
  /// Deserializes this command from the value generated by [serialize].
61
  WaitFor.deserialize(Map<String, String> json, DeserializeFinderFactory finderFactory) : super.deserialize(json, finderFactory);
62 63

  @override
64
  String get kind => 'waitFor';
65
}
66

67 68
/// The result of a [WaitFor] command.
class WaitForResult extends Result {
69 70 71
  /// Creates a [WaitForResult].
  const WaitForResult();

72 73
  /// Deserializes the result from JSON.
  static WaitForResult fromJson(Map<String, dynamic> json) {
74
    return const WaitForResult();
75 76
  }

77
  @override
78 79
  Map<String, dynamic> toJson() => <String, dynamic>{};
}
80

81 82
/// A Flutter Driver command that waits until [finder] can no longer locate the target.
class WaitForAbsent extends CommandWithTarget {
83 84 85
  /// Creates a command that waits for the widget identified by [finder] to
  /// disappear within the [timeout] amount of time.
  ///
86
  /// If [timeout] is not specified, the command defaults to no timeout.
87
  WaitForAbsent(SerializableFinder finder, {Duration? timeout})
88
    : super(finder, timeout: timeout);
89

90
  /// Deserializes this command from the value generated by [serialize].
91
  WaitForAbsent.deserialize(Map<String, String> json, DeserializeFinderFactory finderFactory) : super.deserialize(json, finderFactory);
92

93
  @override
94
  String get kind => 'waitForAbsent';
95 96
}

97 98
/// The result of a [WaitForAbsent] command.
class WaitForAbsentResult extends Result {
99 100 101
  /// Creates a [WaitForAbsentResult].
  const WaitForAbsentResult();

102 103
  /// Deserializes the result from JSON.
  static WaitForAbsentResult fromJson(Map<String, dynamic> json) {
104
    return const WaitForAbsentResult();
105 106 107 108 109 110
  }

  @override
  Map<String, dynamic> toJson() => <String, dynamic>{};
}

111 112
/// Base class for Flutter Driver finders, objects that describe how the driver
/// should search for elements.
113
abstract class SerializableFinder {
114 115 116 117

  /// A const constructor to allow subclasses to be const.
  const SerializableFinder();

118
  /// Identifies the type of finder to be used by the driver extension.
119
  String get finderType;
120

121 122 123 124 125 126 127 128
  /// Serializes common fields to JSON.
  ///
  /// Methods that override [serialize] are expected to call `super.serialize`
  /// and add more fields to the returned [Map].
  @mustCallSuper
  Map<String, String> serialize() => <String, String>{
    'finderType': finderType,
  };
129 130
}

131
/// A Flutter Driver finder that finds widgets by tooltip text.
132
class ByTooltipMessage extends SerializableFinder {
133
  /// Creates a tooltip finder given the tooltip's message [text].
134
  const ByTooltipMessage(this.text);
135 136 137 138

  /// Tooltip message text.
  final String text;

139
  @override
140
  String get finderType => 'ByTooltipMessage';
141

142
  @override
pq's avatar
pq committed
143
  Map<String, String> serialize() => super.serialize()..addAll(<String, String>{
144 145 146
    'text': text,
  });

147
  /// Deserializes the finder from JSON generated by [serialize].
148
  static ByTooltipMessage deserialize(Map<String, String> json) {
149
    return ByTooltipMessage(json['text']!);
150 151 152
  }
}

153 154 155 156 157 158
/// A Flutter Driver finder that finds widgets by semantic label.
///
/// If the [label] property is a [String], the finder will try to find an exact
/// match. If it is a [RegExp], it will return true for [RegExp.hasMatch].
class BySemanticsLabel extends SerializableFinder {
  /// Creates a semantic label finder given the [label].
159
  const BySemanticsLabel(this.label);
160

161
  /// A [Pattern] matching the label of a [SemanticsNode].
162 163 164 165 166
  ///
  /// If this is a [String], it will be treated as an exact match.
  final Pattern label;

  @override
167
  String get finderType => 'BySemanticsLabel';
168 169 170 171

  @override
  Map<String, String> serialize() {
    if (label is RegExp) {
172
      final RegExp regExp = label as RegExp;
173 174 175 176 177 178
      return super.serialize()..addAll(<String, String>{
        'label': regExp.pattern,
        'isRegExp': 'true',
      });
    } else {
      return super.serialize()..addAll(<String, String>{
179
        'label': label as String,
180 181 182 183 184 185 186
      });
    }
  }

  /// Deserializes the finder from JSON generated by [serialize].
  static BySemanticsLabel deserialize(Map<String, String> json) {
    final bool isRegExp = json['isRegExp'] == 'true';
187
    return BySemanticsLabel(isRegExp ? RegExp(json['label']!) : json['label']!);
188 189 190
  }
}

191 192
/// A Flutter Driver finder that finds widgets by [text] inside a [Text] or
/// [EditableText] widget.
193
class ByText extends SerializableFinder {
194
  /// Creates a text finder given the text.
195
  const ByText(this.text);
196

197
  /// The text that appears inside the [Text] or [EditableText] widget.
198 199
  final String text;

200
  @override
201
  String get finderType => 'ByText';
202

203
  @override
pq's avatar
pq committed
204
  Map<String, String> serialize() => super.serialize()..addAll(<String, String>{
205 206 207
    'text': text,
  });

208
  /// Deserializes the finder from JSON generated by [serialize].
209
  static ByText deserialize(Map<String, String> json) {
210
    return ByText(json['text']!);
211 212 213
  }
}

214
/// A Flutter Driver finder that finds widgets by `ValueKey`.
215
class ByValueKey extends SerializableFinder {
216
  /// Creates a finder given the key value.
217
  ByValueKey(this.keyValue)
218 219
      : keyValueString = '$keyValue',
        keyValueType = '${keyValue.runtimeType}' {
220
    if (!_supportedKeyValueTypes.contains(keyValue.runtimeType))
221
      throw _createInvalidKeyValueTypeError('$keyValue.runtimeType');
222 223 224 225 226 227 228 229 230 231 232 233 234
  }

  /// The true value of the key.
  final dynamic keyValue;

  /// Stringified value of the key (we can only send strings to the VM service)
  final String keyValueString;

  /// The type name of the key.
  ///
  /// May be one of "String", "int". The list of supported types may change.
  final String keyValueType;

235
  @override
236
  String get finderType => 'ByValueKey';
237

238
  @override
pq's avatar
pq committed
239
  Map<String, String> serialize() => super.serialize()..addAll(<String, String>{
240 241
    'keyValueString': keyValueString,
    'keyValueType': keyValueType,
242
  });
243

244
  /// Deserializes the finder from JSON generated by [serialize].
245
  static ByValueKey deserialize(Map<String, String> json) {
246 247
    final String keyValueString = json['keyValueString']!;
    final String keyValueType = json['keyValueType']!;
248
    switch (keyValueType) {
249
      case 'int':
250
        return ByValueKey(int.parse(keyValueString));
251
      case 'String':
252
        return ByValueKey(keyValueString);
253
      default:
254
        throw _createInvalidKeyValueTypeError(keyValueType);
255 256 257 258
    }
  }
}

259
/// A Flutter Driver finder that finds widgets by their [runtimeType].
260 261
class ByType extends SerializableFinder {
  /// Creates a finder that given the runtime type in string form.
262
  const ByType(this.type);
263 264 265 266

  /// The widget's [runtimeType], in string form.
  final String type;

267
  @override
268
  String get finderType => 'ByType';
269

270 271 272 273 274 275 276
  @override
  Map<String, String> serialize() => super.serialize()..addAll(<String, String>{
    'type': type,
  });

  /// Deserializes the finder from JSON generated by [serialize].
  static ByType deserialize(Map<String, String> json) {
277
    return ByType(json['type']!);
278 279
  }
}
280

281 282 283 284 285 286 287
/// A Flutter Driver finder that finds the back button on the page's Material
/// or Cupertino scaffold.
///
/// See also:
///
///  * [WidgetTester.pageBack], for a similar functionality in widget tests.
class PageBack extends SerializableFinder {
288 289 290
  /// Creates a [PageBack].
  const PageBack();

291 292 293 294
  @override
  String get finderType => 'PageBack';
}

295 296 297 298 299 300 301 302
/// A Flutter Driver finder that finds a descendant of [of] that matches
/// [matching].
///
/// If the `matchRoot` argument is true, then the widget specified by [of] will
/// be considered for a match. The argument defaults to false.
class Descendant extends SerializableFinder {
  /// Creates a descendant finder.
  const Descendant({
303 304
    required this.of,
    required this.matching,
305
    this.matchRoot = false,
306
    this.firstMatchOnly = false,
307 308 309 310 311 312 313 314 315 316 317
  });

  /// The finder specifying the widget of which the descendant is to be found.
  final SerializableFinder of;

  /// Only a descendant of [of] matching this finder will be found.
  final SerializableFinder matching;

  /// Whether the widget matching [of] will be considered for a match.
  final bool matchRoot;

318 319 320
  /// If true then only the first descendant matching `matching` will be returned.
  final bool firstMatchOnly;

321 322 323 324 325 326 327
  @override
  String get finderType => 'Descendant';

  @override
  Map<String, String> serialize() {
    return super.serialize()
        ..addAll(<String, String>{
328 329
          'of': jsonEncode(of.serialize()),
          'matching': jsonEncode(matching.serialize()),
330
          'matchRoot': matchRoot ? 'true' : 'false',
331
          'firstMatchOnly': firstMatchOnly ? 'true' : 'false',
332 333 334 335
        });
  }

  /// Deserializes the finder from JSON generated by [serialize].
336
  static Descendant deserialize(Map<String, String> json, DeserializeFinderFactory finderFactory) {
337
    final Map<String, String> jsonOfMatcher =
338
        Map<String, String>.from(jsonDecode(json['of']!) as Map<String, dynamic>);
339
    final Map<String, String> jsonMatchingMatcher =
340
        Map<String, String>.from(jsonDecode(json['matching']!) as Map<String, dynamic>);
341
    return Descendant(
342 343
      of: finderFactory.deserializeFinder(jsonOfMatcher),
      matching: finderFactory.deserializeFinder(jsonMatchingMatcher),
344 345
      matchRoot: json['matchRoot'] == 'true',
      firstMatchOnly: json['firstMatchOnly'] == 'true',
346 347 348 349 350 351 352 353 354 355 356 357
    );
  }
}

/// A Flutter Driver finder that finds an ancestor of [of] that matches
/// [matching].
///
/// If the `matchRoot` argument is true, then the widget specified by [of] will
/// be considered for a match. The argument defaults to false.
class Ancestor extends SerializableFinder {
  /// Creates an ancestor finder.
  const Ancestor({
358 359
    required this.of,
    required this.matching,
360
    this.matchRoot = false,
361
    this.firstMatchOnly = false,
362 363 364 365 366 367 368 369 370 371 372
  });

  /// The finder specifying the widget of which the ancestor is to be found.
  final SerializableFinder of;

  /// Only an ancestor of [of] matching this finder will be found.
  final SerializableFinder matching;

  /// Whether the widget matching [of] will be considered for a match.
  final bool matchRoot;

373 374 375
  /// If true then only the first ancestor matching `matching` will be returned.
  final bool firstMatchOnly;

376 377 378 379 380 381 382
  @override
  String get finderType => 'Ancestor';

  @override
  Map<String, String> serialize() {
    return super.serialize()
      ..addAll(<String, String>{
383 384
        'of': jsonEncode(of.serialize()),
        'matching': jsonEncode(matching.serialize()),
385
        'matchRoot': matchRoot ? 'true' : 'false',
386
        'firstMatchOnly': firstMatchOnly ? 'true' : 'false',
387 388 389 390
      });
  }

  /// Deserializes the finder from JSON generated by [serialize].
391
  static Ancestor deserialize(Map<String, String> json, DeserializeFinderFactory finderFactory) {
392
    final Map<String, String> jsonOfMatcher =
393
        Map<String, String>.from(jsonDecode(json['of']!) as Map<String, dynamic>);
394
    final Map<String, String> jsonMatchingMatcher =
395
        Map<String, String>.from(jsonDecode(json['matching']!) as Map<String, dynamic>);
396
    return Ancestor(
397 398
      of: finderFactory.deserializeFinder(jsonOfMatcher),
      matching: finderFactory.deserializeFinder(jsonMatchingMatcher),
399 400
      matchRoot: json['matchRoot'] == 'true',
      firstMatchOnly: json['firstMatchOnly'] == 'true',
401 402 403 404
    );
  }
}

405 406 407 408 409 410
/// A Flutter driver command that retrieves a semantics id using a specified finder.
///
/// This command requires assertions to be enabled on the device.
///
/// If the object returned by the finder does not have its own semantics node,
/// then the semantics node of the first ancestor is returned instead.
411
///
412 413 414 415 416 417 418 419
/// Throws an error if a finder returns multiple objects or if there are no
/// semantics nodes.
///
/// Semantics must be enabled to use this method, either using a platform
/// specific shell command or [FlutterDriver.setSemantics].
class GetSemanticsId extends CommandWithTarget {

  /// Creates a command which finds a Widget and then looks up the semantic id.
420
  GetSemanticsId(SerializableFinder finder, {Duration? timeout}) : super(finder, timeout: timeout);
421

422
  /// Creates a command from a JSON map.
423 424
  GetSemanticsId.deserialize(Map<String, String> json, DeserializeFinderFactory finderFactory)
    : super.deserialize(json, finderFactory);
425 426 427 428 429 430 431 432 433

  @override
  String get kind => 'get_semantics_id';
}

/// The result of a [GetSemanticsId] command.
class GetSemanticsIdResult extends Result {

  /// Creates a new [GetSemanticsId] result.
434
  const GetSemanticsIdResult(this.id);
435

436
  /// The semantics id of the node.
437 438 439 440
  final int id;

  /// Deserializes this result from JSON.
  static GetSemanticsIdResult fromJson(Map<String, dynamic> json) {
441
    return GetSemanticsIdResult(json['id'] as int);
442 443 444 445 446
  }

  @override
  Map<String, dynamic> toJson() => <String, dynamic>{'id': id};
}