blob: c0d2b91e34b2e931cef2c934894d4bcec68ae500 [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.
// Swift support is only available on mac.
@TestOn('mac-os')
library;
import 'dart:async';
import 'dart:io';
import 'package:ffigen/src/header_parser.dart';
import 'package:path/path.dart' as path;
import 'package:test/test.dart';
import '../test_utils.dart';
void main() {
group('swift_example_test', () {
test('swift', () async {
// Run the swiftc command from the example README, to generate the header.
final process = await Process.start('swiftc', [
'-c',
'swift_api.swift',
'-module-name',
'swift_module',
'-emit-objc-header-path',
'third_party/swift_api.h',
'-emit-library',
'-o',
'libswiftapi.dylib',
], workingDirectory: path.join(packagePathForTests, 'example/swift'));
unawaited(stdout.addStream(process.stdout));
unawaited(stderr.addStream(process.stderr));
final result = await process.exitCode;
expect(result, 0);
final config = testConfigFromPath(
path.join(packagePathForTests, 'example', 'swift', 'config.yaml'),
);
final output = parse(testContext(config)).generate();
// Verify that the output contains all the methods and classes that the
// example app uses.
expect(output, contains('extension type SwiftClass._(objc.ObjCObject '));
expect(output, contains('static SwiftClass new\$() {'));
expect(output, contains('NSString sayHello() {'));
expect(output, contains('int get someField {'));
expect(output, contains('set someField(int value) {'));
// Verify that SwiftClass is loaded using the swift_module prefix.
expect(
output,
contains(
RegExp(
r'late final _class_SwiftClass.* = '
r'objc.getClass.*\("swift_module\.SwiftClass"\)',
),
),
);
});
});
}