aboutsummaryrefslogtreecommitdiffstats
path: root/yolean/src/test/java/com/yahoo/yolean/chain/ContainsSameElements.java
blob: d3fddeafbb35d98bd5437d5d3daf76651fb644b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yolean.chain;

import org.hamcrest.Description;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.Set;

import static java.util.Collections.sort;

/**
 * @author Tony Vaagenes
 */
class ContainsSameElements<T> extends TypeSafeMatcher<Collection<? super T>> {

    private final Set<T> identitySet;

    public static <T> Matcher<Collection<? super T>> containsSameElements(Collection<T> collection) {
        return new ContainsSameElements<>(collection);
    }

    public ContainsSameElements(Collection<T> collection) {
        identitySet = toIdentitySet(collection);
    }

    @SuppressWarnings("SuspiciousMethodCalls")
    @Override
    protected boolean matchesSafely(Collection<? super T> collection2) {
        for (Object elem : collection2) {
            if (!identitySet.contains(elem)) {
                return false;
            }
        }

        return collection2.size() == identitySet.size();
    }

    @Override
    public void describeTo(Description description) {
        description.appendText("containsSameElements ");
        appendCollection(description, identitySet);
    }

    private void appendCollection(Description description, Collection<?> collection) {
        description.appendValueList("{", ", ", "}", elementsToStringSorted(collection));
    }

    private List<String> elementsToStringSorted(Collection<?> collection) {
        List<String> result = new ArrayList<>();
        for (Object o : collection) {
            result.add(o.toString());
        }
        sort(result);
        return result;
    }

    @Override
    protected void describeMismatchSafely(Collection<? super T> collection, Description description) {
        description.appendText("was ");
        appendCollection(description, collection);
    }

    public static <T> Set<T> toIdentitySet(Collection<? extends T> collection) {
        Set<T> identitySet = Collections.newSetFromMap(new IdentityHashMap<T, Boolean>());
        identitySet.addAll(collection);
        return identitySet;
    }
}