blob: 6416da8a522da945d0ce2df2aae294f92933fc17 [file] [log] [blame]
// Copyright 2008 The Apache Software Foundation
//
// 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.apache.tapestry5.ioc.internal.services;
import org.apache.tapestry5.ioc.Invocation;
import org.apache.tapestry5.ioc.MethodAdvice;
import org.apache.tapestry5.ioc.internal.IOCInternalTestCase;
import org.apache.tapestry5.ioc.services.AspectDecorator;
import org.apache.tapestry5.ioc.services.AspectInterceptorBuilder;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
/**
* Tests a few edge and error cases not covered by {@link org.apache.tapestry5.ioc.internal.services.LoggingDecoratorImplTest}.
*/
public class AspectInterceptorBuilderImplTest extends IOCInternalTestCase
{
private AspectDecorator decorator;
@BeforeClass
public void setup()
{
decorator = getService(AspectDecorator.class);
}
public interface Subject
{
void advised();
void notAdvised();
}
@Test
public void some_methods_not_intercepted() throws Exception
{
Subject delegate = mockSubject();
MethodAdvice advice = new MethodAdvice()
{
public void advise(Invocation invocation)
{
assertEquals(invocation.getMethodName(), "advised");
invocation.proceed();
}
};
delegate.advised();
delegate.notAdvised();
replay();
AspectInterceptorBuilder<Subject> builder = decorator.createBuilder(Subject.class, delegate, "<Subject>");
builder.adviseMethod(Subject.class.getMethod("advised"), advice);
Subject interceptor = builder.build();
interceptor.advised();
interceptor.notAdvised();
verify();
}
@Test
public void method_not_in_service_interface() throws Exception
{
Subject delegate = mockSubject();
MethodAdvice advice = mockAdvice();
replay();
AspectInterceptorBuilder<Subject> builder = decorator.createBuilder(Subject.class, delegate, "<Subject>");
// This method doesn't belong.
try
{
builder.adviseMethod(Runnable.class.getMethod("run"), advice);
unreachable();
}
catch (IllegalArgumentException ex)
{
assertEquals(ex.getMessage(),
"Method public abstract void java.lang.Runnable.run() is not defined for interface interface org.apache.tapestry5.ioc.internal.services.AspectInterceptorBuilderImplTest$Subject.");
}
verify();
}
@Test
public void method_with_duplicate_advice() throws Exception
{
Subject delegate = mockSubject();
MethodAdvice advice = mockAdvice();
replay();
AspectInterceptorBuilder<Subject> builder = decorator.createBuilder(Subject.class, delegate, "<Subject>");
builder.adviseMethod(Subject.class.getMethod("advised"), advice);
try
{
// Second is failure.
builder.adviseMethod(Subject.class.getMethod("advised"), advice);
unreachable();
}
catch (IllegalArgumentException ex)
{
assertEquals(ex.getMessage(),
"Method public abstract void org.apache.tapestry5.ioc.internal.services.AspectInterceptorBuilderImplTest$Subject.advised() has already been advised.");
}
verify();
}
@Test
public void arrays_as_parameters_and_result()
{
ArraysSubject delegate = new ArraysSubjectImpl();
MethodAdvice advice = new MethodAdvice()
{
public void advise(Invocation invocation)
{
String[] param = (String[]) invocation.getParameter(0);
for (int i = 0; i < param.length; i++)
{
param[i] = param[i].toUpperCase();
}
invocation.proceed();
String[] result = (String[]) invocation.getResult();
for (int i = 0; i < result.length; i++)
{
result[i] = i + ":" + result[i];
}
}
};
ArraysSubject advised = decorator.build(ArraysSubject.class, delegate, advice, "whatever");
String[] inputs = { "Fred", "Barney" };
String[] result = advised.operation(inputs);
assertEquals(result[0], "0:FRED");
assertEquals(result[1], "1:BARNEY");
}
protected final MethodAdvice mockAdvice()
{
return newMock(MethodAdvice.class);
}
protected final Subject mockSubject()
{
return newMock(Subject.class);
}
}