// 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_apk.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 BuildApkCommand command = BuildApkCommand(); final CommandRunner runner = createTestCommandRunner(command); await runner.run([ 'apk', ...?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 BuildApkCommand command = await runCommandIn(projectPath); expect(await command.usageValues, containsPair(CustomDimensions.commandBuildApkTargetPlatform, 'android-arm,android-arm64')); }, overrides: { AndroidBuilder: () => FakeAndroidBuilder(), }, timeout: allowForCreateFlutterProject); testUsingContext('split per abi', () async { final String projectPath = await createProject(tempDir, arguments: ['--no-pub', '--template=app']); final BuildApkCommand commandWithFlag = await runCommandIn(projectPath, arguments: ['--split-per-abi']); expect(await commandWithFlag.usageValues, containsPair(CustomDimensions.commandBuildApkSplitPerAbi, 'true')); final BuildApkCommand commandWithoutFlag = await runCommandIn(projectPath); expect(await commandWithoutFlag.usageValues, containsPair(CustomDimensions.commandBuildApkSplitPerAbi, 'false')); }, overrides: { AndroidBuilder: () => FakeAndroidBuilder(), }, timeout: allowForCreateFlutterProject); testUsingContext('build type', () async { final String projectPath = await createProject(tempDir, arguments: ['--no-pub', '--template=app']); final BuildApkCommand commandDefault = await runCommandIn(projectPath); expect(await commandDefault.usageValues, containsPair(CustomDimensions.commandBuildApkBuildMode, 'release')); final BuildApkCommand commandInRelease = await runCommandIn(projectPath, arguments: ['--release']); expect(await commandInRelease.usageValues, containsPair(CustomDimensions.commandBuildApkBuildMode, 'release')); final BuildApkCommand commandInDebug = await runCommandIn(projectPath, arguments: ['--debug']); expect(await commandInDebug.usageValues, containsPair(CustomDimensions.commandBuildApkBuildMode, 'debug')); final BuildApkCommand commandInProfile = await runCommandIn(projectPath, arguments: ['--profile']); expect(await commandInProfile.usageValues, containsPair(CustomDimensions.commandBuildApkBuildMode, 'profile')); }, overrides: { AndroidBuilder: () => FakeAndroidBuilder(), }, timeout: allowForCreateFlutterProject); }); }