aboutsummaryrefslogtreecommitdiffstats
path: root/testutil/src/main/java/com/yahoo/test/CollectionPatternMatcher.java
blob: 609a555802724d7276ec7560fd6730b207f2a553 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.test;

import org.hamcrest.BaseMatcher;
import org.hamcrest.Description;
import org.hamcrest.Factory;
import org.hamcrest.Matcher;

import java.util.Collection;

/**
 * Checks if a collection of strings contains at least one string with the expected regex pattern.
 *
 * @author gjoranv
 * @since 5.1.8
 */
public class CollectionPatternMatcher extends BaseMatcher<Collection<String>> {

    private final String pattern;

    public CollectionPatternMatcher(String pattern) {
        this.pattern = pattern;
    }

    @Override
    public void describeTo(Description description) {
        description.appendText("contains a string that matches expression '" + pattern + "'");
    }

    @Override
    public boolean matches(Object o) {
        @SuppressWarnings("unchecked")
        Collection<String> strings = (Collection<String>) o;
        for (String s : strings)
            if (s.matches(pattern))
                return true;
        return false;
    }

    @Factory
    public static <T> Matcher<Collection<String>> containsStringWithPattern(String pattern) {
        return new CollectionPatternMatcher(pattern);
    }

}