OLD | NEW |
---|---|
(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 * Returns a matcher which matches objects containing the given [value]. | |
Bob Nystrom
2012/06/01 18:22:23
Might want to clarify that this is for maps, since
gram
2012/06/01 22:22:00
Done.
| |
7 */ | |
8 IMatcher containsValue(value) => new _ContainsValue(value); | |
9 | |
10 class _ContainsValue extends Matcher { | |
11 final _value; | |
12 | |
13 const _ContainsValue(this._value); | |
14 | |
15 bool matches(item) => item.containsValue(_value); | |
16 IDescription describe(IDescription description) => | |
17 description.add('contains value ').addDescriptionOf(_value); | |
18 } | |
19 | |
20 /** | |
21 * Returns a matcher which matches maps containing the key-value pair | |
22 * with [key] => [value]. | |
23 */ | |
24 IMatcher containsPair(key, value) => | |
25 new _ContainsMapping(key, wrapMatcher(value)); | |
26 | |
27 class _ContainsMapping extends Matcher { | |
28 final _key; | |
29 final IMatcher _valueMatcher; | |
30 | |
31 const _ContainsMapping(this._key, IMatcher this._valueMatcher); | |
32 | |
33 bool matches(item) => | |
34 item.containsKey(_key) && _valueMatcher.matches(item[_key]); | |
35 | |
36 IDescription describe(IDescription description) { | |
37 return description.add('contains pair ').addDescriptionOf(_key). | |
38 add(' => ').addDescriptionOf(_valueMatcher); | |
39 } | |
40 | |
41 IDescription describeMismatch(item, IDescription mismatchDescription) { | |
42 if (!item.containsKey(_key)) { | |
43 return mismatchDescription.addDescriptionOf(item). | |
44 add("' doesn't contain key '").addDescriptionOf(_key); | |
45 } else { | |
46 return mismatchDescription.add(' contains key ').addDescriptionOf(_key). | |
47 add(' but with value '); | |
48 _valueMatcher.describeMismatch(item[_key], mismatchDescription); | |
49 return mismatchDescription; | |
50 } | |
51 } | |
52 } | |
OLD | NEW |