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

Unified Diff: sdk/lib/_internal/pub_generated/test/barback/utils.dart

Issue 937243002: Revert "Revert "Use native async/await support in pub."" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 months 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
Index: sdk/lib/_internal/pub_generated/test/barback/utils.dart
diff --git a/sdk/lib/_internal/pub_generated/test/barback/utils.dart b/sdk/lib/_internal/pub_generated/test/barback/utils.dart
deleted file mode 100644
index ebdfd426275e3987f98f1dda8497bdd69375801a..0000000000000000000000000000000000000000
--- a/sdk/lib/_internal/pub_generated/test/barback/utils.dart
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS d.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.
-
-import 'package:scheduled_test/scheduled_test.dart';
-
-import '../../lib/src/exit_codes.dart' as exit_codes;
-import '../test_pub.dart';
-
-/// Runs separate integration tests for "pub build", "pub serve", and
-/// "pub build --format json" and validates that in all cases, it fails with
-/// an expected error message and exits with [exitCode].
-///
-/// The integrations assume set up is already done, so you will likely want to
-/// call [setUp] before this.
-///
-/// If [error] is provided, then both pub build and pub serve should exit with
-/// that message. Otherwise, [buildError] is the expected error from pub build
-/// and [serveError] from pub serve.
-void pubBuildAndServeShouldFail(String description, {List<String> args,
- String error, String buildError, String serveError, int exitCode}) {
-
- if (error != null) {
- assert(buildError == null);
- buildError = error;
-
- assert(serveError == null);
- serveError = error;
- }
-
- // Usage errors also print the usage, so validate that.
- var buildExpectation = buildError;
- var serveExpectation = serveError;
- if (exitCode == exit_codes.USAGE) {
- buildExpectation =
- allOf(startsWith(buildExpectation), contains("Usage: pub build"));
- serveExpectation =
- allOf(startsWith(serveExpectation), contains("Usage: pub serve"));
- }
-
- integration("build fails $description", () {
- schedulePub(
- args: ["build"]..addAll(args),
- error: buildExpectation,
- exitCode: exitCode);
- });
-
- integration("build --format json fails $description", () {
- schedulePub(args: ["build", "--format", "json"]..addAll(args), outputJson: {
- "error": buildError // No usage in JSON output.
- }, exitCode: exitCode);
- });
-
- integration("serve fails $description", () {
- schedulePub(
- args: ["serve"]..addAll(args),
- error: serveExpectation,
- exitCode: exitCode);
- });
-}

Powered by Google App Engine
This is Rietveld 408576698