org.hamcrest.collection.IsArrayContainingInAnyOrder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hamcrest-library Show documentation
Show all versions of hamcrest-library Show documentation
A library of Hamcrest matchers - deprecated, please use "hamcrest" instead
package org.hamcrest.collection;
import static org.hamcrest.core.IsEqual.equalTo;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.hamcrest.Description;
import org.hamcrest.Factory;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;
public class IsArrayContainingInAnyOrder extends TypeSafeMatcher {
private final IsIterableContainingInAnyOrder iterableMatcher;
private final Collection> matchers;
public IsArrayContainingInAnyOrder(Collection> matchers) {
this.iterableMatcher = new IsIterableContainingInAnyOrder(matchers);
this.matchers = matchers;
}
@Override
public boolean matchesSafely(E[] item) {
return iterableMatcher.matches(Arrays.asList(item));
}
@Override
public void describeMismatchSafely(E[] item, Description mismatchDescription) {
iterableMatcher.describeMismatch(Arrays.asList(item), mismatchDescription);
};
@Override
public void describeTo(Description description) {
description.appendList("[", ", ", "]", matchers)
.appendText(" in any order");
}
/**
* Creates an order agnostic matcher for arrays that matches when each item in the
* examined array satisfies one matcher anywhere in the specified matchers.
* For a positive match, the examined array must be of the same length as the number of
* specified matchers.
*
* N.B. each of the specified matchers will only be used once during a given examination, so be
* careful when specifying matchers that may be satisfied by more than one entry in an examined
* array.
*
* For example:
*
assertThat(new String[]{"foo", "bar"}, arrayContainingInAnyOrder(equalTo("bar"), equalTo("foo")))
*
* @param itemMatchers
* a list of matchers, each of which must be satisfied by an entry in an examined array
*/
@Factory
public static Matcher arrayContainingInAnyOrder(Matcher super E>... itemMatchers) {
return arrayContainingInAnyOrder(Arrays.asList(itemMatchers));
}
/**
* Creates an order agnostic matcher for arrays that matches when each item in the
* examined array satisfies one matcher anywhere in the specified collection of matchers.
* For a positive match, the examined array must be of the same length as the specified collection
* of matchers.
*
* N.B. each matcher in the specified collection will only be used once during a given
* examination, so be careful when specifying matchers that may be satisfied by more than
* one entry in an examined array.
*
* For example:
*
assertThat(new String[]{"foo", "bar"}, arrayContainingInAnyOrder(Arrays.asList(equalTo("bar"), equalTo("foo"))))
*
* @param itemMatchers
* a list of matchers, each of which must be satisfied by an item provided by an examined array
*/
@Factory
public static Matcher arrayContainingInAnyOrder(Collection> itemMatchers) {
return new IsArrayContainingInAnyOrder(itemMatchers);
}
/**
* Creates an order agnostic matcher for arrays that matches when each item in the
* examined array is logically equal to one item anywhere in the specified items.
* For a positive match, the examined array must be of the same length as the number of
* specified items.
*
* N.B. each of the specified items will only be used once during a given examination, so be
* careful when specifying items that may be equal to more than one entry in an examined
* array.
*
* For example:
*
assertThat(new String[]{"foo", "bar"}, containsInAnyOrder("bar", "foo"))
*
* @param items
* the items that must equal the entries of an examined array, in any order
*/
@Factory
public static Matcher arrayContainingInAnyOrder(E... items) {
List> matchers = new ArrayList>();
for (E item : items) {
matchers.add(equalTo(item));
}
return new IsArrayContainingInAnyOrder(matchers);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy