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

Unified Diff: utils/tests/pub/pub_lish_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/pub/validator/pubspec_field.dart ('k') | utils/tests/pub/test_pub.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/pub_lish_test.dart
diff --git a/utils/tests/pub/pub_lish_test.dart b/utils/tests/pub/pub_lish_test.dart
index 165572a3856eaa6865683546bd233b274c46b4cf..b2b165555187083beb1b63a96c6a346ec5a49a3c 100644
--- a/utils/tests/pub/pub_lish_test.dart
+++ b/utils/tests/pub/pub_lish_test.dart
@@ -96,6 +96,65 @@ main() {
run();
});
+ test('package validation has an error', () {
+ var package = package("test_pkg", "1.0.0");
+ package.remove("homepage");
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+
+ var server = new ScheduledServer();
+ credentialsFile(server, 'access token').scheduleCreate();
+ var pub = startPubLish(server);
+ server.ignore('GET', '/packages/versions/new.json');
+
+ pub.shouldExit(1);
+ expectLater(pub.remainingStderr(), contains("Package validation failed."));
+
+ run();
+ });
+
+ test('package validation has a warning and is canceled', () {
+ var package = package("test_pkg", "1.0.0");
+ package["author"] = "Nathan Weizenbaum";
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+
+ var server = new ScheduledServer();
+ credentialsFile(server, 'access token').scheduleCreate();
+ var pub = startPubLish(server);
+ server.ignore('GET', '/packages/versions/new.json');
+
+ pub.writeLine("n");
+ pub.shouldExit(1);
+ expectLater(pub.remainingStderr(), contains("Package upload canceled."));
+
+ run();
+ });
+
+ test('package validation has a warning and continues', () {
+ var package = package("test_pkg", "1.0.0");
+ package["author"] = "Nathan Weizenbaum";
+ dir(appPath, [pubspec(package)]).scheduleCreate();
+
+ var server = new ScheduledServer();
+ credentialsFile(server, 'access token').scheduleCreate();
+ var pub = startPubLish(server);
+ pub.writeLine("y");
+ handleUploadForm(server);
+ handleUpload(server);
+
+ server.handle('GET', '/create', (request, response) {
+ response.outputStream.writeString(JSON.stringify({
+ 'success': {'message': 'Package test_pkg 1.0.0 uploaded!'}
+ }));
+ return closeHttpResponse(request, response);
+ });
+
+ pub.shouldExit(0);
+ expectLater(pub.remainingStdout(),
+ contains('Package test_pkg 1.0.0 uploaded!'));
+
+ run();
+ });
+
test('upload form provides an error', () {
var server = new ScheduledServer();
credentialsFile(server, 'access token').scheduleCreate();
« no previous file with comments | « utils/pub/validator/pubspec_field.dart ('k') | utils/tests/pub/test_pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698