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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « lib/unittest/numeric_matchers.dart ('k') | lib/unittest/string_matchers.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 /**
6 * This returns a matcher that inverts [matcher] to its logical negation.
7 */
8 Matcher isNot(matcher) => new _IsNot(wrapMatcher(matcher));
9
10 class _IsNot extends BaseMatcher {
11 final Matcher _matcher;
12
13 const _IsNot(Matcher this._matcher);
14
15 bool matches(item) => !_matcher.matches(item);
16
17 Description describe(Description description) =>
18 description.add('not ').addDescriptionOf(_matcher);
19 }
20
21 /**
22 * This returns a matcher that matches if all of the matchers passed as
23 * arguments (up to 7) match. Instead of passing the matchers separately
24 * they can be passed as a single List argument.
25 * Any argument that is not a matcher is implicitly wrapped in a
26 * Matcher to check for equality.
27 */
28 Matcher allOf(arg0,
29 [arg1 = null,
30 arg2 = null,
31 arg3 = null,
32 arg4 = null,
33 arg5 = null,
34 arg6 = null]) {
35 if (arg0 is List) {
36 expect(arg1, isNull);
37 expect(arg2, isNull);
38 expect(arg3, isNull);
39 expect(arg4, isNull);
40 expect(arg5, isNull);
41 expect(arg6, isNull);
42 for (int i = 0; i < arg0.length; i++) {
43 arg0[i] = wrapMatcher(arg0[i]);
44 }
45 return new _AllOf(arg0);
46 } else {
47 List matchers = new List();
48 if (arg0 != null) {
49 matchers.add(arg0);
50 }
51 if (arg1 != null) {
52 matchers.add(arg1);
53 }
54 if (arg2 != null) {
55 matchers.add(arg2);
56 }
57 if (arg3 != null) {
58 matchers.add(arg3);
59 }
60 if (arg4 != null) {
61 matchers.add(arg4);
62 }
63 if (arg5 != null) {
64 matchers.add(arg5);
65 }
66 if (arg6 != null) {
67 matchers.add(arg6);
68 }
69 return new _AllOf(matchers);
70 }
71 }
72
73 class _AllOf extends BaseMatcher {
74 final Iterable<Matcher> _matchers;
75
76 const _AllOf(this._matchers);
77
78 bool matches(item) {
79 for (var matcher in _matchers) {
80 if (!matcher.matches(item)) {
81 return false;
82 }
83 }
84 return true;
85 }
86
87 Description describeMismatch(item, Description mismatchDescription) {
88 for (var matcher in _matchers) {
89 if (!matcher.matches(item)) {
90 mismatchDescription.addDescriptionOf(matcher).add(' ');
91 matcher.describeMismatch(item, mismatchDescription);
92 break;
93 }
94 }
95 return mismatchDescription;
96 }
97
98 Description describe(Description description) =>
99 description.addAll('(', ' and ', ')', _matchers);
100 }
101
102 /**
103 * Matches if any of the given matchers evaluate to true. The
104 * arguments can be a set of matchers as separate parameters
105 * (up to 7), or a List of matchers.
106 *
107 * The matchers are evaluated from left to right using short-circuit
108 * evaluation, so evaluation stops as soon as a matcher returns true.
109 *
110 * Any argument that is not a matcher is implicitly wrapped in a
111 * Matcher to check for equality.
112 */
113
114 Matcher anyOf(arg0,
115 [arg1 = null,
116 arg2 = null,
117 arg3 = null,
118 arg4 = null,
119 arg5 = null,
120 arg6 = null]) {
121 if (arg0 is List) {
122 expect(arg1, isNull);
123 expect(arg2, isNull);
124 expect(arg3, isNull);
125 expect(arg4, isNull);
126 expect(arg5, isNull);
127 expect(arg6, isNull);
128 for (int i = 0; i < arg0.length; i++) {
129 arg0[i] = wrapMatcher(arg0[i]);
130 }
131 return new _AnyOf(arg0);
132 } else {
133 List matchers = new List();
134 if (arg0 != null) {
135 matchers.add(arg0);
136 }
137 if (arg1 != null) {
138 matchers.add(arg1);
139 }
140 if (arg2 != null) {
141 matchers.add(arg2);
142 }
143 if (arg3 != null) {
144 matchers.add(arg3);
145 }
146 if (arg4 != null) {
147 matchers.add(arg4);
148 }
149 if (arg5 != null) {
150 matchers.add(arg5);
151 }
152 if (arg6 != null) {
153 matchers.add(arg6);
154 }
155 return new _AnyOf(matchers);
156 }
157 }
158
159 class _AnyOf extends BaseMatcher {
160 final Iterable<Matcher> _matchers;
161
162 const _AnyOf(this._matchers);
163
164 bool matches(item) {
165 for (var matcher in _matchers) {
166 if (matcher.matches(item)) {
167 return true;
168 }
169 }
170 return false;
171 }
172
173 Description describe(Description description) =>
174 description.addAll('(', ' or ', ')', _matchers);
175 }
176
OLDNEW
« 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