Polish and added tests

This commit is contained in:
Marcin Grzejszczak
2016-03-25 09:50:30 +01:00
parent 0f60a0c21a
commit 27ca7777e9
4 changed files with 113 additions and 11 deletions

View File

@@ -28,11 +28,6 @@ import javax.servlet.http.HttpServletResponse;
* @since 1.0.0
*/
class ServletUtils {
static boolean hasHeader(HttpServletRequest request, HttpServletResponse response,
String name) {
String value = request.getHeader(name);
return value != null || response.getHeader(name) != null;
}
static String getHeader(HttpServletRequest request, HttpServletResponse response,
String name) {

View File

@@ -78,27 +78,27 @@ public class TraceWebAspect {
}
@Pointcut("@within(org.springframework.web.bind.annotation.RestController)")
private void anyRestControllerAnnotated() {
private void anyRestControllerAnnotated() { // NOSONAR
}
@Pointcut("@within(org.springframework.stereotype.Controller)")
private void anyControllerAnnotated() {
private void anyControllerAnnotated() { // NOSONAR
}
@Pointcut("execution(public java.util.concurrent.Callable *(..))")
private void anyPublicMethodReturningCallable() {
private void anyPublicMethodReturningCallable() { // NOSONAR
}
@Pointcut("(anyRestControllerAnnotated() || anyControllerAnnotated()) && anyPublicMethodReturningCallable()")
private void anyControllerOrRestControllerWithPublicAsyncMethod() {
private void anyControllerOrRestControllerWithPublicAsyncMethod() { // NOSONAR
}
@Pointcut("execution(public org.springframework.web.context.request.async.WebAsyncTask *(..))")
private void anyPublicMethodReturningWebAsyncTask() {
private void anyPublicMethodReturningWebAsyncTask() { // NOSONAR
}
@Pointcut("(anyRestControllerAnnotated() || anyControllerAnnotated()) && anyPublicMethodReturningWebAsyncTask()")
private void anyControllerOrRestControllerWithPublicWebAsyncTaskMethod() {
private void anyControllerOrRestControllerWithPublicWebAsyncTaskMethod() { // NOSONAR
}
@Around("anyControllerOrRestControllerWithPublicAsyncMethod()")

View File

@@ -0,0 +1,49 @@
/*
* Copyright 2013-2016 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.cloud.sleuth.instrument.async;
import org.junit.Test;
import org.springframework.scheduling.annotation.AsyncConfigurer;
import static org.assertj.core.api.BDDAssertions.then;
import static org.mockito.Mockito.mock;
/**
* @author Marcin Grzejszczak
*/
public class AsyncCustomAutoConfigurationTest {
@Test
public void should_return_bean_when_its_not_a_async_configurer() throws Exception {
AsyncCustomAutoConfiguration configuration = new AsyncCustomAutoConfiguration();
Object bean = configuration
.postProcessAfterInitialization(new Object(), "someName");
then(bean).isNotInstanceOf(LazyTraceAsyncCustomizer.class);
}
@Test
public void should_return_lazy_async_configurer_when_bean_is_async_configurer() throws Exception {
AsyncCustomAutoConfiguration configuration = new AsyncCustomAutoConfiguration();
Object bean = configuration
.postProcessAfterInitialization(mock(AsyncConfigurer.class), "someName");
then(bean).isInstanceOf(LazyTraceAsyncCustomizer.class);
}
}

View File

@@ -0,0 +1,58 @@
/*
* Copyright 2013-2016 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.cloud.sleuth.instrument.async;
import java.util.Random;
import org.junit.Test;
import org.springframework.cloud.sleuth.DefaultSpanNamer;
import org.springframework.cloud.sleuth.NoOpSpanReporter;
import org.springframework.cloud.sleuth.Span;
import org.springframework.cloud.sleuth.TraceKeys;
import org.springframework.cloud.sleuth.Tracer;
import org.springframework.cloud.sleuth.log.NoOpSpanLogger;
import org.springframework.cloud.sleuth.sampler.AlwaysSampler;
import org.springframework.cloud.sleuth.trace.DefaultTracer;
import static org.springframework.cloud.sleuth.assertions.SleuthAssertions.then;
/**
* @author Marcin Grzejszczak
*/
public class LocalComponentTraceCallableTest {
Span closedSpan;
Tracer tracer = new DefaultTracer(new AlwaysSampler(), new Random(),
new DefaultSpanNamer(), new NoOpSpanLogger(), new NoOpSpanReporter()) {
@Override public Span close(Span span) {
LocalComponentTraceCallableTest.this.closedSpan = span;
return super.close(span);
}
};
@Test
public void should_delegate_to_callable_wrapped_in_a_local_component() throws Exception {
LocalComponentTraceCallable<String> callable = new LocalComponentTraceCallable<>(this.tracer, new TraceKeys(), new DefaultSpanNamer(),
() -> "hello");
String response = callable.call();
then(response).isEqualTo("hello");
then(this.closedSpan).isALocalComponentSpan();
}
}