| // Copyright 2016 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 'dart:io'; |
| |
| import 'package:flutter_tools/src/build_info.dart'; |
| import 'package:flutter_tools/src/cache.dart'; |
| import 'package:flutter_tools/src/toolchain.dart'; |
| import 'package:test/test.dart'; |
| |
| import 'src/context.dart'; |
| |
| void main() { |
| group('ToolConfiguration', () { |
| Directory tempDir; |
| |
| setUp(() { |
| tempDir = Directory.systemTemp.createTempSync('flutter_temp'); |
| }); |
| |
| tearDown(() { |
| tempDir.deleteSync(recursive: true); |
| }); |
| |
| testUsingContext('using cache', () { |
| ToolConfiguration toolConfig = new ToolConfiguration( |
| overrideCache: new Cache(rootOverride: tempDir) |
| ); |
| |
| expect( |
| toolConfig.getEngineArtifactsDirectory(TargetPlatform.android_arm, BuildMode.debug).path, |
| endsWith('cache/artifacts/engine/android-arm') |
| ); |
| expect( |
| toolConfig.getEngineArtifactsDirectory(TargetPlatform.android_arm, BuildMode.release).path, |
| endsWith('cache/artifacts/engine/android-arm-release') |
| ); |
| }); |
| |
| testUsingContext('using enginePath', () { |
| ToolConfiguration toolConfig = new ToolConfiguration(); |
| toolConfig.engineSrcPath = 'engine'; |
| toolConfig.engineBuildPath = 'engine/out/android_debug'; |
| |
| expect( |
| toolConfig.getEngineArtifactsDirectory(TargetPlatform.android_arm, BuildMode.debug).path, |
| 'engine/out/android_debug' |
| ); |
| }); |
| }); |
| } |