OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library validator_test; |
| 6 |
| 7 import 'dart:io'; |
| 8 import 'dart:json'; |
| 9 |
| 10 import 'test_pub.dart'; |
| 11 import '../../../pkg/unittest/lib/unittest.dart'; |
| 12 import '../../pub/entrypoint.dart'; |
| 13 import '../../pub/io.dart'; |
| 14 import '../../pub/validator.dart'; |
| 15 import '../../pub/validator/pubspec_field.dart'; |
| 16 |
| 17 void expectNoValidationError(ValidatorCreator fn) { |
| 18 expectLater(schedulePackageValidation(fn), pairOf(isEmpty, isEmpty)); |
| 19 } |
| 20 |
| 21 void expectValidationError(ValidatorCreator fn) { |
| 22 expectLater(schedulePackageValidation(fn), pairOf(isNot(isEmpty), anything)); |
| 23 } |
| 24 |
| 25 void expectValidationWarning(ValidatorCreator fn) { |
| 26 expectLater(schedulePackageValidation(fn), pairOf(isEmpty, isNot(isEmpty))); |
| 27 } |
| 28 |
| 29 Validator pubspecField(Entrypoint entrypoint) => |
| 30 new PubspecFieldValidator(entrypoint); |
| 31 |
| 32 main() { |
| 33 group('should consider a package valid if it', () { |
| 34 test('looks normal', () { |
| 35 dir(appPath, [libPubspec("test_pkg", "1.0.0")]).scheduleCreate(); |
| 36 expectNoValidationError(pubspecField); |
| 37 run(); |
| 38 }); |
| 39 |
| 40 test('has "authors" instead of "author"', () { |
| 41 var package = package("test_pkg", "1.0.0"); |
| 42 package["authors"] = [package.remove("author")]; |
| 43 dir(appPath, [pubspec(package)]).scheduleCreate(); |
| 44 expectNoValidationError(pubspecField); |
| 45 run(); |
| 46 }); |
| 47 }); |
| 48 |
| 49 group('should consider a package invalid if it', () { |
| 50 test('is missing the "homepage" field', () { |
| 51 var package = package("test_pkg", "1.0.0"); |
| 52 package.remove("homepage"); |
| 53 dir(appPath, [pubspec(package)]).scheduleCreate(); |
| 54 |
| 55 expectValidationError(pubspecField); |
| 56 run(); |
| 57 }); |
| 58 |
| 59 test('is missing the "author" field', () { |
| 60 var package = package("test_pkg", "1.0.0"); |
| 61 package.remove("author"); |
| 62 dir(appPath, [pubspec(package)]).scheduleCreate(); |
| 63 |
| 64 expectValidationError(pubspecField); |
| 65 run(); |
| 66 }); |
| 67 |
| 68 test('has a single author without an email', () { |
| 69 var package = package("test_pkg", "1.0.0"); |
| 70 package["author"] = "Nathan Weizenbaum"; |
| 71 dir(appPath, [pubspec(package)]).scheduleCreate(); |
| 72 |
| 73 expectValidationWarning(pubspecField); |
| 74 run(); |
| 75 }); |
| 76 |
| 77 test('has one of several authors without an email', () { |
| 78 var package = package("test_pkg", "1.0.0"); |
| 79 package.remove("author"); |
| 80 package["authors"] = [ |
| 81 "Bob Nystrom <rnystrom@google.com>", |
| 82 "Nathan Weizenbaum", |
| 83 "John Messerly <jmesserly@google.com>" |
| 84 ]; |
| 85 dir(appPath, [pubspec(package)]).scheduleCreate(); |
| 86 |
| 87 expectValidationWarning(pubspecField); |
| 88 run(); |
| 89 }); |
| 90 |
| 91 test('has a single author without a name', () { |
| 92 var package = package("test_pkg", "1.0.0"); |
| 93 package["author"] = "<nweiz@google.com>"; |
| 94 dir(appPath, [pubspec(package)]).scheduleCreate(); |
| 95 |
| 96 expectValidationWarning(pubspecField); |
| 97 run(); |
| 98 }); |
| 99 |
| 100 test('has one of several authors without a name', () { |
| 101 var package = package("test_pkg", "1.0.0"); |
| 102 package.remove("author"); |
| 103 package["authors"] = [ |
| 104 "Bob Nystrom <rnystrom@google.com>", |
| 105 "<nweiz@google.com>", |
| 106 "John Messerly <jmesserly@google.com>" |
| 107 ]; |
| 108 dir(appPath, [pubspec(package)]).scheduleCreate(); |
| 109 |
| 110 expectValidationWarning(pubspecField); |
| 111 run(); |
| 112 }); |
| 113 }); |
| 114 } |
OLD | NEW |