| // Copyright (c) 2022, 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. |
| |
| // Objective C support is only available on mac. |
| @TestOn('mac-os') |
| |
| import 'dart:ffi'; |
| import 'dart:io'; |
| |
| import 'package:ffi/ffi.dart'; |
| import 'package:test/test.dart'; |
| import '../test_utils.dart'; |
| import 'method_bindings.dart'; |
| import 'util.dart'; |
| |
| void main() { |
| late MethodInterface testInstance; |
| late MethodTestObjCLibrary lib; |
| |
| group('method calls', () { |
| setUpAll(() { |
| logWarnings(); |
| final dylib = File('test/native_objc_test/method_test.dylib'); |
| verifySetupFile(dylib); |
| lib = MethodTestObjCLibrary(DynamicLibrary.open(dylib.absolute.path)); |
| testInstance = MethodInterface.new1(lib); |
| generateBindingsForCoverage('method'); |
| }); |
| |
| group('Instance methods', () { |
| test('No arguments', () { |
| expect(testInstance.add(), 5); |
| }); |
| |
| test('One argument', () { |
| expect(testInstance.add_(23), 23); |
| }); |
| |
| test('Two arguments', () { |
| expect(testInstance.add_Y_(23, 17), 40); |
| }); |
| |
| test('Three arguments', () { |
| expect(testInstance.add_Y_Z_(23, 17, 60), 100); |
| }); |
| }); |
| |
| group('Class methods', () { |
| test('No arguments', () { |
| expect(MethodInterface.sub(lib), -5); |
| }); |
| |
| test('One argument', () { |
| expect(MethodInterface.sub_(lib, 7), -7); |
| }); |
| |
| test('Two arguments', () { |
| expect(MethodInterface.sub_Y_(lib, 7, 3), -10); |
| }); |
| |
| test('Three arguments', () { |
| expect(MethodInterface.sub_Y_Z_(lib, 10, 7, 3), -20); |
| }); |
| }); |
| |
| group('Regress #608', () { |
| test('Structs', () { |
| final inputPtr = calloc<Vec4>(); |
| final input = inputPtr.ref; |
| input.x = 1.2; |
| input.y = 3.4; |
| input.z = 5.6; |
| input.w = 7.8; |
| |
| final resultPtr = calloc<Vec4>(); |
| final result = resultPtr.ref; |
| testInstance.twiddleVec4Components_(resultPtr, input); |
| expect(result.x, 3.4); |
| expect(result.y, 5.6); |
| expect(result.z, 7.8); |
| expect(result.w, 1.2); |
| |
| calloc.free(inputPtr); |
| calloc.free(resultPtr); |
| }); |
| |
| test('Floats', () { |
| expect(testInstance.addFloats_Y_(1.23, 4.56), closeTo(5.79, 1e-6)); |
| }); |
| |
| test('Doubles', () { |
| expect(testInstance.addDoubles_Y_(1.23, 4.56), closeTo(5.79, 1e-6)); |
| }); |
| }); |
| }); |
| } |