Merge pull request #2252 from bsideup/feature/grep-metrics
* feature/grep-metrics: Add additional MetricsMvcEndpoint regex tests Add regex support to /metrics and /env endpointspull/2809/head
commit
44a708ea5c
@ -0,0 +1,98 @@
|
||||
/*
|
||||
* Copyright 2012-2015 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.actuate.endpoint.mvc;
|
||||
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
* Utility class that can be used to filter source data using a name regular expression.
|
||||
* Detects if the name is classic "single value" key or a regular expression. Subclasses
|
||||
* must provide implementations of {@link #getValue(Object, String)} and
|
||||
* {@link #getNames(Object, NameCallback)}.
|
||||
*
|
||||
* @author Phillip Webb
|
||||
* @author Sergei Egorov
|
||||
* @param <T> The source data type
|
||||
* @since 1.3.0
|
||||
*/
|
||||
abstract class NamePatternFilter<T> {
|
||||
|
||||
private static final String[] REGEX_PARTS = { "*", "$", "^", "+" };
|
||||
|
||||
private final T source;
|
||||
|
||||
public NamePatternFilter(T source) {
|
||||
this.source = source;
|
||||
}
|
||||
|
||||
public Object getResults(String name) {
|
||||
if (!isRegex(name)) {
|
||||
return getValue(this.source, name);
|
||||
}
|
||||
Pattern pattern = Pattern.compile(name);
|
||||
ResultCollectingNameCallback resultCollector = new ResultCollectingNameCallback(
|
||||
pattern);
|
||||
getNames(this.source, resultCollector);
|
||||
return resultCollector.getResults();
|
||||
|
||||
}
|
||||
|
||||
private boolean isRegex(String name) {
|
||||
for (String part : REGEX_PARTS) {
|
||||
if (name.contains(part)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
protected abstract void getNames(T source, NameCallback callback);
|
||||
|
||||
protected abstract Object getValue(T source, String name);
|
||||
|
||||
protected static interface NameCallback {
|
||||
|
||||
void addName(String name);
|
||||
|
||||
}
|
||||
|
||||
private class ResultCollectingNameCallback implements NameCallback {
|
||||
|
||||
private final Pattern pattern;
|
||||
|
||||
private final Map<String, Object> results = new LinkedHashMap<String, Object>();
|
||||
|
||||
public ResultCollectingNameCallback(Pattern pattern) {
|
||||
this.pattern = pattern;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addName(String name) {
|
||||
if (this.pattern.matcher(name).matches()) {
|
||||
this.results.put(name, getValue(NamePatternFilter.this.source, name));
|
||||
}
|
||||
}
|
||||
|
||||
public Map<String, Object> getResults() {
|
||||
return this.results;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,78 @@
|
||||
/*
|
||||
* Copyright 2012-2015 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.actuate.endpoint.mvc;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.junit.Assert.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link NamePatternFilter}.
|
||||
*
|
||||
* @author Phillip Webb
|
||||
*/
|
||||
public class NamePatternFilterTests {
|
||||
|
||||
@Test
|
||||
public void nonRegex() throws Exception {
|
||||
MockNamePatternFilter filter = new MockNamePatternFilter();
|
||||
assertThat(filter.getResults("not.a.regex"), equalTo((Object) "not.a.regex"));
|
||||
assertThat(filter.isGetNamesCalled(), equalTo(false));
|
||||
}
|
||||
|
||||
@Test
|
||||
@SuppressWarnings("unchecked")
|
||||
public void regex() throws Exception {
|
||||
MockNamePatternFilter filter = new MockNamePatternFilter();
|
||||
Map<String, Object> results = (Map<String, Object>) filter.getResults("fo.*");
|
||||
assertThat(results.get("foo"), equalTo((Object) "foo"));
|
||||
assertThat(results.get("fool"), equalTo((Object) "fool"));
|
||||
assertThat(filter.isGetNamesCalled(), equalTo(true));
|
||||
|
||||
}
|
||||
|
||||
private static class MockNamePatternFilter extends NamePatternFilter<Object> {
|
||||
|
||||
public MockNamePatternFilter() {
|
||||
super(null);
|
||||
}
|
||||
|
||||
private boolean getNamesCalled;
|
||||
|
||||
@Override
|
||||
protected Object getValue(Object source, String name) {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void getNames(Object source, NameCallback callback) {
|
||||
this.getNamesCalled = true;
|
||||
callback.addName("foo");
|
||||
callback.addName("fool");
|
||||
callback.addName("fume");
|
||||
}
|
||||
|
||||
public boolean isGetNamesCalled() {
|
||||
return this.getNamesCalled;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue