text_selection_toolbar_test.dart 7.1 KB
Newer Older
1 2 3 4 5 6 7
// Copyright 2014 The Flutter 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 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
8
import 'package:flutter_test/flutter_test.dart';
9

10
import '../widgets/editable_text_utils.dart' show textOffsetToPosition;
11 12 13 14 15 16 17 18 19 20 21 22 23 24

// A custom text selection menu that just displays a single custom button.
class _CustomMaterialTextSelectionControls extends MaterialTextSelectionControls {
  static const double _kToolbarContentDistanceBelow = 20.0;
  static const double _kToolbarContentDistance = 8.0;

  @override
  Widget buildToolbar(
    BuildContext context,
    Rect globalEditableRegion,
    double textLineHeight,
    Offset selectionMidpoint,
    List<TextSelectionPoint> endpoints,
    TextSelectionDelegate delegate,
25
    ClipboardStatusNotifier? clipboardStatus,
26
    Offset? lastSecondaryTapDownPosition,
27 28 29 30 31 32 33
  ) {
    final TextSelectionPoint startTextSelectionPoint = endpoints[0];
    final TextSelectionPoint endTextSelectionPoint = endpoints.length > 1
      ? endpoints[1]
      : endpoints[0];
    final Offset anchorAbove = Offset(
      globalEditableRegion.left + selectionMidpoint.dx,
34
      globalEditableRegion.top + startTextSelectionPoint.point.dy - textLineHeight - _kToolbarContentDistance,
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
    );
    final Offset anchorBelow = Offset(
      globalEditableRegion.left + selectionMidpoint.dx,
      globalEditableRegion.top + endTextSelectionPoint.point.dy + _kToolbarContentDistanceBelow,
    );

    return TextSelectionToolbar(
      anchorAbove: anchorAbove,
      anchorBelow: anchorBelow,
      children: <Widget>[
        TextSelectionToolbarTextButton(
          padding: TextSelectionToolbarTextButton.getPadding(0, 1),
          onPressed: () {},
          child: const Text('Custom button'),
        ),
      ],
    );
  }
}

55
class TestBox extends SizedBox {
56
  const TestBox({super.key}) : super(width: itemWidth, height: itemHeight);
57 58 59 60 61

  static const double itemHeight = 44.0;
  static const double itemWidth = 100.0;
}

62 63 64 65
void main() {
  TestWidgetsFlutterBinding.ensureInitialized();

  // Find by a runtimeType String, including private types.
66
  Finder findPrivate(String type) {
67 68 69 70 71 72 73 74 75
    return find.descendant(
      of: find.byType(MaterialApp),
      matching: find.byWidgetPredicate((Widget w) => '${w.runtimeType}' == type),
    );
  }

  // Finding TextSelectionToolbar won't give you the position as the user sees
  // it because it's a full-sized Stack at the top level. This method finds the
  // visible part of the toolbar for use in measurements.
76
  Finder findToolbar() => findPrivate('_TextSelectionToolbarOverflowable');
77

78
  Finder findOverflowButton() => findPrivate('_TextSelectionToolbarOverflowButton');
79 80 81

  testWidgets('puts children in an overflow menu if they overflow', (WidgetTester tester) async {
    late StateSetter setState;
82
    final List<Widget> children = List<Widget>.generate(7, (int i) => const TestBox());
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101

    await tester.pumpWidget(
      MaterialApp(
        home: Scaffold(
          body: StatefulBuilder(
            builder: (BuildContext context, StateSetter setter) {
              setState = setter;
              return TextSelectionToolbar(
                anchorAbove: const Offset(50.0, 100.0),
                anchorBelow: const Offset(50.0, 200.0),
                children: children,
              );
            },
          ),
        ),
      ),
    );

    // All children fit on the screen, so they are all rendered.
102
    expect(find.byType(TestBox), findsNWidgets(children.length));
103
    expect(findOverflowButton(), findsNothing);
104 105 106 107

    // Adding one more child makes the children overflow.
    setState(() {
      children.add(
108
        const TestBox(),
109 110 111
      );
    });
    await tester.pumpAndSettle();
112
    expect(find.byType(TestBox), findsNWidgets(children.length - 1));
113
    expect(findOverflowButton(), findsOneWidget);
114 115

    // Tap the overflow button to show the overflow menu.
116
    await tester.tap(findOverflowButton());
117
    await tester.pumpAndSettle();
118
    expect(find.byType(TestBox), findsNWidgets(1));
119
    expect(findOverflowButton(), findsOneWidget);
120 121

    // Tap the overflow button again to hide the overflow menu.
122
    await tester.tap(findOverflowButton());
123
    await tester.pumpAndSettle();
124
    expect(find.byType(TestBox), findsNWidgets(children.length - 1));
125
    expect(findOverflowButton(), findsOneWidget);
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
  });

  testWidgets('positions itself at anchorAbove if it fits', (WidgetTester tester) async {
    late StateSetter setState;
    const double height = 44.0;
    const double anchorBelowY = 500.0;
    double anchorAboveY = 0.0;

    await tester.pumpWidget(
      MaterialApp(
        home: Scaffold(
          body: StatefulBuilder(
            builder: (BuildContext context, StateSetter setter) {
              setState = setter;
              return TextSelectionToolbar(
                anchorAbove: Offset(50.0, anchorAboveY),
                anchorBelow: const Offset(50.0, anchorBelowY),
                children: <Widget>[
                  Container(color: Colors.red, width: 50.0, height: height),
                  Container(color: Colors.green, width: 50.0, height: height),
                  Container(color: Colors.blue, width: 50.0, height: height),
                ],
              );
            },
          ),
        ),
      ),
    );

    // When the toolbar doesn't fit above aboveAnchor, it positions itself below
    // belowAnchor.
157
    double toolbarY = tester.getTopLeft(findToolbar()).dy;
158 159 160 161 162 163 164
    expect(toolbarY, equals(anchorBelowY));

    // Even when it barely doesn't fit.
    setState(() {
      anchorAboveY = 50.0;
    });
    await tester.pump();
165
    toolbarY = tester.getTopLeft(findToolbar()).dy;
166 167 168 169 170 171 172
    expect(toolbarY, equals(anchorBelowY));

    // When it does fit above aboveAnchor, it positions itself there.
    setState(() {
      anchorAboveY = 60.0;
    });
    await tester.pump();
173
    toolbarY = tester.getTopLeft(findToolbar()).dy;
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
    expect(toolbarY, equals(anchorAboveY - height));
  });

  testWidgets('can create and use a custom toolbar', (WidgetTester tester) async {
    await tester.pumpWidget(
      MaterialApp(
        home: Scaffold(
          body: Center(
            child: SelectableText(
              'Select me custom menu',
              selectionControls: _CustomMaterialTextSelectionControls(),
            ),
          ),
        ),
      ),
    );

    // The selection menu is not initially shown.
    expect(find.text('Custom button'), findsNothing);

    // Long press on "custom" to select it.
    final Offset customPos = textOffsetToPosition(tester, 11);
    final TestGesture gesture = await tester.startGesture(customPos, pointer: 7);
    await tester.pump(const Duration(seconds: 2));
    await gesture.up();
    await tester.pump();

    // The custom selection menu is shown.
    expect(find.text('Custom button'), findsOneWidget);
    expect(find.text('Cut'), findsNothing);
    expect(find.text('Copy'), findsNothing);
    expect(find.text('Paste'), findsNothing);
    expect(find.text('Select all'), findsNothing);
207
  }, skip: kIsWeb); // [intended] We don't show the toolbar on the web.
208
}