blob: f13525ddae095cb6b0e01c9349443024902f286c [file] [log] [blame]
// 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.
import 'description.dart';
import 'equals_matcher.dart';
import 'interfaces.dart';
import 'util.dart';
/// Returns a matcher which matches [Iterable]s in which all elements
/// match the given [matcher].
Matcher everyElement(matcher) => new _EveryElement(wrapMatcher(matcher));
class _EveryElement extends _IterableMatcher {
final Matcher _matcher;
_EveryElement(this._matcher);
bool matches(item, Map matchState) {
if (item is! Iterable) {
return false;
}
var i = 0;
for (var element in item) {
if (!_matcher.matches(element, matchState)) {
addStateInfo(matchState, {'index': i, 'element': element});
return false;
}
++i;
}
return true;
}
Description describe(Description description) =>
description.add('every element(').addDescriptionOf(_matcher).add(')');
Description describeMismatch(
item, Description mismatchDescription, Map matchState, bool verbose) {
if (matchState['index'] != null) {
var index = matchState['index'];
var element = matchState['element'];
mismatchDescription
.add('has value ')
.addDescriptionOf(element)
.add(' which ');
var subDescription = new StringDescription();
_matcher.describeMismatch(
element, subDescription, matchState['state'] as Map, verbose);
if (subDescription.length > 0) {
mismatchDescription.add(subDescription.toString());
} else {
mismatchDescription.add("doesn't match ");
_matcher.describe(mismatchDescription);
}
mismatchDescription.add(' at index $index');
return mismatchDescription;
}
return super
.describeMismatch(item, mismatchDescription, matchState, verbose);
}
}
/// Returns a matcher which matches [Iterable]s in which at least one
/// element matches the given [matcher].
Matcher anyElement(matcher) => new _AnyElement(wrapMatcher(matcher));
class _AnyElement extends _IterableMatcher {
final Matcher _matcher;
_AnyElement(this._matcher);
bool matches(item, Map 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], in the same order.
///
/// This is equivalent to [equals] but does not recurse.
Matcher orderedEquals(Iterable expected) => new _OrderedEquals(expected);
class _OrderedEquals extends Matcher {
final Iterable _expected;
Matcher _matcher;
_OrderedEquals(this._expected) {
_matcher = equals(_expected, 1);
}
bool matches(item, Map matchState) =>
(item is Iterable) && _matcher.matches(item, matchState);
Description describe(Description description) =>
description.add('equals ').addDescriptionOf(_expected).add(' ordered');
Description describeMismatch(
item, Description mismatchDescription, Map matchState, bool verbose) {
if (item is! Iterable) {
return mismatchDescription.add('is 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 worst case O(n^2) runtime and memory usage so it should
/// only be used on small iterables.
Matcher unorderedEquals(Iterable expected) => new _UnorderedEquals(expected);
class _UnorderedEquals extends _UnorderedMatches {
final List _expectedValues;
_UnorderedEquals(Iterable expected)
: _expectedValues = expected.toList(),
super(expected.map(equals));
Description describe(Description description) => description
.add('equals ')
.addDescriptionOf(_expectedValues)
.add(' unordered');
}
/// Iterable matchers match against [Iterable]s. We add this intermediate
/// class to give better mismatch error messages than the base Matcher class.
abstract class _IterableMatcher extends Matcher {
const _IterableMatcher();
Description describeMismatch(
item, Description mismatchDescription, Map matchState, bool verbose) {
if (item is! Iterable) {
return mismatchDescription.addDescriptionOf(item).add(' not an Iterable');
} else {
return super
.describeMismatch(item, mismatchDescription, matchState, verbose);
}
}
}
/// Returns a matcher which matches [Iterable]s whose elements match the
/// matchers in [expected], but not necessarily in the same order.
///
/// Note that this is worst case O(n^2) runtime and memory usage so it should
/// only be used on small iterables.
Matcher unorderedMatches(Iterable expected) => new _UnorderedMatches(expected);
class _UnorderedMatches extends Matcher {
final List<Matcher> _expected;
final bool _allowUnmatchedValues;
_UnorderedMatches(Iterable expected, {bool allowUnmatchedValues})
: _expected = expected.map(wrapMatcher).toList(),
_allowUnmatchedValues = allowUnmatchedValues ?? false;
String _test(item) {
if (item is Iterable) {
return _testCore(item.toList());
}
return 'not iterable';
}
String _testCore(List values) {
// Check the lengths are the same.
if (_expected.length > values.length) {
return 'has too few elements (${values.length} < ${_expected.length})';
} else if (!_allowUnmatchedValues && _expected.length < values.length) {
return 'has too many elements (${values.length} > ${_expected.length})';
}
var edges =
new List.generate(values.length, (_) => <int>[], growable: false);
for (var v = 0; v < values.length; v++) {
for (var m = 0; m < _expected.length; m++) {
if (_expected[m].matches(values[v], {})) {
edges[v].add(m);
}
}
}
// The index into `values` matched with each matcher or `null` if no value
// has been matched yet.
var matched = new List<int>(_expected.length);
for (var valueIndex = 0; valueIndex < values.length; valueIndex++) {
_findPairing(edges, valueIndex, matched);
}
for (var matcherIndex = 0;
matcherIndex < _expected.length;
matcherIndex++) {
if (matched[matcherIndex] == null) {
final description = new StringDescription()
.add('has no match for ')
.addDescriptionOf(_expected[matcherIndex])
.add(' at index $matcherIndex');
final remainingUnmatched =
matched.sublist(matcherIndex + 1).where((m) => m == null).length;
return remainingUnmatched == 0
? description.toString()
: description
.add(' along with $remainingUnmatched other unmatched')
.toString();
}
}
return null;
}
bool matches(item, Map mismatchState) => _test(item) == null;
Description describe(Description description) => description
.add('matches ')
.addAll('[', ', ', ']', _expected)
.add(' unordered');
Description describeMismatch(item, Description mismatchDescription,
Map matchState, bool verbose) =>
mismatchDescription.add(_test(item));
/// Returns `true` if the value at [valueIndex] can be paired with some
/// unmatched matcher and updates the state of [matched].
///
/// If there is a conflict where multiple values may match the same matcher
/// recursively looks for a new place to match the old value. [reserved]
/// tracks the matchers that have been used _during_ this search.
bool _findPairing(List<List<int>> edges, int valueIndex, List<int> matched,
[Set<int> reserved]) {
reserved ??= new Set<int>();
final possiblePairings =
edges[valueIndex].where((m) => !reserved.contains(m));
for (final matcherIndex in possiblePairings) {
reserved.add(matcherIndex);
final previouslyMatched = matched[matcherIndex];
if (previouslyMatched == null ||
// If the matcher isn't already free, check whether the existing value
// occupying the matcher can be bumped to another one.
_findPairing(edges, matched[matcherIndex], matched, reserved)) {
matched[matcherIndex] = valueIndex;
return true;
}
}
return false;
}
}
/// A pairwise matcher for [Iterable]s.
///
/// The [comparator] function, taking an expected and an actual argument, and
/// returning whether they match, will be applied to each pair in order.
/// [description] should be a meaningful name for the comparator.
Matcher pairwiseCompare<S, T>(
Iterable<S> expected, bool comparator(S a, T b), String description) =>
new _PairwiseCompare(expected, comparator, description);
typedef bool _Comparator<S, T>(S a, T b);
class _PairwiseCompare<S, T> extends _IterableMatcher {
final Iterable<S> _expected;
final _Comparator<S, T> _comparator;
final String _description;
_PairwiseCompare(this._expected, this._comparator, this._description);
bool matches(item, Map matchState) {
if (item is Iterable) {
if (item.length != _expected.length) return false;
var iterator = item.iterator;
var i = 0;
for (var e in _expected) {
iterator.moveNext();
if (!_comparator(e, iterator.current)) {
addStateInfo(matchState,
{'index': i, 'expected': e, 'actual': iterator.current});
return false;
}
i++;
}
return true;
} else {
return false;
}
}
Description describe(Description description) =>
description.add('pairwise $_description ').addDescriptionOf(_expected);
Description describeMismatch(
item, Description mismatchDescription, Map matchState, bool verbose) {
if (item is! Iterable) {
return mismatchDescription.add('is not an Iterable');
} else if (item.length != _expected.length) {
return mismatchDescription
.add('has length ${item.length} instead of ${_expected.length}');
} else {
return mismatchDescription
.add('has ')
.addDescriptionOf(matchState["actual"])
.add(' which is not $_description ')
.addDescriptionOf(matchState["expected"])
.add(' at index ${matchState["index"]}');
}
}
}
/// Matches [Iterable]s which contain an element matching every value in
/// [expected] in any order, and may contain additional values.
///
/// For example: `[0, 1, 0, 2, 0]` matches `containsAll([1, 2])` and
/// `containsAll([2, 1])` but not `containsAll([1, 2, 3])`.
///
/// Will only match values which implement [Iterable].
///
/// Each element in the value will only be considered a match for a single
/// matcher in [expected] even if it could satisfy more than one. For instance
/// `containsAll([greaterThan(1), greaterThan(2)])` will not be satisfied by
/// `[3]`. To check that all matchers are satisfied within an iterable and allow
/// the same element to satisfy multiple matchers use
/// `allOf(matchers.map(contains))`.
///
/// Note that this is worst case O(n^2) runtime and memory usage so it should
/// only be used on small iterables.
Matcher containsAll(Iterable expected) => new _ContainsAll(expected);
class _ContainsAll extends _UnorderedMatches {
final Iterable _unwrappedExpected;
_ContainsAll(Iterable expected)
: _unwrappedExpected = expected,
super(expected.map(wrapMatcher), allowUnmatchedValues: true);
@override
Description describe(Description description) =>
description.add('contains all of ').addDescriptionOf(_unwrappedExpected);
}
/// Matches [Iterable]s which contain an element matching every value in
/// [expected] in the same order, but may contain additional values interleaved
/// throughout.
///
/// For example: `[0, 1, 0, 2, 0]` matches `containsAllInOrder([1, 2])` but not
/// `containsAllInOrder([2, 1])` or `containsAllInOrder([1, 2, 3])`.
///
/// Will only match values which implement [Iterable].
Matcher containsAllInOrder(Iterable expected) =>
new _ContainsAllInOrder(expected);
class _ContainsAllInOrder implements Matcher {
final Iterable _expected;
_ContainsAllInOrder(this._expected);
String _test(item, Map matchState) {
if (item is! Iterable) return 'not an iterable';
var matchers = _expected.map(wrapMatcher).toList();
var matcherIndex = 0;
for (var value in item) {
if (matchers[matcherIndex].matches(value, matchState)) matcherIndex++;
if (matcherIndex == matchers.length) return null;
}
return new StringDescription()
.add('did not find a value matching ')
.addDescriptionOf(matchers[matcherIndex])
.add(' following expected prior values')
.toString();
}
@override
bool matches(item, Map matchState) => _test(item, matchState) == null;
@override
Description describe(Description description) => description
.add('contains in order(')
.addDescriptionOf(_expected)
.add(')');
@override
Description describeMismatch(item, Description mismatchDescription,
Map matchState, bool verbose) =>
mismatchDescription.add(_test(item, matchState));
}