Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
e9934192
Unverified
Commit
e9934192
authored
Sep 13, 2022
by
Zachary Anderson
Committed by
GitHub
Sep 13, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Migrate android_semantics_testing to null safety (#111420)" (#111429)
This reverts commit
0df0e2ea
.
parent
257e31ec
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
80 additions
and
81 deletions
+80
-81
main.dart
...integration_tests/android_semantics_testing/lib/main.dart
+6
-6
common.dart
...ation_tests/android_semantics_testing/lib/src/common.dart
+10
-11
constants.dart
...on_tests/android_semantics_testing/lib/src/constants.dart
+2
-2
matcher.dart
...tion_tests/android_semantics_testing/lib/src/matcher.dart
+42
-42
controls_page.dart
...ndroid_semantics_testing/lib/src/tests/controls_page.dart
+5
-5
headings_page.dart
...ndroid_semantics_testing/lib/src/tests/headings_page.dart
+1
-1
popup_page.dart
...s/android_semantics_testing/lib/src/tests/popup_page.dart
+3
-3
text_field_page.dart
...roid_semantics_testing/lib/src/tests/text_field_page.dart
+1
-1
pubspec.yaml
dev/integration_tests/android_semantics_testing/pubspec.yaml
+1
-1
main_test.dart
...ests/android_semantics_testing/test_driver/main_test.dart
+9
-9
No files found.
dev/integration_tests/android_semantics_testing/lib/main.dart
View file @
e9934192
...
@@ -23,11 +23,11 @@ void main() {
...
@@ -23,11 +23,11 @@ void main() {
const
MethodChannel
kSemanticsChannel
=
MethodChannel
(
'semantics'
);
const
MethodChannel
kSemanticsChannel
=
MethodChannel
(
'semantics'
);
Future
<
String
>
dataHandler
(
String
?
message
)
async
{
Future
<
String
>
dataHandler
(
String
message
)
async
{
if
(
message
!=
null
&&
message
.
contains
(
'getSemanticsNode'
))
{
if
(
message
.
contains
(
'getSemanticsNode'
))
{
final
Completer
<
String
>
completer
=
Completer
<
String
>();
final
Completer
<
String
>
completer
=
Completer
<
String
>();
final
int
id
=
int
.
tryParse
(
message
.
split
(
'#'
)[
1
])
??
0
;
final
int
id
=
int
.
tryParse
(
message
.
split
(
'#'
)[
1
])
??
0
;
Future
<
void
>
completeSemantics
([
Object
?
_
])
async
{
Future
<
void
>
completeSemantics
([
Object
_
])
async
{
final
dynamic
result
=
await
kSemanticsChannel
.
invokeMethod
<
dynamic
>(
'getSemanticsNode'
,
<
String
,
dynamic
>{
final
dynamic
result
=
await
kSemanticsChannel
.
invokeMethod
<
dynamic
>(
'getSemanticsNode'
,
<
String
,
dynamic
>{
'id'
:
id
,
'id'
:
id
,
});
});
...
@@ -40,10 +40,10 @@ Future<String> dataHandler(String? message) async {
...
@@ -40,10 +40,10 @@ Future<String> dataHandler(String? message) async {
}
}
return
completer
.
future
;
return
completer
.
future
;
}
}
if
(
message
!=
null
&&
message
.
contains
(
'setClipboard'
))
{
if
(
message
.
contains
(
'setClipboard'
))
{
final
Completer
<
String
>
completer
=
Completer
<
String
>();
final
Completer
<
String
>
completer
=
Completer
<
String
>();
final
String
str
=
message
.
split
(
'#'
)[
1
];
final
String
str
=
message
.
split
(
'#'
)[
1
];
Future
<
void
>
completeSetClipboard
([
Object
?
_
])
async
{
Future
<
void
>
completeSetClipboard
([
Object
_
])
async
{
await
kSemanticsChannel
.
invokeMethod
<
dynamic
>(
'setClipboard'
,
<
String
,
dynamic
>{
await
kSemanticsChannel
.
invokeMethod
<
dynamic
>(
'setClipboard'
,
<
String
,
dynamic
>{
'message'
:
str
,
'message'
:
str
,
});
});
...
@@ -67,7 +67,7 @@ Map<String, WidgetBuilder> routes = <String, WidgetBuilder>{
...
@@ -67,7 +67,7 @@ Map<String, WidgetBuilder> routes = <String, WidgetBuilder>{
};
};
class
TestApp
extends
StatelessWidget
{
class
TestApp
extends
StatelessWidget
{
const
TestApp
({
super
.
key
}
);
const
TestApp
({
Key
key
})
:
super
(
key:
key
);
@override
@override
Widget
build
(
BuildContext
context
)
{
Widget
build
(
BuildContext
context
)
{
...
...
dev/integration_tests/android_semantics_testing/lib/src/common.dart
View file @
e9934192
...
@@ -2,8 +2,6 @@
...
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
// ignore_for_file: avoid_dynamic_calls
import
'dart:convert'
;
import
'dart:convert'
;
import
'package:meta/meta.dart'
;
import
'package:meta/meta.dart'
;
...
@@ -55,13 +53,13 @@ class AndroidSemanticsNode {
...
@@ -55,13 +53,13 @@ class AndroidSemanticsNode {
/// ]
/// ]
/// }
/// }
factory
AndroidSemanticsNode
.
deserialize
(
String
value
)
{
factory
AndroidSemanticsNode
.
deserialize
(
String
value
)
{
return
AndroidSemanticsNode
.
_
(
json
.
decode
(
value
));
return
AndroidSemanticsNode
.
_
(
json
.
decode
(
value
)
as
Map
<
String
,
Object
>
);
}
}
final
dynamic
_values
;
final
Map
<
String
,
Object
>
_values
;
final
List
<
AndroidSemanticsNode
>
_children
=
<
AndroidSemanticsNode
>[];
final
List
<
AndroidSemanticsNode
>
_children
=
<
AndroidSemanticsNode
>[];
dynamic
get
_flags
=>
_values
[
'flags'
]
;
Map
<
String
,
Object
>
get
_flags
=>
_values
[
'flags'
]
as
Map
<
String
,
Object
>
;
/// The text value of the semantics node.
/// The text value of the semantics node.
///
///
...
@@ -134,12 +132,13 @@ class AndroidSemanticsNode {
...
@@ -134,12 +132,13 @@ class AndroidSemanticsNode {
/// Gets a [Rect] which defines the position and size of the semantics node.
/// Gets a [Rect] which defines the position and size of the semantics node.
Rect
getRect
()
{
Rect
getRect
()
{
final
dynamic
rawRect
=
_values
[
'rect'
];
final
Map
<
String
,
Object
>
rawRect
=
_values
[
'rect'
]
as
Map
<
String
,
Object
>;
final
Map
<
String
,
int
>
rect
=
rawRect
.
cast
<
String
,
int
>();
return
Rect
.
fromLTRB
(
return
Rect
.
fromLTRB
(
(
rawRect
[
'left'
]!
as
int
)
.
toDouble
(),
rect
[
'left'
]
.
toDouble
(),
(
rawRect
[
'top'
]!
as
int
)
.
toDouble
(),
rect
[
'top'
]
.
toDouble
(),
(
rawRect
[
'right'
]!
as
int
)
.
toDouble
(),
rect
[
'right'
]
.
toDouble
(),
(
rawRect
[
'bottom'
]!
as
int
)
.
toDouble
(),
rect
[
'bottom'
]
.
toDouble
(),
);
);
}
}
...
@@ -151,7 +150,7 @@ class AndroidSemanticsNode {
...
@@ -151,7 +150,7 @@ class AndroidSemanticsNode {
/// Gets a list of [AndroidSemanticsActions] which are defined for the node.
/// Gets a list of [AndroidSemanticsActions] which are defined for the node.
List
<
AndroidSemanticsAction
>
getActions
()
=>
<
AndroidSemanticsAction
>[
List
<
AndroidSemanticsAction
>
getActions
()
=>
<
AndroidSemanticsAction
>[
for
(
final
int
id
in
(
_values
[
'actions'
]
!
as
List
<
dynamic
>).
cast
<
int
>())
AndroidSemanticsAction
.
deserialize
(
id
)!
,
for
(
final
int
id
in
(
_values
[
'actions'
]
as
List
<
dynamic
>).
cast
<
int
>())
AndroidSemanticsAction
.
deserialize
(
id
)
,
];
];
@override
@override
...
...
dev/integration_tests/android_semantics_testing/lib/src/constants.dart
View file @
e9934192
...
@@ -168,7 +168,7 @@ class AndroidSemanticsAction {
...
@@ -168,7 +168,7 @@ class AndroidSemanticsAction {
case
_kSetText:
case
_kSetText:
return
'AndroidSemanticsAction.setText'
;
return
'AndroidSemanticsAction.setText'
;
default
:
default
:
throw
UnimplementedError
()
;
return
null
;
}
}
}
}
...
@@ -211,7 +211,7 @@ class AndroidSemanticsAction {
...
@@ -211,7 +211,7 @@ class AndroidSemanticsAction {
/// Creates a new [AndroidSemanticsAction] from an integer `value`.
/// Creates a new [AndroidSemanticsAction] from an integer `value`.
///
///
/// Returns `null` if the id is not a known Android accessibility action.
/// Returns `null` if the id is not a known Android accessibility action.
static
AndroidSemanticsAction
?
deserialize
(
int
value
)
{
static
AndroidSemanticsAction
deserialize
(
int
value
)
{
return
_kActionById
[
value
];
return
_kActionById
[
value
];
}
}
}
}
dev/integration_tests/android_semantics_testing/lib/src/matcher.dart
View file @
e9934192
...
@@ -18,24 +18,24 @@ import 'constants.dart';
...
@@ -18,24 +18,24 @@ import 'constants.dart';
/// the Android accessibility bridge, and not the semantics object created by
/// the Android accessibility bridge, and not the semantics object created by
/// the Flutter framework.
/// the Flutter framework.
Matcher
hasAndroidSemantics
(
{
Matcher
hasAndroidSemantics
(
{
String
?
text
,
String
text
,
String
?
contentDescription
,
String
contentDescription
,
String
?
className
,
String
className
,
int
?
id
,
int
id
,
Rect
?
rect
,
Rect
rect
,
Size
?
size
,
Size
size
,
List
<
AndroidSemanticsAction
>
?
actions
,
List
<
AndroidSemanticsAction
>
actions
,
List
<
AndroidSemanticsAction
>
?
ignoredActions
,
List
<
AndroidSemanticsAction
>
ignoredActions
,
List
<
AndroidSemanticsNode
>
?
children
,
List
<
AndroidSemanticsNode
>
children
,
bool
?
isChecked
,
bool
isChecked
,
bool
?
isCheckable
,
bool
isCheckable
,
bool
?
isEditable
,
bool
isEditable
,
bool
?
isEnabled
,
bool
isEnabled
,
bool
?
isFocusable
,
bool
isFocusable
,
bool
?
isFocused
,
bool
isFocused
,
bool
?
isHeading
,
bool
isHeading
,
bool
?
isPassword
,
bool
isPassword
,
bool
?
isLongClickable
,
bool
isLongClickable
,
})
{
})
{
return
_AndroidSemanticsMatcher
(
return
_AndroidSemanticsMatcher
(
text:
text
,
text:
text
,
...
@@ -79,23 +79,23 @@ class _AndroidSemanticsMatcher extends Matcher {
...
@@ -79,23 +79,23 @@ class _AndroidSemanticsMatcher extends Matcher {
this
.
isLongClickable
,
this
.
isLongClickable
,
});
});
final
String
?
text
;
final
String
text
;
final
String
?
className
;
final
String
className
;
final
String
?
contentDescription
;
final
String
contentDescription
;
final
int
?
id
;
final
int
id
;
final
List
<
AndroidSemanticsAction
>
?
actions
;
final
List
<
AndroidSemanticsAction
>
actions
;
final
List
<
AndroidSemanticsAction
>
?
ignoredActions
;
final
List
<
AndroidSemanticsAction
>
ignoredActions
;
final
Rect
?
rect
;
final
Rect
rect
;
final
Size
?
size
;
final
Size
size
;
final
bool
?
isChecked
;
final
bool
isChecked
;
final
bool
?
isCheckable
;
final
bool
isCheckable
;
final
bool
?
isEditable
;
final
bool
isEditable
;
final
bool
?
isEnabled
;
final
bool
isEnabled
;
final
bool
?
isFocusable
;
final
bool
isFocusable
;
final
bool
?
isFocused
;
final
bool
isFocused
;
final
bool
?
isHeading
;
final
bool
isHeading
;
final
bool
?
isPassword
;
final
bool
isPassword
;
final
bool
?
isLongClickable
;
final
bool
isLongClickable
;
@override
@override
Description
describe
(
Description
description
)
{
Description
describe
(
Description
description
)
{
...
@@ -149,7 +149,7 @@ class _AndroidSemanticsMatcher extends Matcher {
...
@@ -149,7 +149,7 @@ class _AndroidSemanticsMatcher extends Matcher {
}
}
@override
@override
bool
matches
(
covariant
AndroidSemanticsNode
item
,
Map
<
dynamic
,
dynamic
>
matchState
)
{
bool
matches
(
covariant
AndroidSemanticsNode
item
,
Map
<
Object
,
Object
>
matchState
)
{
if
(
text
!=
null
&&
text
!=
item
.
text
)
{
if
(
text
!=
null
&&
text
!=
item
.
text
)
{
return
_failWithMessage
(
'Expected text:
$text
'
,
matchState
);
return
_failWithMessage
(
'Expected text:
$text
'
,
matchState
);
}
}
...
@@ -170,13 +170,13 @@ class _AndroidSemanticsMatcher extends Matcher {
...
@@ -170,13 +170,13 @@ class _AndroidSemanticsMatcher extends Matcher {
}
}
if
(
actions
!=
null
)
{
if
(
actions
!=
null
)
{
final
List
<
AndroidSemanticsAction
>
itemActions
=
item
.
getActions
();
final
List
<
AndroidSemanticsAction
>
itemActions
=
item
.
getActions
();
if
(!
unorderedEquals
(
actions
!
).
matches
(
itemActions
,
matchState
))
{
if
(!
unorderedEquals
(
actions
).
matches
(
itemActions
,
matchState
))
{
final
List
<
String
>
actionsString
=
actions
!
.
map
<
String
>((
AndroidSemanticsAction
action
)
=>
action
.
toString
()).
toList
()..
sort
();
final
List
<
String
>
actionsString
=
actions
.
map
<
String
>((
AndroidSemanticsAction
action
)
=>
action
.
toString
()).
toList
()..
sort
();
final
List
<
String
>
itemActionsString
=
itemActions
.
map
<
String
>((
AndroidSemanticsAction
action
)
=>
action
.
toString
()).
toList
()..
sort
();
final
List
<
String
>
itemActionsString
=
itemActions
.
map
<
String
>((
AndroidSemanticsAction
action
)
=>
action
.
toString
()).
toList
()..
sort
();
final
Set
<
AndroidSemanticsAction
>
unexpected
=
itemActions
.
toSet
().
difference
(
actions
!
.
toSet
());
final
Set
<
AndroidSemanticsAction
>
unexpected
=
itemActions
.
toSet
().
difference
(
actions
.
toSet
());
final
Set
<
String
>
unexpectedInString
=
itemActionsString
.
toSet
().
difference
(
actionsString
.
toSet
());
final
Set
<
String
>
unexpectedInString
=
itemActionsString
.
toSet
().
difference
(
actionsString
.
toSet
());
final
Set
<
String
>
missingInString
=
actionsString
.
toSet
().
difference
(
itemActionsString
.
toSet
());
final
Set
<
String
>
missingInString
=
actionsString
.
toSet
().
difference
(
itemActionsString
.
toSet
());
if
(
missingInString
.
isEmpty
&&
ignoredActions
!=
null
&&
unexpected
.
every
(
ignoredActions
!
.
contains
))
{
if
(
missingInString
.
isEmpty
&&
ignoredActions
!=
null
&&
unexpected
.
every
(
ignoredActions
.
contains
))
{
return
true
;
return
true
;
}
}
return
_failWithMessage
(
'Expected actions:
$actionsString
\n
Actual actions:
$itemActionsString
\n
Unexpected:
$unexpectedInString
\n
Missing:
$missingInString
'
,
matchState
);
return
_failWithMessage
(
'Expected actions:
$actionsString
\n
Actual actions:
$itemActionsString
\n
Unexpected:
$unexpectedInString
\n
Missing:
$missingInString
'
,
matchState
);
...
@@ -214,8 +214,8 @@ class _AndroidSemanticsMatcher extends Matcher {
...
@@ -214,8 +214,8 @@ class _AndroidSemanticsMatcher extends Matcher {
}
}
@override
@override
Description
describeMismatch
(
dynamic
item
,
Description
mismatchDescription
,
Description
describeMismatch
(
Object
item
,
Description
mismatchDescription
,
Map
<
dynamic
,
dynamic
>
matchState
,
bool
verbose
)
{
Map
<
Object
,
Object
>
matchState
,
bool
verbose
)
{
return
mismatchDescription
.
add
(
matchState
[
'failure'
]
as
String
);
return
mismatchDescription
.
add
(
matchState
[
'failure'
]
as
String
);
}
}
...
...
dev/integration_tests/android_semantics_testing/lib/src/tests/controls_page.dart
View file @
e9934192
...
@@ -9,7 +9,7 @@ export 'controls_constants.dart';
...
@@ -9,7 +9,7 @@ export 'controls_constants.dart';
/// A test page with a checkbox, three radio buttons, and a switch.
/// A test page with a checkbox, three radio buttons, and a switch.
class
SelectionControlsPage
extends
StatefulWidget
{
class
SelectionControlsPage
extends
StatefulWidget
{
const
SelectionControlsPage
({
super
.
key
}
);
const
SelectionControlsPage
({
Key
key
})
:
super
(
key:
key
);
@override
@override
State
<
StatefulWidget
>
createState
()
=>
_SelectionControlsPageState
();
State
<
StatefulWidget
>
createState
()
=>
_SelectionControlsPageState
();
...
@@ -28,15 +28,15 @@ class _SelectionControlsPageState extends State<SelectionControlsPage> {
...
@@ -28,15 +28,15 @@ class _SelectionControlsPageState extends State<SelectionControlsPage> {
bool
_isLabeledOn
=
false
;
bool
_isLabeledOn
=
false
;
int
_radio
=
0
;
int
_radio
=
0
;
void
_updateCheckbox
(
bool
?
newValue
)
{
void
_updateCheckbox
(
bool
newValue
)
{
setState
(()
{
setState
(()
{
_isChecked
=
newValue
!
;
_isChecked
=
newValue
;
});
});
}
}
void
_updateRadio
(
int
?
newValue
)
{
void
_updateRadio
(
int
newValue
)
{
setState
(()
{
setState
(()
{
_radio
=
newValue
!
;
_radio
=
newValue
;
});
});
}
}
...
...
dev/integration_tests/android_semantics_testing/lib/src/tests/headings_page.dart
View file @
e9934192
...
@@ -9,7 +9,7 @@ export 'headings_constants.dart';
...
@@ -9,7 +9,7 @@ export 'headings_constants.dart';
/// A test page with an app bar and some body text for testing heading flags.
/// A test page with an app bar and some body text for testing heading flags.
class
HeadingsPage
extends
StatelessWidget
{
class
HeadingsPage
extends
StatelessWidget
{
const
HeadingsPage
({
super
.
key
}
);
const
HeadingsPage
({
Key
key
})
:
super
(
key:
key
);
static
const
ValueKey
<
String
>
_appBarTitleKey
=
ValueKey
<
String
>(
appBarTitleKeyValue
);
static
const
ValueKey
<
String
>
_appBarTitleKey
=
ValueKey
<
String
>(
appBarTitleKeyValue
);
static
const
ValueKey
<
String
>
_bodyTextKey
=
ValueKey
<
String
>(
bodyTextKeyValue
);
static
const
ValueKey
<
String
>
_bodyTextKey
=
ValueKey
<
String
>(
bodyTextKeyValue
);
...
...
dev/integration_tests/android_semantics_testing/lib/src/tests/popup_page.dart
View file @
e9934192
...
@@ -10,7 +10,7 @@ export 'popup_constants.dart';
...
@@ -10,7 +10,7 @@ export 'popup_constants.dart';
/// A page with a popup menu, a dropdown menu, and a modal alert.
/// A page with a popup menu, a dropdown menu, and a modal alert.
class
PopupControlsPage
extends
StatefulWidget
{
class
PopupControlsPage
extends
StatefulWidget
{
const
PopupControlsPage
({
super
.
key
}
);
const
PopupControlsPage
({
Key
key
})
:
super
(
key:
key
);
@override
@override
State
<
StatefulWidget
>
createState
()
=>
_PopupControlsPageState
();
State
<
StatefulWidget
>
createState
()
=>
_PopupControlsPageState
();
...
@@ -60,9 +60,9 @@ class _PopupControlsPageState extends State<PopupControlsPage> {
...
@@ -60,9 +60,9 @@ class _PopupControlsPageState extends State<PopupControlsPage> {
child:
Text
(
item
),
child:
Text
(
item
),
);
);
}).
toList
(),
}).
toList
(),
onChanged:
(
String
?
value
)
{
onChanged:
(
String
value
)
{
setState
(()
{
setState
(()
{
dropdownValue
=
value
!
;
dropdownValue
=
value
;
});
});
},
},
),
),
...
...
dev/integration_tests/android_semantics_testing/lib/src/tests/text_field_page.dart
View file @
e9934192
...
@@ -10,7 +10,7 @@ export 'text_field_constants.dart';
...
@@ -10,7 +10,7 @@ export 'text_field_constants.dart';
/// A page with a normal text field and a password field.
/// A page with a normal text field and a password field.
class
TextFieldPage
extends
StatefulWidget
{
class
TextFieldPage
extends
StatefulWidget
{
const
TextFieldPage
({
super
.
key
}
);
const
TextFieldPage
({
Key
key
})
:
super
(
key:
key
);
@override
@override
State
<
StatefulWidget
>
createState
()
=>
_TextFieldPageState
();
State
<
StatefulWidget
>
createState
()
=>
_TextFieldPageState
();
...
...
dev/integration_tests/android_semantics_testing/pubspec.yaml
View file @
e9934192
name
:
android_semantics_testing
name
:
android_semantics_testing
description
:
Integration testing library for Android semantics
description
:
Integration testing library for Android semantics
environment
:
environment
:
sdk
:
'
>=2.
17.0-
0
<3.0.0'
sdk
:
'
>=2.
9.
0
<3.0.0'
dependencies
:
dependencies
:
flutter
:
flutter
:
...
...
dev/integration_tests/android_semantics_testing/test_driver/main_test.dart
View file @
e9934192
...
@@ -20,7 +20,7 @@ const List<AndroidSemanticsAction> ignoredAccessibilityFocusActions = <AndroidSe
...
@@ -20,7 +20,7 @@ const List<AndroidSemanticsAction> ignoredAccessibilityFocusActions = <AndroidSe
];
];
String
adbPath
(
)
{
String
adbPath
(
)
{
final
String
androidHome
=
io
.
Platform
.
environment
[
'ANDROID_HOME'
]
??
io
.
Platform
.
environment
[
'ANDROID_SDK_ROOT'
]
!
;
final
String
androidHome
=
io
.
Platform
.
environment
[
'ANDROID_HOME'
]
??
io
.
Platform
.
environment
[
'ANDROID_SDK_ROOT'
];
if
(
androidHome
==
null
)
{
if
(
androidHome
==
null
)
{
return
'adb'
;
return
'adb'
;
}
else
{
}
else
{
...
@@ -30,7 +30,7 @@ String adbPath() {
...
@@ -30,7 +30,7 @@ String adbPath() {
void
main
(
)
{
void
main
(
)
{
group
(
'AccessibilityBridge'
,
()
{
group
(
'AccessibilityBridge'
,
()
{
late
FlutterDriver
driver
;
FlutterDriver
driver
;
Future
<
AndroidSemanticsNode
>
getSemantics
(
SerializableFinder
finder
)
async
{
Future
<
AndroidSemanticsNode
>
getSemantics
(
SerializableFinder
finder
)
async
{
final
int
id
=
await
driver
.
getSemanticsId
(
finder
);
final
int
id
=
await
driver
.
getSemanticsId
(
finder
);
final
String
data
=
await
driver
.
requestData
(
'getSemanticsNode#
$id
'
);
final
String
data
=
await
driver
.
requestData
(
'getSemanticsNode#
$id
'
);
...
@@ -38,7 +38,7 @@ void main() {
...
@@ -38,7 +38,7 @@ void main() {
}
}
// The version of TalkBack running on the device.
// The version of TalkBack running on the device.
Version
?
talkbackVersion
;
Version
talkbackVersion
;
Future
<
Version
>
getTalkbackVersion
()
async
{
Future
<
Version
>
getTalkbackVersion
()
async
{
final
io
.
ProcessResult
result
=
await
io
.
Process
.
run
(
adbPath
(),
const
<
String
>[
final
io
.
ProcessResult
result
=
await
io
.
Process
.
run
(
adbPath
(),
const
<
String
>[
...
@@ -51,7 +51,7 @@ void main() {
...
@@ -51,7 +51,7 @@ void main() {
throw
Exception
(
'Failed to get TalkBack version:
${result.stdout as String}
\n
${result.stderr as String}
'
);
throw
Exception
(
'Failed to get TalkBack version:
${result.stdout as String}
\n
${result.stderr as String}
'
);
}
}
final
List
<
String
>
lines
=
(
result
.
stdout
as
String
).
split
(
'
\n
'
);
final
List
<
String
>
lines
=
(
result
.
stdout
as
String
).
split
(
'
\n
'
);
String
?
version
;
String
version
;
for
(
final
String
line
in
lines
)
{
for
(
final
String
line
in
lines
)
{
if
(
line
.
contains
(
'versionName'
))
{
if
(
line
.
contains
(
'versionName'
))
{
version
=
line
.
replaceAll
(
RegExp
(
r'\s*versionName='
),
''
);
version
=
line
.
replaceAll
(
RegExp
(
r'\s*versionName='
),
''
);
...
@@ -64,14 +64,14 @@ void main() {
...
@@ -64,14 +64,14 @@ void main() {
// Android doesn't quite use semver, so convert the version string to semver form.
// Android doesn't quite use semver, so convert the version string to semver form.
final
RegExp
startVersion
=
RegExp
(
r'(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+)(\.(?<build>\d+))?'
);
final
RegExp
startVersion
=
RegExp
(
r'(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+)(\.(?<build>\d+))?'
);
final
RegExpMatch
?
match
=
startVersion
.
firstMatch
(
version
);
final
RegExpMatch
match
=
startVersion
.
firstMatch
(
version
);
if
(
match
==
null
)
{
if
(
match
==
null
)
{
return
Version
(
0
,
0
,
0
);
return
Version
(
0
,
0
,
0
);
}
}
return
Version
(
return
Version
(
int
.
parse
(
match
.
namedGroup
(
'major'
)
!
),
int
.
parse
(
match
.
namedGroup
(
'major'
)),
int
.
parse
(
match
.
namedGroup
(
'minor'
)
!
),
int
.
parse
(
match
.
namedGroup
(
'minor'
)),
int
.
parse
(
match
.
namedGroup
(
'patch'
)
!
),
int
.
parse
(
match
.
namedGroup
(
'patch'
)),
build:
match
.
namedGroup
(
'build'
),
build:
match
.
namedGroup
(
'build'
),
);
);
}
}
...
@@ -104,7 +104,7 @@ void main() {
...
@@ -104,7 +104,7 @@ void main() {
'null'
,
'null'
,
]);
]);
await
run
.
exitCode
;
await
run
.
exitCode
;
driver
.
close
();
driver
?
.
close
();
});
});
group
(
'TextField'
,
()
{
group
(
'TextField'
,
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment