blob: ced28b02e21824b58e330b837af64d1d39dcd444 [file] [log] [blame]
// Copyright (c) 2019, 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.
import 'package:analyzer/src/dart/error/ffi_code.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(MustBeANativeFunctionTypeTest);
});
}
@reflectiveTest
class MustBeANativeFunctionTypeTest extends PubPackageResolutionTest {
test_fromFunction() async {
await assertErrorsInCode(r'''
import 'dart:ffi';
int f(int i) => i * 2;
class C<T extends Function> {
void g() {
Pointer.fromFunction<T>(f);
}
}
''', [
error(FfiCode.MUST_BE_A_NATIVE_FUNCTION_TYPE, 110, 1),
]);
}
test_lookupFunction() async {
await assertErrorsInCode(r'''
import 'dart:ffi';
typedef S = int Function(int);
typedef F = String Function(String);
void f(DynamicLibrary lib) {
lib.lookupFunction<S, F>('g');
}
''', [
error(FfiCode.MUST_BE_A_NATIVE_FUNCTION_TYPE, 137, 1),
]);
}
test_lookupFunction_Pointer() async {
await assertNoErrorsInCode(r'''
import 'dart:ffi';
typedef S = Void Function(Pointer);
typedef F = void Function(Pointer);
void f(DynamicLibrary lib) {
lib.lookupFunction<S, F>('g');
}
''');
}
// TODO(https://dartbug.com/44594): Should this be an error or not?
test_lookupFunction_PointerNativeFunction() async {
await assertErrorsInCode(r'''
import 'dart:ffi';
typedef S = Void Function(Pointer<NativeFunction>);
typedef F = void Function(Pointer<NativeFunction>);
void f(DynamicLibrary lib) {
lib.lookupFunction<S, F>('g');
}
''', [error(FfiCode.MUST_BE_A_NATIVE_FUNCTION_TYPE, 173, 1)]);
}
test_lookupFunction_PointerNativeFunction2() async {
await assertNoErrorsInCode(r'''
import 'dart:ffi';
typedef S = Void Function(Pointer<NativeFunction<Int8 Function()>>);
typedef F = void Function(Pointer<NativeFunction<Int8 Function()>>);
void f(DynamicLibrary lib) {
lib.lookupFunction<S, F>('g');
}
''');
}
test_lookupFunction_PointerVoid() async {
await assertNoErrorsInCode(r'''
import 'dart:ffi';
typedef S = Pointer<Void> Function(Pointer<Void>);
typedef F = Pointer<Void> Function(Pointer<Void>);
void f(DynamicLibrary lib) {
lib.lookupFunction<S, F>('g');
}
''');
}
test_lookupFunction_T() async {
await assertErrorsInCode(r'''
import 'dart:ffi';
typedef F = int Function(int);
class C<T extends Function> {
void f(DynamicLibrary lib, NativeFunction x) {
lib.lookupFunction<T, F>('g');
}
}
''', [
error(FfiCode.MUST_BE_A_NATIVE_FUNCTION_TYPE, 152, 1),
]);
}
}