gpt4 book ai didi

flutter - 如何测试原生调用Flutter的方法 channel ?

转载 作者:行者123 更新时间:2023-12-05 01:34:59 28 4
gpt4 key购买 nike

我正在开发 native 插件并尝试进行单元测试。所有单元测试都将在 Dart 中完成(无 native 代码)。

Flutter 有一个测试示例,说明如何使用 setMockMethodCallHandler 测试从 Dart 到 native 的调用方法 channel 。

问题是我还没有找到测试从 native 调用 Dart 的方法 channel 的方法,它使用 setMethodCallHandler 来处理来自 native 的调用。

举个例子

// main.dart

class Plugin {

static MethodChannel _channel = const MethodChannel('plugin');

Plugin() {
_channel.setMethodCallHandler((call) async {
print("called from native: ${call.method}");
});
}

}
// tests/main_test.dart

void main() {
const MethodChannel _channel = MethodChannel('core.super_router');
Plugin plugin;

setUp(() async {
TestWidgetsFlutterBinding.ensureInitialized();
plugin = Plugin();
});

test("call from native", () async {
_channel.invokeMethod("something");
// This call can't reach the handler in the Plugin
// And there is no method like mockInvokeMethod
});
}

最佳答案

下面的片段基于 CyrilHu's方法,非常适合我。

test("Listening device", () async {

ServicesBinding.instance.defaultBinaryMessenger.handlePlatformMessage(
'channnelName',
StandardMethodCodec().encodeMethodCall(
MethodCall('methodName', '{"result":true}')),(ByteData data){});

...
});

关于flutter - 如何测试原生调用Flutter的方法 channel ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63353885/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com