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

Unified Diff: utils/pub/command_lish.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 | « no previous file | utils/pub/entrypoint.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/command_lish.dart
diff --git a/utils/pub/command_lish.dart b/utils/pub/command_lish.dart
index 883bb2136e319f025a0e8ff5ac57814e636b451e..55237e94396c3a46493af4ac5d898adf4f9b1c9e 100644
--- a/utils/pub/command_lish.dart
+++ b/utils/pub/command_lish.dart
@@ -14,6 +14,7 @@ import 'pub.dart';
import 'io.dart';
import 'git.dart' as git;
import 'oauth2.dart' as oauth2;
+import 'validator.dart';
// TODO(nweiz): Make "publish" the primary name for this command. See issue
// 6949.
@@ -42,7 +43,8 @@ class LishCommand extends PubCommand {
client.get(server.resolve("/packages/versions/new.json")),
_filesToPublish.transform((files) {
return createTarGz(files, baseDir: entrypoint.root.dir);
- }).chain(consumeInputStream)
+ }).chain(consumeInputStream),
+ _validate()
]).chain((results) {
var response = results[0];
var packageBytes = results[1];
@@ -170,4 +172,23 @@ class LishCommand extends PubCommand {
void _invalidServerResponse(http.Response response) {
throw 'Invalid server response:\n${response.body}';
}
+
+ /// Validates the package. Throws an exception if it's invalid.
+ Future _validate() {
+ return Validator.runAll(entrypoint).chain((pair) {
+ var errors = pair.first;
+ var warnings = pair.last;
+
+ if (errors.isEmpty && warnings.isEmpty) return new Future.immediate(null);
+ if (!errors.isEmpty) throw "Package validation failed.";
+
+ var s = warnings.length == 1 ? '' : 's';
+ stdout.writeString("Package has ${warnings.length} warning$s. Upload "
+ "anyway (y/n)? ");
+ return readLine().transform((line) {
+ if (new RegExp(r"^[yY]").hasMatch(line)) return;
+ throw "Package upload canceled.";
+ });
+ });
+ }
}
« no previous file with comments | « no previous file | utils/pub/entrypoint.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698