blob: 47a8a8deb746e9bffcde855c918bf7dbe6269777 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.zest.runtime.composite;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import org.junit.Test;
import org.apache.zest.api.composite.TransientComposite;
import org.apache.zest.api.mixin.Mixins;
import org.apache.zest.bootstrap.AssemblyException;
import org.apache.zest.bootstrap.ModuleAssembly;
import org.apache.zest.test.AbstractQi4jTest;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class QI247Test2
extends AbstractQi4jTest
{
public void assemble( ModuleAssembly module )
throws AssemblyException
{
module.transients( TransientWithHandler.class );
}
private void checkToString( ObjectMethods instance )
{
assertEquals( ObjectMethods.MESSAGE, instance.toString() );
}
private void checkHashCode( ObjectMethods instance )
{
assertEquals( ObjectMethods.CODE, instance.hashCode() );
}
private void checkSelfEquals( ObjectMethods instance )
{
assertEquals( instance, instance );
}
private void checkTwoNotEqual( ObjectMethods first, ObjectMethods second )
{
assertFalse( first.equals( second ) );
}
//HANDLER
@Test
public void testWithHandlerToString()
{
ObjectMethods withHandler = module.newTransient( ObjectMethods.class );
checkToString( withHandler );
}
@Test
public void testWithHandlerHashCode()
{
ObjectMethods withHandler = module.newTransient( ObjectMethods.class );
checkHashCode( withHandler );
}
@Test
public void testWithHandlerSelfEquals()
{
ObjectMethods withHandler = module.newTransient( ObjectMethods.class );
checkSelfEquals( withHandler );
}
@Test
public void testWithHandlerSelfEquals2()
{
ObjectMethods withHandler = module.newTransient( ObjectMethods.class );
assertTrue( withHandler.equals( withHandler ) );
}
@Test
public void testWithHandlerSelfSame()
{
ObjectMethods withHandler = module.newTransient( ObjectMethods.class );
assertSame( withHandler, withHandler );
}
@Test
public void testWithHandlerTwoNotEqual()
{
ObjectMethods first = module.newTransient( ObjectMethods.class );
ObjectMethods second = module.newTransient( ObjectMethods.class );
checkTwoNotEqual( first, second );
}
public interface ObjectMethods
{
String MESSAGE = "Does not work :(";
int CODE = 123;
void someMethod();
}
public static class ObjectMethodsHandler
implements InvocationHandler
{
public Object invoke( Object proxy, Method method, Object[] args )
throws Throwable
{
System.out.println( "invoke(proxy, " + method.getName() + ", args" );
if( "someMethod".equals( method.getName() ) )
{
System.out.println( "Hello." );
return null;
}
else
{
throw new UnsupportedOperationException( method.toString() );
}
}
public String toString()
{
return ObjectMethods.MESSAGE;
}
public int hashCode()
{
return ObjectMethods.CODE;
}
public boolean equals( Object o )
{
return o == this;
}
}
@Mixins( ObjectMethodsHandler.class )
public interface TransientWithHandler
extends TransientComposite, ObjectMethods
{
}
}