| // 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:async'; |
| import 'dart:io'; |
| |
| import 'package:flutter_devicelab/framework/apk_utils.dart'; |
| import 'package:flutter_devicelab/framework/framework.dart'; |
| import 'package:flutter_devicelab/framework/utils.dart'; |
| |
| Future<void> main() async { |
| await task(() async { |
| try { |
| await runPluginProjectTest((FlutterPluginProject pluginProject) async { |
| section('APK content for task assembleDebug with target platform = android-arm'); |
| await pluginProject.runGradleTask('assembleDebug', |
| options: <String>['-Ptarget-platform=android-arm']); |
| |
| final Iterable<String> apkFiles = await getFilesInApk(pluginProject.debugApkPath); |
| |
| checkCollectionContains<String>(<String>[ |
| ...flutterAssets, |
| ...debugAssets, |
| ...baseApkFiles, |
| 'lib/armeabi-v7a/libflutter.so', |
| // Debug mode intentionally includes `x86` and `x86_64`. |
| 'lib/x86/libflutter.so', |
| 'lib/x86_64/libflutter.so', |
| ], apkFiles); |
| |
| checkCollectionDoesNotContain<String>(<String>[ |
| 'lib/arm64-v8a/libapp.so', |
| 'lib/armeabi-v7a/libapp.so', |
| 'lib/x86/libapp.so', |
| 'lib/x86_64/libapp.so', |
| ], apkFiles); |
| }); |
| |
| await runPluginProjectTest((FlutterPluginProject pluginProject) async { |
| section('APK content for task assembleDebug with target platform = android-x86'); |
| // This is used by `flutter run` |
| await pluginProject.runGradleTask('assembleDebug', |
| options: <String>['-Ptarget-platform=android-x86']); |
| |
| final Iterable<String> apkFiles = await getFilesInApk(pluginProject.debugApkPath); |
| |
| checkCollectionContains<String>(<String>[ |
| ...flutterAssets, |
| ...debugAssets, |
| ...baseApkFiles, |
| // Debug mode intentionally includes `x86` and `x86_64`. |
| 'lib/x86/libflutter.so', |
| 'lib/x86_64/libflutter.so', |
| ], apkFiles); |
| |
| checkCollectionDoesNotContain<String>(<String>[ |
| 'lib/armeabi-v7a/libapp.so', |
| 'lib/x86/libapp.so', |
| 'lib/x86_64/libapp.so', |
| ], apkFiles); |
| }); |
| |
| await runPluginProjectTest((FlutterPluginProject pluginProject) async { |
| section('APK content for task assembleDebug with target platform = android-x64'); |
| // This is used by `flutter run` |
| await pluginProject.runGradleTask('assembleDebug', |
| options: <String>['-Ptarget-platform=android-x64']); |
| |
| final Iterable<String> apkFiles = await getFilesInApk(pluginProject.debugApkPath); |
| |
| checkCollectionContains<String>(<String>[ |
| ...flutterAssets, |
| ...debugAssets, |
| ...baseApkFiles, |
| // Debug mode intentionally includes `x86` and `x86_64`. |
| 'lib/x86/libflutter.so', |
| 'lib/x86_64/libflutter.so', |
| ], apkFiles); |
| |
| checkCollectionDoesNotContain<String>(<String>[ |
| 'lib/armeabi-v7a/libapp.so', |
| 'lib/x86/libapp.so', |
| 'lib/x86_64/libapp.so', |
| ], apkFiles); |
| }); |
| |
| await runPluginProjectTest((FlutterPluginProject pluginProject) async { |
| section('APK content for task assembleRelease with target platform = android-arm'); |
| await pluginProject.runGradleTask('assembleRelease', |
| options: <String>['-Ptarget-platform=android-arm']); |
| |
| final Iterable<String> apkFiles = await getFilesInApk(pluginProject.releaseApkPath); |
| |
| checkCollectionContains<String>(<String>[ |
| ...flutterAssets, |
| ...baseApkFiles, |
| 'lib/armeabi-v7a/libflutter.so', |
| 'lib/armeabi-v7a/libapp.so', |
| ], apkFiles); |
| |
| checkCollectionDoesNotContain<String>(<String>[ |
| ...debugAssets, |
| 'lib/arm64-v8a/libflutter.so', |
| 'lib/arm64-v8a/libapp.so', |
| ], apkFiles); |
| }); |
| |
| await runPluginProjectTest((FlutterPluginProject pluginProject) async { |
| section('APK content for task assembleRelease with target platform = android-arm64'); |
| await pluginProject.runGradleTask('assembleRelease', |
| options: <String>['-Ptarget-platform=android-arm64']); |
| |
| final Iterable<String> apkFiles = await getFilesInApk(pluginProject.releaseApkPath); |
| |
| checkCollectionContains<String>(<String>[ |
| ...flutterAssets, |
| ...baseApkFiles, |
| 'lib/arm64-v8a/libflutter.so', |
| 'lib/arm64-v8a/libapp.so', |
| ], apkFiles); |
| |
| checkCollectionDoesNotContain<String>(<String>[ |
| ...debugAssets, |
| 'lib/armeabi-v7a/libflutter.so', |
| 'lib/armeabi-v7a/libapp.so', |
| ], apkFiles); |
| }); |
| |
| await runProjectTest((FlutterProject project) async { |
| section('gradlew assembleDebug'); |
| await project.runGradleTask('assembleDebug'); |
| final String errorMessage = validateSnapshotDependency(project, 'kernel_blob.bin'); |
| if (errorMessage != null) { |
| throw TaskResult.failure(errorMessage); |
| } |
| }); |
| |
| await runProjectTest((FlutterProject project) async { |
| section('gradlew assembleProfile'); |
| await project.runGradleTask('assembleProfile'); |
| }); |
| |
| await runProjectTest((FlutterProject project) async { |
| section('gradlew assembleLocal (custom debug build)'); |
| await project.addCustomBuildType('local', initWith: 'debug'); |
| await project.runGradleTask('assembleLocal'); |
| }); |
| |
| await runProjectTest((FlutterProject project) async { |
| section('gradlew assembleBeta (custom release build)'); |
| await project.addCustomBuildType('beta', initWith: 'release'); |
| await project.runGradleTask('assembleBeta'); |
| }); |
| |
| await runProjectTest((FlutterProject project) async { |
| section('gradlew assembleLocal (plugin with custom build type)'); |
| await project.addCustomBuildType('local', initWith: 'debug'); |
| await project.addGlobalBuildType('local', initWith: 'debug'); |
| section('Add plugin'); |
| await project.addPlugin('path_provider'); |
| await project.getPackages(); |
| |
| await project.runGradleTask('assembleLocal'); |
| }); |
| |
| await runProjectTest((FlutterProject project) async { |
| section('gradlew assembleFreeDebug (product flavor)'); |
| await project.addProductFlavors(<String>['free']); |
| await project.runGradleTask('assembleFreeDebug'); |
| }); |
| |
| await runProjectTest((FlutterProject project) async { |
| section('gradlew on build script with error'); |
| await project.introduceError(); |
| final ProcessResult result = |
| await project.resultOfGradleTask('assembleRelease'); |
| if (result.exitCode == 0) |
| throw failure( |
| 'Gradle did not exit with error as expected', result); |
| final String output = '${result.stdout}\n${result.stderr}'; |
| if (output.contains('GradleException') || |
| output.contains('Failed to notify') || |
| output.contains('at org.gradle')) |
| throw failure( |
| 'Gradle output should not contain stacktrace', result); |
| if (!output.contains('Build failed') || !output.contains('builTypes')) |
| throw failure( |
| 'Gradle output should contain a readable error message', |
| result); |
| }); |
| |
| await runProjectTest((FlutterProject project) async { |
| section('flutter build apk on build script with error'); |
| await project.introduceError(); |
| final ProcessResult result = await project.resultOfFlutterCommand('build', <String>['apk']); |
| if (result.exitCode == 0) |
| throw failure( |
| 'flutter build apk should fail when Gradle does', result); |
| final String output = '${result.stdout}\n${result.stderr}'; |
| if (!output.contains('Build failed') || !output.contains('builTypes')) |
| throw failure( |
| 'flutter build apk output should contain a readable Gradle error message', |
| result); |
| if (hasMultipleOccurrences(output, 'builTypes')) |
| throw failure( |
| 'flutter build apk should not invoke Gradle repeatedly on error', |
| result); |
| }); |
| |
| await runPluginProjectTest((FlutterPluginProject pluginProject) async { |
| section('gradlew assembleDebug on plugin example'); |
| await pluginProject.runGradleTask('assembleDebug'); |
| if (!File(pluginProject.debugApkPath).existsSync()) |
| throw TaskResult.failure( |
| 'Gradle did not produce an apk file at the expected place'); |
| }); |
| |
| return TaskResult.success(null); |
| } on TaskResult catch (taskResult) { |
| return taskResult; |
| } catch (e) { |
| return TaskResult.failure(e.toString()); |
| } |
| }); |
| } |