// 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/cache.dart'; import 'package:flutter_tools/src/commands/analyze_base.dart'; import 'package:flutter_tools/src/runner/flutter_command_runner.dart'; import 'package:path/path.dart' as path; import 'package:test/test.dart'; import 'src/context.dart'; void main() { Directory tempDir; setUp(() { FlutterCommandRunner.initFlutterRoot(); tempDir = Directory.systemTemp.createTempSync('analysis_test'); }); tearDown(() { tempDir?.deleteSync(recursive: true); }); group('analyze', () { testUsingContext('inRepo', () { // Absolute paths expect(inRepo([tempDir.path]), isFalse); expect(inRepo([path.join(tempDir.path, 'foo')]), isFalse); expect(inRepo([Cache.flutterRoot]), isTrue); expect(inRepo([path.join(Cache.flutterRoot, 'foo')]), isTrue); // Relative paths String oldWorkingDirectory = path.current; try { Directory.current = Cache.flutterRoot; expect(inRepo(['.']), isTrue); expect(inRepo(['foo']), isTrue); Directory.current = tempDir.path; expect(inRepo(['.']), isFalse); expect(inRepo(['foo']), isFalse); } finally { Directory.current = oldWorkingDirectory; } // Ensure no exceptions inRepo(null); inRepo([]); }); }); }