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

Unified Diff: sdk/lib/_internal/pub/test/test_pub.dart

Issue 184113007: Support JSON output for pub build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Extend timeout. Created 6 years, 9 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/test/test_pub.dart
diff --git a/sdk/lib/_internal/pub/test/test_pub.dart b/sdk/lib/_internal/pub/test/test_pub.dart
index ac4bbb8be5f844c1b93e60f075573285f0a5aed0..2ed23a93fde1968fe1f59f9de7d1a513d72e76ca 100644
--- a/sdk/lib/_internal/pub/test/test_pub.dart
+++ b/sdk/lib/_internal/pub/test/test_pub.dart
@@ -381,8 +381,11 @@ void scheduleSymlink(String target, String symlink) {
/// Schedules a call to the Pub command-line utility.
///
/// Runs Pub with [args] and validates that its results match [output] (or
-/// [outputJson]), [error], and [exitCode]. If [outputJson] is given, validates
-/// that pub outputs stringified JSON matching that object.
+/// [outputJson]), [error], and [exitCode].
+///
+/// If [outputJson] is given, validates that pub outputs stringified JSON
+/// matching that object, which can be a literal JSON object or any other
+/// [Matcher].
void schedulePub({List args, Pattern output, Pattern error, outputJson,
Future<Uri> tokenEndpoint, int exitCode: exit_codes.SUCCESS}) {
// Cannot pass both output and outputJson.
@@ -812,6 +815,8 @@ void _validateOutputString(List<String> failures, String pipe,
}
}
+/// Validates that [actualText] is a string of JSON that matches [expected],
+/// which may be a literal JSON object, or any other [Matcher].
void _validateOutputJson(List<String> failures, String pipe,
expected, String actualText) {
var actual;
@@ -824,8 +829,8 @@ void _validateOutputJson(List<String> failures, String pipe,
failures.add(actualText);
}
- // Do a deep comparison of the JSON objects.
- expect(actual, equals(expected));
+ // Match against the expectation.
+ expect(actual, expected);
}
/// A function that creates a [Validator] subclass.

Powered by Google App Engine
This is Rietveld 408576698