blob: c829a59037e8418c9c6103083997d78a100e1d2f [file] [log] [blame]
// Copyright (c) 2020, 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 'dart:ffi';
import 'dart:io';
import 'dart:math';
import 'package:test/test.dart';
import '../test_utils.dart';
import 'native_test_bindings.dart' as bindings;
void main() {
group('native_test', () {
setUpAll(() {
logWarnings();
var dylibName = 'test/native_test/native_test.so';
if (Platform.isMacOS) {
dylibName = 'test/native_test/native_test.dylib';
} else if (Platform.isWindows) {
dylibName = r'test\native_test\native_test.dll';
}
bindings.init(
DynamicLibrary.open(File(dylibName).absolute?.path ?? dylibName));
});
test('uint8_t', () {
expect(bindings.Function1Uint8(pow(2, 8).toInt()), 42);
});
test('uint16_t', () {
expect(bindings.Function1Uint16(pow(2, 16).toInt()), 42);
});
test('uint32_t', () {
expect(bindings.Function1Uint32(pow(2, 32).toInt()), 42);
});
test('uint64_t', () {
expect(bindings.Function1Uint64(pow(2, 64).toInt()), 42);
});
test('int8_t', () {
expect(
bindings.Function1Int8(pow(2, 7).toInt()), -pow(2, 7).toInt() + 42);
});
test('int16_t', () {
expect(bindings.Function1Int16(pow(2, 15).toInt()),
-pow(2, 15).toInt() + 42);
});
test('int32_t', () {
expect(bindings.Function1Int32(pow(2, 31).toInt()),
-pow(2, 31).toInt() + 42);
});
test('int64_t', () {
expect(bindings.Function1Int64(pow(2, 63).toInt()),
-pow(2, 63).toInt() + 42);
});
test('intptr_t', () {
expect(bindings.Function1IntPtr(0), 42);
});
test('float', () {
expect(bindings.Function1Float(0), 42.0);
});
test('double', () {
expect(bindings.Function1Double(0), 42.0);
});
test('array-workaround: Order of access', () {
final struct1 = bindings.getStruct1();
int expectedValue = 1;
for (int i = 0; i < struct1.ref.data.dimensions[0]; i++) {
for (int j = 0; j < struct1.ref.data.dimensions[1]; j++) {
for (int k = 0; k < struct1.ref.data.dimensions[2]; k++) {
expect(struct1.ref.data[i][j][k], expectedValue);
expectedValue++;
}
}
}
});
test('array-workaround: Range Errors', () {
final struct1 = bindings.getStruct1();
// Index (get) above range.
expect(
() => struct1.ref.data[4][0][0], throwsA(TypeMatcher<RangeError>()));
expect(
() => struct1.ref.data[0][2][0], throwsA(TypeMatcher<RangeError>()));
expect(
() => struct1.ref.data[0][0][3], throwsA(TypeMatcher<RangeError>()));
// Index (get) below range.
expect(
() => struct1.ref.data[-1][0][0], throwsA(TypeMatcher<RangeError>()));
expect(
() => struct1.ref.data[-1][0][0], throwsA(TypeMatcher<RangeError>()));
expect(
() => struct1.ref.data[0][0][-1], throwsA(TypeMatcher<RangeError>()));
// Index (set) above range.
expect(() => struct1.ref.data[4][0][0] = 0,
throwsA(TypeMatcher<RangeError>()));
expect(() => struct1.ref.data[0][2][0] = 0,
throwsA(TypeMatcher<RangeError>()));
expect(() => struct1.ref.data[0][0][3] = 0,
throwsA(TypeMatcher<RangeError>()));
// Index (get) below range.
expect(() => struct1.ref.data[-1][0][0] = 0,
throwsA(TypeMatcher<RangeError>()));
expect(() => struct1.ref.data[-1][0][0] = 0,
throwsA(TypeMatcher<RangeError>()));
expect(() => struct1.ref.data[0][0][-1] = 0,
throwsA(TypeMatcher<RangeError>()));
});
});
}