aboutsummaryrefslogtreecommitdiffstats
path: root/testutil/src/main/java/com/yahoo/test/PatternMatcher.java
blob: 0aafcf2f1be6348dae2516fcf8da1bf4611d6fb9 (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
// 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;

/**
 * Matches a string against an expected regex pattern.
 *
 * @author gjoranv
 * @since 5.1.7
 */
public class PatternMatcher extends BaseMatcher<String> {

    private final String pattern;

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

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

    @Override
    public boolean matches(Object o) {
        return ((String)o).matches(pattern);
    }

    @Factory
    public static <T> Matcher<String> matchesPattern(String pattern) {
        return new PatternMatcher(pattern);
    }

}