Example usage for org.springframework.aop.interceptor CustomizableTraceInterceptor PLACEHOLDER_RETURN_VALUE

List of usage examples for org.springframework.aop.interceptor CustomizableTraceInterceptor PLACEHOLDER_RETURN_VALUE

Introduction

In this page you can find the example usage for org.springframework.aop.interceptor CustomizableTraceInterceptor PLACEHOLDER_RETURN_VALUE.

Prototype

String PLACEHOLDER_RETURN_VALUE

To view the source code for org.springframework.aop.interceptor CustomizableTraceInterceptor PLACEHOLDER_RETURN_VALUE.

Click Source Link

Document

The $[returnValue] placeholder.

Usage

From source file:org.springframework.aop.interceptor.CustomizableTraceInterceptorTests.java

@Test(expected = IllegalArgumentException.class)
public void testSetEnterMessageWithReturnValuePlaceholder() {
    // Must not be able to set enter message with return value placeholder
    new CustomizableTraceInterceptor().setEnterMessage(CustomizableTraceInterceptor.PLACEHOLDER_RETURN_VALUE);
}

From source file:org.springframework.aop.interceptor.CustomizableTraceInterceptorTests.java

@Test(expected = IllegalArgumentException.class)
public void testSetExceptionMethodWithReturnValuePlaceholder() {
    // Must not be able to set exception message with return value placeholder
    new CustomizableTraceInterceptor()
            .setExceptionMessage(CustomizableTraceInterceptor.PLACEHOLDER_RETURN_VALUE);
}

From source file:org.springframework.aop.interceptor.CustomizableTraceInterceptorTests.java

@Test
public void testSunnyDayPathLogsCorrectlyWithPrettyMuchAllPlaceholdersMatching() throws Throwable {

    MethodInvocation methodInvocation = mock(MethodInvocation.class);

    given(methodInvocation.getMethod()).willReturn(String.class.getMethod("toString", new Class[0]));
    given(methodInvocation.getThis()).willReturn(this);
    given(methodInvocation.getArguments()).willReturn(new Object[] { "$ One \\$", new Long(2) });
    given(methodInvocation.proceed()).willReturn("Hello!");

    Log log = mock(Log.class);
    given(log.isTraceEnabled()).willReturn(true);

    CustomizableTraceInterceptor interceptor = new StubCustomizableTraceInterceptor(log);
    interceptor.setEnterMessage(new StringBuffer().append("Entering the '")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_METHOD_NAME).append("' method of the [")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_TARGET_CLASS_NAME)
            .append("] class with the following args (")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_ARGUMENTS).append(") and arg types (")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_ARGUMENT_TYPES).append(").").toString());
    interceptor.setExitMessage(new StringBuffer().append("Exiting the '")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_METHOD_NAME).append("' method of the [")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_TARGET_CLASS_SHORT_NAME)
            .append("] class with the following args (")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_ARGUMENTS).append(") and arg types (")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_ARGUMENT_TYPES).append("), returning '")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_RETURN_VALUE).append("' and taking '")
            .append(CustomizableTraceInterceptor.PLACEHOLDER_INVOCATION_TIME).append("' this long.")
            .toString());//from ww  w.  j a v  a2 s.  c  o  m
    interceptor.invoke(methodInvocation);

    verify(log, times(2)).trace(anyString());
}