OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 pubspec_test; | 5 library pubspec_test; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:unittest/unittest.dart'; | 9 import 'package:unittest/unittest.dart'; |
10 | 10 |
11 import '../lib/src/package.dart'; | 11 import '../lib/src/package.dart'; |
12 import '../lib/src/pubspec.dart'; | 12 import '../lib/src/pubspec.dart'; |
13 import '../lib/src/source.dart'; | 13 import '../lib/src/source.dart'; |
14 import '../lib/src/source_registry.dart'; | 14 import '../lib/src/source_registry.dart'; |
15 import '../lib/src/version.dart'; | 15 import '../lib/src/version.dart'; |
16 import 'test_pub.dart'; | 16 import 'test_pub.dart'; |
17 | 17 |
18 class MockSource extends Source { | 18 class MockSource extends Source { |
19 final String name = "mock"; | 19 final String name = "mock"; |
20 | 20 |
21 Future<Pubspec> doDescribe(PackageId id) => throw new UnsupportedError( | 21 Future<Pubspec> doDescribe(PackageId id) => throw new UnsupportedError( |
22 "Cannot describe mock packages."); | 22 "Cannot describe mock packages."); |
23 | 23 |
24 Future<bool> get(PackageId id, String path) => throw new UnsupportedError( | 24 Future ensureLocal(PackageId id) => throw new UnsupportedError( |
| 25 "Cannot get a mock package."); |
| 26 |
| 27 Future get(PackageId id, String symlink) => throw new UnsupportedError( |
25 "Cannot get a mock package."); | 28 "Cannot get a mock package."); |
26 | 29 |
27 Future<String> getDirectory(PackageId id) => throw new UnsupportedError( | 30 Future<String> getDirectory(PackageId id) => throw new UnsupportedError( |
28 "Cannot get the directory for mock packages."); | 31 "Cannot get the directory for mock packages."); |
29 | 32 |
30 dynamic parseDescription(String filePath, description, | 33 dynamic parseDescription(String filePath, description, |
31 {bool fromLockFile: false}) { | 34 {bool fromLockFile: false}) { |
32 if (description != 'ok') throw new FormatException('Bad'); | 35 if (description != 'ok') throw new FormatException('Bad'); |
33 return description; | 36 return description; |
34 } | 37 } |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 (pubspec) => pubspec.environment); | 414 (pubspec) => pubspec.environment); |
412 }); | 415 }); |
413 | 416 |
414 test("throws if the sdk isn't a valid version constraint", () { | 417 test("throws if the sdk isn't a valid version constraint", () { |
415 expectPubspecException('environment: {sdk: "oopies"}', | 418 expectPubspecException('environment: {sdk: "oopies"}', |
416 (pubspec) => pubspec.environment); | 419 (pubspec) => pubspec.environment); |
417 }); | 420 }); |
418 }); | 421 }); |
419 }); | 422 }); |
420 } | 423 } |
OLD | NEW |