test_text_input_test.dart 1.32 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright 2018 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 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';

void main() {
  testWidgets('receiveAction() forwards exception when exception occurs during action processing',
          (WidgetTester tester) async {
    // Setup a widget that can receive focus so that we can open the keyboard.
    final Widget widget = new MaterialApp(
      home: const Material(
15
        child: TextField(),
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
      ),
    );
    await tester.pumpWidget(widget);

    // Keyboard must be shown for receiveAction() to function.
    await tester.showKeyboard(find.byType(TextField));

    // Register a handler for the text input channel that throws an error. This
    // error should be reported within a PlatformException by TestTextInput.
    SystemChannels.textInput.setMethodCallHandler((MethodCall call) {
      throw new FlutterError('A fake error occurred during action processing.');
    });

    try {
      await tester.testTextInput.receiveAction(TextInputAction.done);
      fail('Expected a PlatformException, but it was not thrown.');
    } catch (e) {
      expect(e, isInstanceOf<PlatformException>());
    }
  });
36
}