// 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 'package:file/file.dart'; import 'package:file/memory.dart'; import 'package:flutter_tools/src/cache.dart'; import 'package:flutter_tools/src/commands/analyze_base.dart'; import 'package:test/test.dart'; import 'src/context.dart'; const String _kFlutterRoot = '/data/flutter'; void main() { FileSystem fs; Directory tempDir; setUp(() { fs = new MemoryFileSystem(); fs.directory(_kFlutterRoot).createSync(recursive: true); Cache.flutterRoot = _kFlutterRoot; tempDir = fs.systemTempDirectory.createTempSync('analysis_test'); }); group('analyze', () { testUsingContext('inRepo', () { // Absolute paths expect(inRepo([tempDir.path]), isFalse); expect(inRepo([fs.path.join(tempDir.path, 'foo')]), isFalse); expect(inRepo([Cache.flutterRoot]), isTrue); expect(inRepo([fs.path.join(Cache.flutterRoot, 'foo')]), isTrue); // Relative paths fs.currentDirectory = Cache.flutterRoot; expect(inRepo(['.']), isTrue); expect(inRepo(['foo']), isTrue); fs.currentDirectory = tempDir.path; expect(inRepo(['.']), isFalse); expect(inRepo(['foo']), isFalse); // Ensure no exceptions inRepo(null); inRepo([]); }, overrides: { FileSystem: () => fs, }); }); }