Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(977)

Unified Diff: utils/tests/pub/validator_test.dart

Issue 11434118: Add validation infrastructure for "pub lish". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/tests/pub/test_pub.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/validator_test.dart
diff --git a/utils/tests/pub/validator_test.dart b/utils/tests/pub/validator_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..eaada1a0aae22bb1ff092b9e078b024a9ffc5687
--- /dev/null
+++ b/utils/tests/pub/validator_test.dart
@@ -0,0 +1,114 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library validator_test;
+
+import 'dart:io';
+import 'dart:json';
+
+import 'test_pub.dart';
+import '../../../pkg/unittest/lib/unittest.dart';
+import '../../pub/entrypoint.dart';
+import '../../pub/io.dart';
+import '../../pub/validator.dart';
+import '../../pub/validator/pubspec_field.dart';
+
+void expectNoValidationError(ValidatorCreator fn) {
+ expectLater(schedulePackageValidation(fn), pairOf(isEmpty, isEmpty));
+}
+
+void expectValidationError(ValidatorCreator fn) {
+ expectLater(schedulePackageValidation(fn), pairOf(isNot(isEmpty), anything));
+}
+
+void expectValidationWarning(ValidatorCreator fn) {
+ expectLater(schedulePackageValidation(fn), pairOf(isEmpty, isNot(isEmpty)));
+}
+
+Validator pubspecField(Entrypoint entrypoint) =>
+ new PubspecFieldValidator(entrypoint);
+
+main() {
+ group('should consider a package valid if it', () {
+ test('looks normal', () {
+ dir(appPath, [libPubspec("test_pkg", "1.0.0")]).scheduleCreate();
+ expectNoValidationError(pubspecField);
+ run();
+ });
+
+ test('has "authors" instead of "author"', () {
+ var package = package("test_pkg", "1.0.0");
+ package["authors"] = [package.remove("author")];
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+ expectNoValidationError(pubspecField);
+ run();
+ });
+ });
+
+ group('should consider a package invalid if it', () {
+ test('is missing the "homepage" field', () {
+ var package = package("test_pkg", "1.0.0");
+ package.remove("homepage");
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+
+ expectValidationError(pubspecField);
+ run();
+ });
+
+ test('is missing the "author" field', () {
+ var package = package("test_pkg", "1.0.0");
+ package.remove("author");
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+
+ expectValidationError(pubspecField);
+ run();
+ });
+
+ test('has a single author without an email', () {
+ var package = package("test_pkg", "1.0.0");
+ package["author"] = "Nathan Weizenbaum";
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+
+ expectValidationWarning(pubspecField);
+ run();
+ });
+
+ test('has one of several authors without an email', () {
+ var package = package("test_pkg", "1.0.0");
+ package.remove("author");
+ package["authors"] = [
+ "Bob Nystrom <rnystrom@google.com>",
+ "Nathan Weizenbaum",
+ "John Messerly <jmesserly@google.com>"
+ ];
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+
+ expectValidationWarning(pubspecField);
+ run();
+ });
+
+ test('has a single author without a name', () {
+ var package = package("test_pkg", "1.0.0");
+ package["author"] = "<nweiz@google.com>";
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+
+ expectValidationWarning(pubspecField);
+ run();
+ });
+
+ test('has one of several authors without a name', () {
+ var package = package("test_pkg", "1.0.0");
+ package.remove("author");
+ package["authors"] = [
+ "Bob Nystrom <rnystrom@google.com>",
+ "<nweiz@google.com>",
+ "John Messerly <jmesserly@google.com>"
+ ];
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+
+ expectValidationWarning(pubspecField);
+ run();
+ });
+ });
+}
« no previous file with comments | « utils/tests/pub/test_pub.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698