| 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 import 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'dart:convert'; | 6 import 'dart:convert'; |
| 7 | 7 |
| 8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
| 9 import 'package:http/testing.dart'; | 9 import 'package:http/testing.dart'; |
| 10 import 'package:path/path.dart' as path; | 10 import 'package:path/path.dart' as path; |
| 11 import 'package:pub/src/entrypoint.dart'; |
| 12 import 'package:pub/src/validator.dart'; |
| 13 import 'package:pub/src/validator/dependency.dart'; |
| 11 import 'package:scheduled_test/scheduled_test.dart'; | 14 import 'package:scheduled_test/scheduled_test.dart'; |
| 12 | 15 |
| 13 import '../../lib/src/entrypoint.dart'; | |
| 14 import '../../lib/src/validator.dart'; | |
| 15 import '../../lib/src/validator/dependency.dart'; | |
| 16 import '../descriptor.dart' as d; | 16 import '../descriptor.dart' as d; |
| 17 import '../test_pub.dart'; | 17 import '../test_pub.dart'; |
| 18 import 'utils.dart'; | 18 import 'utils.dart'; |
| 19 | 19 |
| 20 Validator dependency(Entrypoint entrypoint) => | 20 Validator dependency(Entrypoint entrypoint) => |
| 21 new DependencyValidator(entrypoint); | 21 new DependencyValidator(entrypoint); |
| 22 | 22 |
| 23 expectDependencyValidationError(String error) { | 23 expectDependencyValidationError(String error) { |
| 24 expect(schedulePackageValidation(dependency), | 24 expect(schedulePackageValidation(dependency), |
| 25 completion(pairOf(anyElement(contains(error)), isEmpty))); | 25 completion(pairOf(anyElement(contains(error)), isEmpty))); |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 d.libPubspec("test_pkg", "1.0.0", deps: { | 408 d.libPubspec("test_pkg", "1.0.0", deps: { |
| 409 "foo": "^1.2.3" | 409 "foo": "^1.2.3" |
| 410 }, sdk: ">=1.5.0 <2.0.0") | 410 }, sdk: ">=1.5.0 <2.0.0") |
| 411 ]).create(); | 411 ]).create(); |
| 412 | 412 |
| 413 expectDependencyValidationError(' foo: ">=1.2.3 <2.0.0"'); | 413 expectDependencyValidationError(' foo: ">=1.2.3 <2.0.0"'); |
| 414 }); | 414 }); |
| 415 }); | 415 }); |
| 416 }); | 416 }); |
| 417 } | 417 } |
| OLD | NEW |