forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
Action.overridable
example (#110824)
- Loading branch information
1 parent
3c5a074
commit bdb74e1
Showing
3 changed files
with
104 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
examples/api/test/widgets/actions/action.action_overridable.0_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// 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/material.dart'; | ||
import 'package:flutter/services.dart'; | ||
import 'package:flutter_api_samples/widgets/actions/action.action_overridable.0.dart' as example; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
void main() { | ||
TestWidgetsFlutterBinding.ensureInitialized(); | ||
final _MockClipboard mockClipboard = _MockClipboard(); | ||
|
||
testWidgets('Copies text on Ctrl-C', (WidgetTester tester) async { | ||
tester.binding.defaultBinaryMessenger.setMockMethodCallHandler(SystemChannels.platform, mockClipboard.handleMethodCall); | ||
await tester.pumpWidget(const MaterialApp( | ||
home: Scaffold( | ||
body: Center(child: example.VerificationCodeGenerator()), | ||
), | ||
), | ||
); | ||
|
||
expect(primaryFocus, isNotNull); | ||
expect(mockClipboard.clipboardData, isNull); | ||
|
||
await tester.sendKeyDownEvent(LogicalKeyboardKey.control); | ||
await tester.sendKeyDownEvent(LogicalKeyboardKey.keyC); | ||
await tester.sendKeyUpEvent(LogicalKeyboardKey.control); | ||
await tester.sendKeyUpEvent(LogicalKeyboardKey.keyC); | ||
|
||
expect(mockClipboard.clipboardData?['text'], '111222333'); | ||
}); | ||
} | ||
|
||
class _MockClipboard { | ||
_MockClipboard(); | ||
|
||
Map<String, dynamic>? clipboardData; | ||
|
||
Future<Object?> handleMethodCall(MethodCall methodCall) async { | ||
switch (methodCall.method) { | ||
case 'Clipboard.setData': | ||
clipboardData = methodCall.arguments as Map<String, dynamic>; | ||
return null; | ||
} | ||
if (methodCall.method.startsWith('Clipboard')) { | ||
throw StateError('unrecognized method call: ${methodCall.method}'); | ||
} | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters