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

Unified Diff: lib/unittest/operator_matchers.dart

Issue 10441104: New expectation functions plus convert old tests to use these. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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
« no previous file with comments | « lib/unittest/numeric_matchers.dart ('k') | lib/unittest/string_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/unittest/operator_matchers.dart
===================================================================
--- lib/unittest/operator_matchers.dart (revision 0)
+++ lib/unittest/operator_matchers.dart (revision 0)
@@ -0,0 +1,176 @@
+// Copyright (c) 2012, 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.
+
+/**
+ * This returns a matcher that inverts [matcher] to its logical negation.
+ */
+Matcher isNot(matcher) => new _IsNot(wrapMatcher(matcher));
+
+class _IsNot extends BaseMatcher {
+ final Matcher _matcher;
+
+ const _IsNot(Matcher this._matcher);
+
+ bool matches(item) => !_matcher.matches(item);
+
+ Description describe(Description description) =>
+ description.add('not ').addDescriptionOf(_matcher);
+}
+
+/**
+ * This returns a matcher that matches if all of the matchers passed as
+ * arguments (up to 7) match. Instead of passing the matchers separately
+ * they can be passed as a single List argument.
+ * Any argument that is not a matcher is implicitly wrapped in a
+ * Matcher to check for equality.
+*/
+Matcher allOf(arg0,
+ [arg1 = null,
+ arg2 = null,
+ arg3 = null,
+ arg4 = null,
+ arg5 = null,
+ arg6 = null]) {
+ if (arg0 is List) {
+ expect(arg1, isNull);
+ expect(arg2, isNull);
+ expect(arg3, isNull);
+ expect(arg4, isNull);
+ expect(arg5, isNull);
+ expect(arg6, isNull);
+ for (int i = 0; i < arg0.length; i++) {
+ arg0[i] = wrapMatcher(arg0[i]);
+ }
+ return new _AllOf(arg0);
+ } else {
+ List matchers = new List();
+ if (arg0 != null) {
+ matchers.add(arg0);
+ }
+ if (arg1 != null) {
+ matchers.add(arg1);
+ }
+ if (arg2 != null) {
+ matchers.add(arg2);
+ }
+ if (arg3 != null) {
+ matchers.add(arg3);
+ }
+ if (arg4 != null) {
+ matchers.add(arg4);
+ }
+ if (arg5 != null) {
+ matchers.add(arg5);
+ }
+ if (arg6 != null) {
+ matchers.add(arg6);
+ }
+ return new _AllOf(matchers);
+ }
+}
+
+class _AllOf extends BaseMatcher {
+ final Iterable<Matcher> _matchers;
+
+ const _AllOf(this._matchers);
+
+ bool matches(item) {
+ for (var matcher in _matchers) {
+ if (!matcher.matches(item)) {
+ return false;
+ }
+ }
+ return true;
+ }
+
+ Description describeMismatch(item, Description mismatchDescription) {
+ for (var matcher in _matchers) {
+ if (!matcher.matches(item)) {
+ mismatchDescription.addDescriptionOf(matcher).add(' ');
+ matcher.describeMismatch(item, mismatchDescription);
+ break;
+ }
+ }
+ return mismatchDescription;
+ }
+
+ Description describe(Description description) =>
+ description.addAll('(', ' and ', ')', _matchers);
+}
+
+/**
+ * Matches if any of the given matchers evaluate to true. The
+ * arguments can be a set of matchers as separate parameters
+ * (up to 7), or a List of matchers.
+ *
+ * The matchers are evaluated from left to right using short-circuit
+ * evaluation, so evaluation stops as soon as a matcher returns true.
+ *
+ * Any argument that is not a matcher is implicitly wrapped in a
+ * Matcher to check for equality.
+*/
+
+Matcher anyOf(arg0,
+ [arg1 = null,
+ arg2 = null,
+ arg3 = null,
+ arg4 = null,
+ arg5 = null,
+ arg6 = null]) {
+ if (arg0 is List) {
+ expect(arg1, isNull);
+ expect(arg2, isNull);
+ expect(arg3, isNull);
+ expect(arg4, isNull);
+ expect(arg5, isNull);
+ expect(arg6, isNull);
+ for (int i = 0; i < arg0.length; i++) {
+ arg0[i] = wrapMatcher(arg0[i]);
+ }
+ return new _AnyOf(arg0);
+ } else {
+ List matchers = new List();
+ if (arg0 != null) {
+ matchers.add(arg0);
+ }
+ if (arg1 != null) {
+ matchers.add(arg1);
+ }
+ if (arg2 != null) {
+ matchers.add(arg2);
+ }
+ if (arg3 != null) {
+ matchers.add(arg3);
+ }
+ if (arg4 != null) {
+ matchers.add(arg4);
+ }
+ if (arg5 != null) {
+ matchers.add(arg5);
+ }
+ if (arg6 != null) {
+ matchers.add(arg6);
+ }
+ return new _AnyOf(matchers);
+ }
+}
+
+class _AnyOf extends BaseMatcher {
+ final Iterable<Matcher> _matchers;
+
+ const _AnyOf(this._matchers);
+
+ bool matches(item) {
+ for (var matcher in _matchers) {
+ if (matcher.matches(item)) {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ Description describe(Description description) =>
+ description.addAll('(', ' or ', ')', _matchers);
+}
+
« no previous file with comments | « lib/unittest/numeric_matchers.dart ('k') | lib/unittest/string_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698