blob: 22d99c9e320cccddc92346753351692710eccac6 [file] [log] [blame]
// 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.
import 'dart:async';
import 'dart:io';
Future<void> _buildLib(String input, String output) async {
final args = [
'-shared',
'-fpic',
'-x',
'objective-c',
input,
'-framework',
'Foundation',
'-o',
output,
];
final process = await Process.start('clang', args);
unawaited(stdout.addStream(process.stdout));
unawaited(stderr.addStream(process.stderr));
final result = await process.exitCode;
if (result != 0) {
throw ProcessException('clang', args, 'Build failed', result);
}
print('Generated file: $output');
}
Future<void> _generateBindings(String config) async {
final args = [
'run',
'ffigen',
'--config',
'test/native_objc_test/$config',
];
final process =
await Process.start(Platform.executable, args, workingDirectory: '../..');
unawaited(stdout.addStream(process.stdout));
unawaited(stderr.addStream(process.stderr));
final result = await process.exitCode;
if (result != 0) {
throw ProcessException('dart', args, 'Generating bindings', result);
}
print('Generated bindings for: $config');
}
const testNames = [
'automated_ref_count',
'block',
'cast',
'category',
'forward_decl',
'is_instance',
'method',
'native_objc',
'nullable',
'property',
'rename',
'string',
];
Future<void> build() async {
print('Building Dynamic Library for Objective C Native Tests...');
for (final name in testNames) {
await _buildLib('${name}_test.m', '${name}_test.dylib');
}
print('Generating Bindings for Objective C Native Tests...');
for (final name in testNames) {
await _generateBindings('${name}_config.yaml');
}
}
Future<void> clean() async {
print('Deleting generated and built files...');
final filenames = [
for (final name in testNames) ...[
'${name}_bindings.dart',
'${name}_test_bindings.dart',
'${name}_test.dylib'
],
];
Future.wait(filenames.map((fileName) async {
final file = File(fileName);
final exists = await file.exists();
if (exists) await file.delete();
}));
}
Future<void> main(List<String> arguments) async {
if (!Platform.isMacOS) {
throw OSError('Objective C tests are only supported on MacOS');
}
if (arguments.isNotEmpty && arguments[0] == 'clean') {
return await clean();
}
return await build();
}