flutter/packages/flutter_tools/test/general.shard/android/build_validation_test.dart
Jonah Williams 74bd7b6f6d
[flutter_tools] opt all flutter tool libraries and tests out of null safety. (#74832)
* opt out the flutter tool

* oops EOF

* fix import

* Update tool_backend.dart

* Update daemon_client.dart

* fix more
2021-01-27 15:17:53 -08:00

67 lines
2.4 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.
// @dart = 2.8
import 'package:flutter_tools/src/android/build_validation.dart';
import 'package:flutter_tools/src/build_info.dart';
import '../../src/common.dart';
void main() {
testWithoutContext('validateBuild throws if attempting to build release/profile on x86', () {
expect(() => validateBuild(
const AndroidBuildInfo(
BuildInfo.release,
targetArchs: <AndroidArch>[AndroidArch.x86],
),
), throwsToolExit(message: 'Cannot build release mode for x86 ABI.'));
});
testWithoutContext('validateBuild does not throw on AOT supported architectures', () {
expect(() => validateBuild(
const AndroidBuildInfo(
BuildInfo.release,
targetArchs: <AndroidArch>[AndroidArch.x86_64, AndroidArch.armeabi_v7a, AndroidArch.arm64_v8a],
),
), returnsNormally);
});
testWithoutContext('validateBuild throws if an invalid build number is specified', () {
expect(() => validateBuild(
const AndroidBuildInfo(
// Invalid number
BuildInfo(BuildMode.debug, '', treeShakeIcons: false, buildNumber: 'a'),
targetArchs: <AndroidArch>[AndroidArch.x86],
),
), throwsToolExit(message: 'buildNumber: a was not a valid integer value.'));
expect(() => validateBuild(
const AndroidBuildInfo(
// Negative number
BuildInfo(BuildMode.debug, '', treeShakeIcons: false, buildNumber: '-1'),
targetArchs: <AndroidArch>[AndroidArch.x86],
),
), throwsToolExit(message: 'buildNumber: -1 must be a positive integer value.'));
expect(() => validateBuild(
const AndroidBuildInfo(
// bigger than maximum supported play store value
BuildInfo(BuildMode.debug, '', treeShakeIcons: false, buildNumber: '2100000001'),
targetArchs: <AndroidArch>[AndroidArch.x86],
),
), throwsToolExit(message: 'buildNumber: 2100000001 is greater than the maximum '
'allowed value of 2100000000.'));
});
testWithoutContext('validateBuild does not throw on positive number', () {
expect(() => validateBuild(
const AndroidBuildInfo(
BuildInfo(BuildMode.debug, '', treeShakeIcons: false, buildNumber: '2'),
targetArchs: <AndroidArch>[AndroidArch.x86],
),
), returnsNormally);
});
}