mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This match switches the framework to use the semantics backend in `dart:ui` rather than the Mojo backend.
122 lines
3.1 KiB
Dart
122 lines
3.1 KiB
Dart
// Copyright 2015 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:ui' show SemanticsFlags;
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'semantics_tester.dart';
|
|
|
|
void main() {
|
|
testWidgets('Semantics 7 - Merging', (WidgetTester tester) async {
|
|
SemanticsTester semantics = new SemanticsTester(tester);
|
|
|
|
String label;
|
|
|
|
label = '1';
|
|
await tester.pumpWidget(
|
|
new Stack(
|
|
children: <Widget>[
|
|
new MergeSemantics(
|
|
child: new Semantics(
|
|
checked: true,
|
|
container: true,
|
|
child: new Semantics(
|
|
container: true,
|
|
label: label
|
|
)
|
|
)
|
|
),
|
|
new MergeSemantics(
|
|
child: new Stack(
|
|
children: <Widget>[
|
|
new Semantics(
|
|
checked: true
|
|
),
|
|
new Semantics(
|
|
label: label
|
|
)
|
|
]
|
|
)
|
|
),
|
|
]
|
|
)
|
|
);
|
|
|
|
expect(semantics, hasSemantics(
|
|
new TestSemantics(
|
|
id: 0,
|
|
children: <TestSemantics>[
|
|
new TestSemantics(
|
|
id: 1,
|
|
flags: SemanticsFlags.hasCheckedState.index | SemanticsFlags.isChecked.index,
|
|
label: label,
|
|
),
|
|
// IDs 2 and 3 are used up by the nodes that get merged in
|
|
new TestSemantics(
|
|
id: 4,
|
|
flags: SemanticsFlags.hasCheckedState.index | SemanticsFlags.isChecked.index,
|
|
label: label,
|
|
),
|
|
// IDs 5 and 6 are used up by the nodes that get merged in
|
|
],
|
|
)
|
|
));
|
|
|
|
label = '2';
|
|
await tester.pumpWidget(
|
|
new Stack(
|
|
children: <Widget>[
|
|
new MergeSemantics(
|
|
child: new Semantics(
|
|
checked: true,
|
|
container: true,
|
|
child: new Semantics(
|
|
container: true,
|
|
label: label
|
|
)
|
|
)
|
|
),
|
|
new MergeSemantics(
|
|
child: new Stack(
|
|
children: <Widget>[
|
|
new Semantics(
|
|
checked: true
|
|
),
|
|
new Semantics(
|
|
label: label
|
|
)
|
|
]
|
|
)
|
|
),
|
|
]
|
|
)
|
|
);
|
|
|
|
expect(semantics, hasSemantics(
|
|
new TestSemantics(
|
|
id: 0,
|
|
children: <TestSemantics>[
|
|
new TestSemantics(
|
|
id: 1,
|
|
flags: SemanticsFlags.hasCheckedState.index | SemanticsFlags.isChecked.index,
|
|
label: label,
|
|
),
|
|
// IDs 2 and 3 are used up by the nodes that get merged in
|
|
new TestSemantics(
|
|
id: 4,
|
|
flags: SemanticsFlags.hasCheckedState.index | SemanticsFlags.isChecked.index,
|
|
label: label,
|
|
),
|
|
// IDs 5 and 6 are used up by the nodes that get merged in
|
|
],
|
|
)
|
|
));
|
|
|
|
semantics.dispose();
|
|
});
|
|
}
|