// Copyright 2019 The Chromium 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 'package:args/command_runner.dart'; import 'package:flutter_tools/src/android/android_builder.dart'; import 'package:flutter_tools/src/base/file_system.dart'; import 'package:flutter_tools/src/cache.dart'; import 'package:flutter_tools/src/commands/build_appbundle.dart'; import 'package:flutter_tools/src/reporting/reporting.dart'; import '../../src/common.dart'; import '../../src/context.dart'; void main() { Cache.disableLocking(); group('getUsage', () { Directory tempDir; setUp(() { tempDir = fs.systemTempDirectory.createTempSync('flutter_tools_packages_test.'); }); tearDown(() { tryToDelete(tempDir); }); Future runCommandIn(String target, { List arguments }) async { final BuildAppBundleCommand command = BuildAppBundleCommand(); final CommandRunner runner = createTestCommandRunner(command); await runner.run([ 'appbundle', ...?arguments, fs.path.join(target, 'lib', 'main.dart'), ]); return command; } testUsingContext('indicate the default target platforms', () async { final String projectPath = await createProject(tempDir, arguments: ['--no-pub', '--template=app']); final BuildAppBundleCommand command = await runCommandIn(projectPath); expect(await command.usageValues, containsPair(CustomDimensions.commandBuildAppBundleTargetPlatform, 'android-arm,android-arm64')); }, overrides: { AndroidBuilder: () => FakeAndroidBuilder(), }, timeout: allowForCreateFlutterProject); testUsingContext('build type', () async { final String projectPath = await createProject(tempDir, arguments: ['--no-pub', '--template=app']); final BuildAppBundleCommand commandDefault = await runCommandIn(projectPath); expect(await commandDefault.usageValues, containsPair(CustomDimensions.commandBuildAppBundleBuildMode, 'release')); final BuildAppBundleCommand commandInRelease = await runCommandIn(projectPath, arguments: ['--release']); expect(await commandInRelease.usageValues, containsPair(CustomDimensions.commandBuildAppBundleBuildMode, 'release')); final BuildAppBundleCommand commandInDebug = await runCommandIn(projectPath, arguments: ['--debug']); expect(await commandInDebug.usageValues, containsPair(CustomDimensions.commandBuildAppBundleBuildMode, 'debug')); final BuildAppBundleCommand commandInProfile = await runCommandIn(projectPath, arguments: ['--profile']); expect(await commandInProfile.usageValues, containsPair(CustomDimensions.commandBuildAppBundleBuildMode, 'profile')); }, overrides: { AndroidBuilder: () => FakeAndroidBuilder(), }, timeout: allowForCreateFlutterProject); }); }