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

Unified Diff: pkg/unittest/lib/src/collection_matchers.dart

Issue 14173003: Remove Collection, Collections and clean up List/Set/Queue implementations of retain/remove. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « pkg/unittest/lib/matcher.dart ('k') | pkg/unittest/lib/src/core_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/src/collection_matchers.dart
diff --git a/pkg/unittest/lib/src/collection_matchers.dart b/pkg/unittest/lib/src/collection_matchers.dart
deleted file mode 100644
index 7f3a64c90e9c272d71dfcbae94f4b89b64830d77..0000000000000000000000000000000000000000
--- a/pkg/unittest/lib/src/collection_matchers.dart
+++ /dev/null
@@ -1,201 +0,0 @@
-// 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.
-
-part of matcher;
-
-/**
- * Returns a matcher which matches [Collection]s in which all elements
- * match the given [matcher].
- */
-Matcher everyElement(matcher) => new _EveryElement(wrapMatcher(matcher));
-
-class _EveryElement extends _CollectionMatcher {
- Matcher _matcher;
-
- _EveryElement(Matcher this._matcher);
-
- bool matches(item, MatchState matchState) {
- if (item is! Iterable) {
- return false;
- }
- var i = 0;
- for (var element in item) {
- if (!_matcher.matches(element, matchState)) {
- matchState.state = {
- 'index': i,
- 'element': element,
- 'state': matchState.state
- };
- return false;
- }
- ++i;
- }
- return true;
- }
-
- Description describe(Description description) =>
- description.add('every element ').addDescriptionOf(_matcher);
-
- Description describeMismatch(item, Description mismatchDescription,
- MatchState matchState, bool verbose) {
- if (matchState.state != null) {
- var index = matchState.state['index'];
- var element = matchState.state['element'];
- return _matcher.describeMismatch(element, mismatchDescription,
- matchState.state['state'], verbose).add(' at position $index');
- }
- return super.describeMismatch(item, mismatchDescription,
- matchState, verbose);
- }
-}
-
-/**
- * Returns a matcher which matches [Collection]s in which at least one
- * element matches the given [matcher].
- */
-Matcher someElement(matcher) => new _SomeElement(wrapMatcher(matcher));
-
-class _SomeElement extends _CollectionMatcher {
- Matcher _matcher;
-
- _SomeElement(this._matcher);
-
- bool matches(item, MatchState matchState) {
- return item.any((e) => _matcher.matches(e, matchState));
- }
-
- Description describe(Description description) =>
- description.add('some element ').addDescriptionOf(_matcher);
-}
-
-/**
- * Returns a matcher which matches [Iterable]s that have the same
- * length and the same elements as [expected], and in the same order.
- * This is equivalent to equals but does not recurse.
- */
-
-Matcher orderedEquals(Iterable expected) => new _OrderedEquals(expected);
-
-class _OrderedEquals extends BaseMatcher {
- final Iterable _expected;
- Matcher _matcher;
-
- _OrderedEquals(this._expected) {
- _matcher = equals(_expected, 1);
- }
-
- bool matches(item, MatchState matchState) =>
- (item is Iterable) && _matcher.matches(item, matchState);
-
- Description describe(Description description) =>
- description.add('equals ').addDescriptionOf(_expected).add(' ordered');
-
- Description describeMismatch(item, Description mismatchDescription,
- MatchState matchState, bool verbose) {
- if (item is !Iterable) {
- return mismatchDescription.add('not an Iterable');
- } else {
- return _matcher.describeMismatch(item, mismatchDescription,
- matchState, verbose);
- }
- }
-}
-/**
- * Returns a matcher which matches [Iterable]s that have the same
- * length and the same elements as [expected], but not necessarily in
- * the same order. Note that this is O(n^2) so should only be used on
- * small objects.
- */
-Matcher unorderedEquals(Iterable expected) =>
- new _UnorderedEquals(expected);
-
-class _UnorderedEquals extends BaseMatcher {
- Iterable _expected;
-
- _UnorderedEquals(Iterable this._expected);
-
- String _test(item) {
- if (item is !Iterable) {
- return 'not iterable';
- }
- // Check the lengths are the same.
- var expectedLength = 0;
- if (_expected is Collection) {
- Collection cast = _expected; // "_expected as Collection"
- expectedLength = cast.length;
- } else {
- for (var element in _expected) {
- ++expectedLength;
- }
- }
- var actualLength = 0;
- if (item is Collection) {
- actualLength = item.length;
- } else {
- for (var element in item) {
- ++actualLength;
- }
- }
- if (expectedLength > actualLength) {
- return 'has too few elements (${actualLength} < ${expectedLength})';
- } else if (expectedLength < actualLength) {
- return 'has too many elements (${actualLength} > ${expectedLength})';
- }
- List<bool> matched = new List<bool>(actualLength);
- for (var i = 0; i < actualLength; i++) {
- matched[i] = false;
- }
- var expectedPosition = 0;
- for (var expectedElement in _expected) {
- var actualPosition = 0;
- var gotMatch = false;
- for (var actualElement in item) {
- if (!matched[actualPosition]) {
- if (expectedElement == actualElement) {
- matched[actualPosition] = gotMatch = true;
- break;
- }
- }
- ++actualPosition;
- }
- if (!gotMatch) {
- Description reason = new StringDescription();
- reason.add('has no match for element ').
- addDescriptionOf(expectedElement).
- add(' at position ${expectedPosition}');
- return reason.toString();
- }
- ++expectedPosition;
- }
- return null;
- }
-
- bool matches(item, MatchState mismatchState) => (_test(item) == null);
-
- Description describe(Description description) =>
- description.add('equals ').addDescriptionOf(_expected).add(' unordered');
-
- Description describeMismatch(item, Description mismatchDescription,
- MatchState matchState, bool verbose) =>
- mismatchDescription.add(_test(item));
-}
-
-/**
- * Collection matchers match against [Collection]s. We add this intermediate
- * class to give better mismatch error messages than the base Matcher class.
- */
-abstract class _CollectionMatcher extends BaseMatcher {
- const _CollectionMatcher();
- Description describeMismatch(item, Description mismatchDescription,
- MatchState matchState, bool verbose) {
- if (item is! Iterable) {
- return mismatchDescription.
- addDescriptionOf(item).
- add(' not an Iterable');
- } else {
- return super.describeMismatch(item, mismatchDescription, matchState,
- verbose);
- }
- }
-}
« no previous file with comments | « pkg/unittest/lib/matcher.dart ('k') | pkg/unittest/lib/src/core_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698