| // 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:objective_c/objective_c.dart'; |
| import 'package:path/path.dart' as path; |
| import 'package:test/test.dart'; |
| |
| import '../test_utils.dart'; |
| import 'string_bindings.dart'; |
| import 'util.dart'; |
| |
| void main() { |
| group('string', () { |
| setUpAll(() { |
| final dylib = File( |
| path.join( |
| packagePathForTests, |
| 'test', |
| 'native_objc_test', |
| 'objc_test.dylib', |
| ), |
| ); |
| verifySetupFile(dylib); |
| DynamicLibrary.open(dylib.absolute.path); |
| generateBindingsForCoverage('string'); |
| }); |
| |
| for (final s in ['Hello', '🇵🇬', 'Embedded\u0000Null']) { |
| test('NSString to/from Dart string [$s]', () { |
| final ns1 = NSString(s); |
| expect(ns1.length, s.length); |
| expect(ns1.toDartString().length, s.length); |
| expect(ns1.toDartString(), s); |
| |
| final ns2 = s.toNSString(); |
| expect(ns2.length, s.length); |
| expect(ns2.toDartString().length, s.length); |
| expect(ns2.toDartString(), s); |
| }); |
| } |
| |
| test('strings usable', () { |
| final str1 = 'Hello'.toNSString(); |
| final str2 = 'World!'.toNSString(); |
| |
| final str3 = StringUtil.strConcat(str1, with$: str2); |
| expect(str3.length, 11); |
| expect(str3.toDartString(), "HelloWorld!"); |
| }); |
| }); |
| } |