blob: 954812298081f983c298d7695fb6ff41d57de8f3 [file] [edit]
// Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@Timeout(Duration(minutes: 2))
library;
import 'dart:async';
import 'dart:ffi';
import 'package:objective_c/objective_c.dart';
import 'package:test/test.dart';
import 'protocols_bindings.dart';
import 'util.dart';
void main() {
group('Protocols', () {
setUpAll(() async {
final gen = TestGenerator('protocols');
await gen.generateAndVerifyBindings();
DynamicLibrary.open(gen.dylibFile);
});
test('protocol', () async {
final result = Completer<String>();
final delegate = TestWeatherServiceDelegate$Builder.implementAsListener(
didUpdateWeather_: (NSString msg) {
result.complete(msg.toDartString());
},
);
TestWeatherService.fetchWeatherWithDelegate(delegate);
expect(await result.future, 'Sunny, 25°C');
});
for (final (name, invoke) in [
('same thread', TestSwiftInvoker.invokeAsyncMethodWithProtocolInstance),
(
'different thread',
TestSwiftInvoker
.invokeAsyncMethodOnBackgroundThreadWithProtocolInstance,
),
]) {
test('async protocol method, $name', () async {
final protocolInstance = TestAsyncProtocol$Builder.implementAsBlocking(
fetchDataWithParam_completionHandler_:
(
NSString param,
ObjCBlock<Void Function(NSString)> completionHandler,
) {
final result = '${param.toDartString()} processed'.toNSString();
completionHandler(result);
},
);
final resultCompleter = Completer<String>();
final completionHandler = ObjCBlock_ffiVoid_NSString.blocking((
NSString result,
) {
resultCompleter.complete(result.toDartString());
});
invoke(
protocolInstance,
param: 'input'.toNSString(),
completionHandler: completionHandler,
);
expect(await resultCompleter.future, 'input processed');
});
}
});
}