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

Unified Diff: mojo/public/dart/third_party/test/lib/src/frontend/prints_matcher.dart

Issue 1346773002: Stop running pub get at gclient sync time and fix build bugs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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: mojo/public/dart/third_party/test/lib/src/frontend/prints_matcher.dart
diff --git a/mojo/public/dart/third_party/test/lib/src/frontend/prints_matcher.dart b/mojo/public/dart/third_party/test/lib/src/frontend/prints_matcher.dart
new file mode 100644
index 0000000000000000000000000000000000000000..008f20ee0eb19d77b3ab9f19b924017656241b23
--- /dev/null
+++ b/mojo/public/dart/third_party/test/lib/src/frontend/prints_matcher.dart
@@ -0,0 +1,81 @@
+// Copyright (c) 2014, 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 test.frontend.prints_matcher;
+
+import 'dart:async';
+
+import 'package:matcher/matcher.dart' hide completes, expect;
+
+import 'expect.dart';
+import 'future_matchers.dart';
+
+/// Matches a [Function] that prints text that matches [matcher].
+///
+/// [matcher] may be a String or a [Matcher].
+///
+/// If the function this runs against returns a [Future], all text printed by
+/// the function (using [Zone] scoping) until that Future completes is matched.
+///
+/// This only tracks text printed using the [print] function.
+Matcher prints(matcher) => new _Prints(wrapMatcher(matcher));
+
+class _Prints extends Matcher {
+ final Matcher _matcher;
+
+ _Prints(this._matcher);
+
+ bool matches(item, Map matchState) {
+ if (item is! Function) return false;
+
+ var buffer = new StringBuffer();
+ var result = runZoned(item,
+ zoneSpecification: new ZoneSpecification(print: (_, __, ____, line) {
+ buffer.writeln(line);
+ }));
+
+ if (result is! Future) {
+ var actual = buffer.toString();
+ matchState['prints.actual'] = actual;
+ return _matcher.matches(actual, matchState);
+ }
+
+ return completes.matches(result.then((_) {
+ // Re-run expect() so we get the same formatting as we would without being
+ // asynchronous.
+ expect(() {
+ var actual = buffer.toString();
+ if (actual.isEmpty) return;
+
+ // Strip off the final newline because [print] will re-add it.
+ actual = actual.substring(0, actual.length - 1);
+ print(actual);
+ }, this);
+ }), matchState);
+ }
+
+ Description describe(Description description) =>
+ description.add('prints ').addDescriptionOf(_matcher);
+
+ Description describeMismatch(
+ item, Description description, Map matchState, bool verbose) {
+ var actual = matchState.remove('prints.actual');
+ if (actual == null) return description;
+ if (actual.isEmpty) return description.add("printed nothing.");
+
+ description.add('printed ').addDescriptionOf(actual);
+
+ // Create a new description for the matcher because at least
+ // [_StringEqualsMatcher] replaces the previous contents of the description.
+ var innerMismatch = _matcher
+ .describeMismatch(actual, new StringDescription(), matchState, verbose)
+ .toString();
+
+ if (innerMismatch.isNotEmpty) {
+ description.add('\n Which: ').add(innerMismatch.toString());
+ }
+
+ return description;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698