mirror of
https://github.com/flutter/flutter.git
synced 2026-02-04 19:00:09 +08:00
This auto-formats all *.dart files in the repository outside of the `engine` subdirectory and enforces that these files stay formatted with a presubmit check. **Reviewers:** Please carefully review all the commits except for the one titled "formatted". The "formatted" commit was auto-generated by running `dev/tools/format.sh -a -f`. The other commits were hand-crafted to prepare the repo for the formatting change. I recommend reviewing the commits one-by-one via the "Commits" tab and avoiding Github's "Files changed" tab as it will likely slow down your browser because of the size of this PR. --------- Co-authored-by: Kate Lovett <katelovett@google.com> Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
57 lines
1.9 KiB
Dart
57 lines
1.9 KiB
Dart
// 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 'dart:async';
|
|
import 'dart:convert';
|
|
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
ByteData makeByteData(String str) {
|
|
return ByteData.sublistView(utf8.encode(str));
|
|
}
|
|
|
|
test('default binary messenger calls callback once', () async {
|
|
int countInbound = 0;
|
|
int countOutbound = 0;
|
|
const String channel = 'foo';
|
|
final ByteData bar = makeByteData('bar');
|
|
final Completer<void> done = Completer<void>();
|
|
ServicesBinding.instance.channelBuffers.push(channel, bar, (ByteData? message) async {
|
|
expect(message, isNull);
|
|
countOutbound += 1;
|
|
done.complete();
|
|
});
|
|
expect(countInbound, equals(0));
|
|
expect(countOutbound, equals(0));
|
|
ServicesBinding.instance.defaultBinaryMessenger.setMessageHandler(channel, (
|
|
ByteData? message,
|
|
) async {
|
|
expect(message, bar);
|
|
countInbound += 1;
|
|
return null;
|
|
});
|
|
expect(countInbound, equals(0));
|
|
expect(countOutbound, equals(0));
|
|
await done.future;
|
|
expect(countInbound, equals(1));
|
|
expect(countOutbound, equals(1));
|
|
});
|
|
|
|
test('can check the mock handler', () {
|
|
Future<ByteData?> handler(ByteData? call) => Future<ByteData?>.value();
|
|
final TestDefaultBinaryMessenger messenger =
|
|
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger;
|
|
|
|
expect(messenger.checkMockMessageHandler('test_channel', null), true);
|
|
expect(messenger.checkMockMessageHandler('test_channel', handler), false);
|
|
messenger.setMockMessageHandler('test_channel', handler);
|
|
expect(messenger.checkMockMessageHandler('test_channel', handler), true);
|
|
messenger.setMockMessageHandler('test_channel', null);
|
|
});
|
|
}
|