| // 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 'error.dart'; |
| import 'message.dart'; |
| |
| const List<Type> _supportedKeyValueTypes = const <Type>[String, int]; |
| |
| /// Command to find an element by a value key. |
| class FindByValueKey extends Command { |
| final String kind = 'find_by_value_key'; |
| |
| FindByValueKey(dynamic keyValue) |
| : this.keyValue = keyValue, |
| this.keyValueString = '$keyValue', |
| this.keyValueType = '${keyValue.runtimeType}' { |
| if (!_supportedKeyValueTypes.contains(keyValue.runtimeType)) |
| _throwInvalidKeyValueType('$keyValue.runtimeType'); |
| } |
| |
| /// 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; |
| |
| Map<String, dynamic> toJson() => { |
| 'keyValueString': keyValueString, |
| 'keyValueType': keyValueType, |
| }; |
| |
| static FindByValueKey fromJson(Map<String, dynamic> json) { |
| String keyValueString = json['keyValueString']; |
| String keyValueType = json['keyValueType']; |
| switch(keyValueType) { |
| case 'int': |
| return new FindByValueKey(int.parse(keyValueString)); |
| case 'String': |
| return new FindByValueKey(keyValueString); |
| default: |
| return _throwInvalidKeyValueType(keyValueType); |
| } |
| } |
| |
| static _throwInvalidKeyValueType(String invalidType) { |
| throw new DriverError('Unsupported key value type $invalidType. Flutter Driver only supports ${_supportedKeyValueTypes.join(", ")}'); |
| } |
| } |
| |
| /// Command to read the text from a given element. |
| class GetText extends CommandWithTarget { |
| final String kind = 'get_text'; |
| |
| static GetText fromJson(Map<String, dynamic> json) { |
| return new GetText(new ObjectRef(json['targetRef'])); |
| } |
| |
| /// [targetRef] identifies an element that contains a piece of text. |
| GetText(ObjectRef targetRef) : super(targetRef); |
| |
| Map<String, dynamic> toJson() => super.toJson(); |
| } |
| |
| class GetTextResult extends Result { |
| static GetTextResult fromJson(Map<String, dynamic> json) { |
| return new GetTextResult(json['text']); |
| } |
| |
| GetTextResult(this.text); |
| |
| final String text; |
| |
| Map<String, dynamic> toJson() => { |
| 'text': text, |
| }; |
| } |