| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library options_test; | 5 library options_test; |
| 6 | 6 |
| 7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 8 //import 'package:analyzer_experimental/options.dart'; | 8 import 'package:analyzer_experimental/options.dart'; |
| 9 | 9 |
| 10 main() { | 10 main() { |
| 11 | 11 |
| 12 group('AnalyzerOptions.parse()', () { | 12 group('AnalyzerOptions.parse()', () { |
| 13 | 13 |
| 14 test('defaults', () { | 14 test('defaults', () { |
| 15 // CommandLineOptions options = CommandLineOptions.parse(['foo.dart']); | 15 CommandLineOptions options = CommandLineOptions |
| 16 // expect(options, isNotNull); | 16 .parse(['--dart-sdk', '.', 'foo.dart']); |
| 17 // expect(options.shouldBatch, isFalse); | 17 expect(options, isNotNull); |
| 18 // expect(options.machineFormat, isFalse); | 18 expect(options.shouldBatch, isFalse); |
| 19 // expect(options.ignoreUnrecognizedFlags, isFalse); | 19 expect(options.machineFormat, isFalse); |
| 20 // expect(options.showPackageWarnings, isFalse); | 20 expect(options.ignoreUnrecognizedFlags, isFalse); |
| 21 // expect(options.showSdkWarnings, isFalse); | 21 expect(options.showPackageWarnings, isFalse); |
| 22 // expect(options.warningsAreFatal, isFalse); | 22 expect(options.showSdkWarnings, isFalse); |
| 23 // expect(options.dartSdkPath, isNull); | 23 expect(options.warningsAreFatal, isFalse); |
| 24 // expect(options.sourceFiles, equals(['foo.dart'])); | 24 expect(options.dartSdkPath, isNotNull); |
| 25 expect(options.sourceFiles, equals(['foo.dart'])); |
| 26 }); |
| 27 |
| 28 test('machine format', () { |
| 29 CommandLineOptions options = CommandLineOptions |
| 30 .parse(['--dart-sdk', '.', '--format=machine', 'foo.dart']); |
| 31 expect(options.machineFormat, isTrue); |
| 32 }); |
| 33 |
| 34 test('package root', () { |
| 35 CommandLineOptions options = CommandLineOptions |
| 36 .parse(['--dart-sdk', '.', '-p', 'bar', 'foo.dart']); |
| 37 expect(options.packageRootPath, equals('bar')); |
| 38 }); |
| 39 |
| 40 test('package warnings', () { |
| 41 CommandLineOptions options = CommandLineOptions |
| 42 .parse(['--dart-sdk', '.', '--package-warnings', 'foo.dart']); |
| 43 expect(options.showPackageWarnings, isTrue); |
| 44 }); |
| 45 |
| 46 test('sdk warnings', () { |
| 47 CommandLineOptions options = CommandLineOptions |
| 48 .parse(['--dart-sdk', '.', '--warnings', 'foo.dart']); |
| 49 expect(options.showSdkWarnings, isTrue); |
| 25 }); | 50 }); |
| 26 | 51 |
| 27 // test('notice unrecognized flags', () { | 52 // test('notice unrecognized flags', () { |
| 28 // CommandLineOptions options = new CommandLineOptions.parse(['--bar', '--b
az', | 53 // CommandLineOptions options = new CommandLineOptions.parse(['--bar', '--b
az', |
| 29 // 'foo.dart']); | 54 // 'foo.dart']); |
| 30 // expect(options, isNull); | 55 // expect(options, isNull); |
| 31 // }); | 56 // }); |
| 32 // | 57 // |
| 33 // test('ignore unrecognized flags', () { | 58 // test('ignore unrecognized flags', () { |
| 34 // CommandLineOptions options = new CommandLineOptions.parse([ | 59 // CommandLineOptions options = new CommandLineOptions.parse([ |
| 35 // '--ignore_unrecognized_flags', '--bar', '--baz', 'foo.dart']); | 60 // '--ignore_unrecognized_flags', '--bar', '--baz', 'foo.dart']); |
| 36 // expect(options, isNotNull); | 61 // expect(options, isNotNull); |
| 37 // expect(options.sourceFiles, equals(['foo.dart'])); | 62 // expect(options.sourceFiles, equals(['foo.dart'])); |
| 38 // }); | 63 // }); |
| 39 | 64 |
| 40 }); | 65 }); |
| 41 | 66 |
| 42 } | 67 } |
| 43 | 68 |
| OLD | NEW |