flutter_flutter/dev/devicelab/bin/tasks/plugin_lint_mac.dart
Kate Lovett 9d96df2364
Modernize framework lints (#179089)
WIP

Commits separated as follows:
- Update lints in analysis_options files
- Run `dart fix --apply`
- Clean up leftover analysis issues 
- Run `dart format .` in the right places.

Local analysis and testing passes. Checking CI now.

Part of https://github.com/flutter/flutter/issues/178827
- Adoption of flutter_lints in examples/api coming in a separate change
(cc @loic-sharma)

## Pre-launch Checklist

- [ ] I read the [Contributor Guide] and followed the process outlined
there for submitting PRs.
- [ ] I read the [Tree Hygiene] wiki page, which explains my
responsibilities.
- [ ] I read and followed the [Flutter Style Guide], including [Features
we expect every widget to implement].
- [ ] I signed the [CLA].
- [ ] I listed at least one issue that this PR fixes in the description
above.
- [ ] I updated/added relevant documentation (doc comments with `///`).
- [ ] I added new tests to check the change I am making, or this PR is
[test-exempt].
- [ ] I followed the [breaking change policy] and added [Data Driven
Fixes] where supported.
- [ ] All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-new channel
on [Discord].

**Note**: The Flutter team is currently trialing the use of [Gemini Code
Assist for
GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code).
Comments from the `gemini-code-assist` bot should not be taken as
authoritative feedback from the Flutter team. If you find its comments
useful you can update your code accordingly, but if you are unsure or
disagree with the feedback, please feel free to wait for a Flutter team
member's review for guidance on which automated comments should be
addressed.

<!-- Links -->
[Contributor Guide]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
[Tree Hygiene]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
[test-exempt]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests
[Flutter Style Guide]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md
[Features we expect every widget to implement]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement
[CLA]: https://cla.developers.google.com/
[flutter/tests]: https://github.com/flutter/tests
[breaking change policy]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes
[Discord]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
[Data Driven Fixes]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md
2025-11-26 01:10:39 +00:00

287 lines
10 KiB
Dart

// Copyright 2014 The Flutter Authors. 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:io';
import 'package:flutter_devicelab/framework/framework.dart';
import 'package:flutter_devicelab/framework/task_result.dart';
import 'package:flutter_devicelab/framework/utils.dart';
import 'package:path/path.dart' as path;
/// Tests that the Flutter plugin template works. Use `pod lib lint`
/// to confirm the plugin module can be imported into an app.
Future<void> main() async {
await task(() async {
final Directory tempDir = Directory.systemTemp.createTempSync('flutter_plugin_test.');
try {
section('Lint integration_test');
await inDirectory(tempDir, () async {
// Update pod repo.
await exec('pod', <String>['repo', 'update']);
// Relative to this script.
final String flutterRoot = path.dirname(
path.dirname(path.dirname(path.dirname(path.dirname(path.fromUri(Platform.script))))),
);
print('Flutter root at $flutterRoot');
final String integrationTestPackage = path.join(
flutterRoot,
'packages',
'integration_test',
);
final String iosintegrationTestPodspec = path.join(
integrationTestPackage,
'ios',
'integration_test.podspec',
);
await exec('pod', <String>['lib', 'lint', iosintegrationTestPodspec, '--use-libraries']);
final String macosintegrationTestPodspec = path.join(
integrationTestPackage,
'integration_test_macos',
'macos',
'integration_test_macos.podspec',
);
await _tryMacOSLint(macosintegrationTestPodspec, <String>[]);
});
section('Create plugin');
const pluginName = 'test_plugin';
await inDirectory(tempDir, () async {
await flutter(
'create',
options: <String>[
'--org',
'io.flutter.devicelab',
'--template=plugin',
'--platforms=ios,macos',
pluginName,
],
);
});
section('Lint iOS podspec plugin as framework');
final String pluginPath = path.join(tempDir.path, pluginName);
final String podspecPath = path.join(pluginPath, 'ios', '$pluginName.podspec');
await inDirectory(tempDir, () async {
await exec('pod', <String>['lib', 'lint', podspecPath, '--allow-warnings']);
});
section('Lint iOS podspec plugin as library');
await inDirectory(tempDir, () async {
await exec('pod', <String>[
'lib',
'lint',
podspecPath,
'--allow-warnings',
'--use-libraries',
]);
});
section('Lint macOS podspec plugin as framework');
final String macOSPodspecPath = path.join(pluginPath, 'macos', '$pluginName.podspec');
await inDirectory(tempDir, () async {
await _tryMacOSLint(macOSPodspecPath, <String>['--allow-warnings']);
});
section('Lint macOS podspec plugin as library');
await inDirectory(tempDir, () async {
await _tryMacOSLint(macOSPodspecPath, <String>['--allow-warnings', '--use-libraries']);
});
section('Create iOS application');
const iosAppName = 'test_app';
await inDirectory(tempDir, () async {
await flutter(
'create',
options: <String>['--org', 'io.flutter.devicelab', '--platforms=ios,macos', iosAppName],
);
});
section('Build iOS application with plugins as frameworks');
final String appPath = path.join(tempDir.path, iosAppName);
final pubspec = File(path.join(appPath, 'pubspec.yaml'));
String pubspecContent = pubspec.readAsStringSync();
// Add (randomly selected) first-party plugins that support iOS and macOS.
// Add the new plugins we just made.
pubspecContent = pubspecContent.replaceFirst(
'\ndependencies:\n',
'\ndependencies:\n $pluginName:\n path: $pluginPath\n url_launcher: 6.0.16\n url_launcher_macos:\n',
);
pubspec.writeAsStringSync(pubspecContent, flush: true);
await inDirectory(appPath, () async {
await flutter('build', options: <String>['ios', '--no-codesign']);
});
final iosPodfile = File(path.join(appPath, 'ios', 'Podfile'));
String iosPodfileContent = iosPodfile.readAsStringSync();
if (!iosPodfileContent.contains('use_frameworks!')) {
return TaskResult.failure('Expected default Podfile to contain use_frameworks');
}
section('Build iOS application with plugins as libraries');
iosPodfileContent = iosPodfileContent.replaceAll('use_frameworks!', '');
iosPodfile.writeAsStringSync(iosPodfileContent, flush: true);
await inDirectory(appPath, () async {
await flutter('build', options: <String>['ios', '--no-codesign']);
});
_validateIosPodfile(appPath);
section('Build macOS application with plugins as frameworks');
await inDirectory(appPath, () async {
await flutter('build', options: <String>['macos']);
});
final macOSPodfile = File(path.join(appPath, 'macos', 'Podfile'));
String macosPodfileContent = macOSPodfile.readAsStringSync();
if (!macosPodfileContent.contains('use_frameworks!')) {
return TaskResult.failure('Expected default Podfile to contain use_frameworks');
}
_validateMacOSPodfile(appPath);
section('Remove iOS support from plugin');
Directory(path.join(pluginPath, 'ios')).deleteSync(recursive: true);
const iosPlatformMap = '''
ios:
pluginClass: TestPlugin''';
final pluginPubspec = File(path.join(pluginPath, 'pubspec.yaml'));
String pluginPubspecContent = pluginPubspec.readAsStringSync();
if (!pluginPubspecContent.contains(iosPlatformMap)) {
return TaskResult.failure('Plugin pubspec.yaml missing iOS platform map');
}
pluginPubspecContent = pluginPubspecContent.replaceFirst(iosPlatformMap, '');
pluginPubspec.writeAsStringSync(pluginPubspecContent, flush: true);
await inDirectory(appPath, () async {
await flutter('clean');
await flutter('build', options: <String>['ios', '--no-codesign']);
});
section('Validate plugin without iOS platform');
final podfileLockFile = File(path.join(appPath, 'ios', 'Podfile.lock'));
final String podfileLockOutput = podfileLockFile.readAsStringSync();
if (!podfileLockOutput.contains(':path: ".symlinks/plugins/url_launcher_ios/ios"') ||
!podfileLockOutput.contains(':path: Flutter')
// test_plugin no longer supports iOS, shouldn't be present.
||
podfileLockOutput.contains(':path: ".symlinks/plugins/test_plugin/ios"')) {
print(podfileLockOutput);
return TaskResult.failure('Podfile.lock does not contain expected pods');
}
final String pluginSymlinks = path.join(appPath, 'ios', '.symlinks', 'plugins');
checkDirectoryExists(path.join(pluginSymlinks, 'url_launcher_ios', 'ios'));
// test_plugin no longer supports iOS, shouldn't exist!
checkDirectoryNotExists(path.join(pluginSymlinks, 'test_plugin'));
section('Build macOS application with plugins as libraries');
macosPodfileContent = macosPodfileContent.replaceAll('use_frameworks!', '');
macOSPodfile.writeAsStringSync(macosPodfileContent, flush: true);
await inDirectory(appPath, () async {
await flutter('build', options: <String>['macos']);
});
_validateMacOSPodfile(appPath);
return TaskResult.success(null);
} catch (e, stackTrace) {
print('Task exception stack trace:\n$stackTrace');
return TaskResult.failure(e.toString());
} finally {
rmTree(tempDir);
}
});
}
void _validateIosPodfile(String appPath) {
section('Validate iOS Podfile');
final podfileLockFile = File(path.join(appPath, 'ios', 'Podfile.lock'));
final String podfileLockOutput = podfileLockFile.readAsStringSync();
if (!podfileLockOutput.contains(':path: ".symlinks/plugins/url_launcher_ios/ios"') ||
!podfileLockOutput.contains(':path: Flutter') ||
!podfileLockOutput.contains(':path: ".symlinks/plugins/test_plugin/ios"') ||
podfileLockOutput.contains('url_launcher_macos')) {
print(podfileLockOutput);
throw TaskResult.failure('iOS Podfile.lock does not contain expected pods');
}
checkDirectoryNotExists(path.join(appPath, 'ios', 'Flutter', 'Flutter.framework'));
checkFileExists(path.join(appPath, 'ios', 'Flutter', 'Flutter.podspec'));
final String pluginSymlinks = path.join(appPath, 'ios', '.symlinks', 'plugins');
checkDirectoryExists(path.join(pluginSymlinks, 'url_launcher_ios', 'ios'));
checkDirectoryNotExists(path.join(pluginSymlinks, 'url_launcher_macos'));
checkDirectoryExists(path.join(pluginSymlinks, 'test_plugin', 'ios'));
// Make sure no Xcode build settings are leaking derived data/build directory into the ios directory.
checkDirectoryNotExists(path.join(appPath, 'ios', 'build'));
}
void _validateMacOSPodfile(String appPath) {
section('Validate macOS Podfile');
final podfileLockFile = File(path.join(appPath, 'macos', 'Podfile.lock'));
final String podfileLockOutput = podfileLockFile.readAsStringSync();
if (!podfileLockOutput.contains(':path: Flutter/ephemeral\n') ||
!podfileLockOutput.contains(
':path: Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos',
) ||
!podfileLockOutput.contains(':path: Flutter/ephemeral/.symlinks/plugins/test_plugin/macos') ||
podfileLockOutput.contains('url_launcher_ios/')) {
print(podfileLockOutput);
throw TaskResult.failure('macOS Podfile.lock does not contain expected pods');
}
checkFileExists(path.join(appPath, 'macos', 'Flutter', 'ephemeral', 'FlutterMacOS.podspec'));
final String pluginSymlinks = path.join(
appPath,
'macos',
'Flutter',
'ephemeral',
'.symlinks',
'plugins',
);
checkDirectoryExists(path.join(pluginSymlinks, 'url_launcher_macos', 'macos'));
checkDirectoryNotExists(path.join(pluginSymlinks, 'url_launcher_ios'));
checkDirectoryExists(path.join(pluginSymlinks, 'test_plugin', 'macos'));
}
Future<void> _tryMacOSLint(String podspecPath, List<String> extraArguments) async {
await eval('pod', <String>['lib', 'lint', podspecPath, ...extraArguments]);
}