Search in sources :

Example 41 with EventSetDescriptor

use of java.beans.EventSetDescriptor in project j2objc by google.

the class EventSetDescriptorTest method testEventSetDescriptorClassStringClassStringArrayStringString.

/*
     * Class under test for void EventSetDescriptor(Class, String, Class,
     * String[], String, String)
     */
public void testEventSetDescriptorClassStringClassStringArrayStringString() throws IntrospectionException {
    Class<MockSourceClass> sourceClass = MockSourceClass.class;
    String eventSetName = "MockPropertyChange";
    Class<?> listenerType = MockPropertyChangeListener.class;
    String[] listenerMethodNames = { "mockPropertyChange", "mockPropertyChange2" };
    String addMethod = "addMockPropertyChangeListener";
    String removeMethod = "removeMockPropertyChangeListener";
    EventSetDescriptor esd = new EventSetDescriptor(sourceClass, eventSetName, listenerType, listenerMethodNames, addMethod, removeMethod);
    assertEquals(addMethod, esd.getAddListenerMethod().getName());
    assertEquals(removeMethod, esd.getRemoveListenerMethod().getName());
    assertNull(esd.getGetListenerMethod());
    assertEquals(2, esd.getListenerMethods().length);
    assertEquals(listenerMethodNames[0], esd.getListenerMethods()[0].getName());
    assertEquals(listenerMethodNames[1], esd.getListenerMethods()[1].getName());
    assertEquals(MockPropertyChangeEvent.class, esd.getListenerMethods()[1].getParameterTypes()[0]);
    assertEquals(2, esd.getListenerMethodDescriptors().length);
    assertEquals(listenerMethodNames[0], esd.getListenerMethodDescriptors()[0].getMethod().getName());
    assertEquals(listenerMethodNames[1], esd.getListenerMethodDescriptors()[1].getMethod().getName());
    assertEquals(listenerType, esd.getListenerType());
    assertTrue(esd.isInDefaultEventSet());
    assertFalse(esd.isUnicast());
}
Also used : MockPropertyChangeListener(org.apache.harmony.beans.tests.support.mock.MockPropertyChangeListener) EventSetDescriptor(java.beans.EventSetDescriptor)

Example 42 with EventSetDescriptor

use of java.beans.EventSetDescriptor in project j2objc by google.

the class EventSetDescriptorTest method testEventSetDescriptorStringClassMethodArrayMethodMethod_ListenerTypeNull.

/*
     * listenerType=null
     */
public void testEventSetDescriptorStringClassMethodArrayMethodMethod_ListenerTypeNull() throws SecurityException, NoSuchMethodException, IntrospectionException {
    String eventSetName = "MockPropertyChange";
    Class<?> listenerType = MockPropertyChangeListener.class;
    Method[] listenerMethods = new Method[] { listenerType.getMethod("mockPropertyChange", MockPropertyChangeEvent.class), listenerType.getMethod("mockPropertyChange2", MockPropertyChangeEvent.class) };
    Class<MockSourceClass> sourceClass = MockSourceClass.class;
    Method addMethod = sourceClass.getMethod("addMockPropertyChangeListener", listenerType);
    Method removeMethod = sourceClass.getMethod("removeMockPropertyChangeListener", listenerType);
    EventSetDescriptor esd = new EventSetDescriptor(eventSetName, null, listenerMethods, addMethod, removeMethod);
    assertEquals(addMethod, esd.getAddListenerMethod());
    assertEquals(removeMethod, esd.getRemoveListenerMethod());
    assertNull(esd.getGetListenerMethod());
    assertEquals(listenerMethods, esd.getListenerMethods());
    assertEquals(2, esd.getListenerMethodDescriptors().length);
    assertEquals(listenerMethods[0], esd.getListenerMethodDescriptors()[0].getMethod());
    assertEquals(listenerMethods[1], esd.getListenerMethodDescriptors()[1].getMethod());
    assertNull(esd.getListenerType());
    assertTrue(esd.isInDefaultEventSet());
    assertFalse(esd.isUnicast());
}
Also used : MockPropertyChangeListener(org.apache.harmony.beans.tests.support.mock.MockPropertyChangeListener) Method(java.lang.reflect.Method) EventSetDescriptor(java.beans.EventSetDescriptor)

Example 43 with EventSetDescriptor

use of java.beans.EventSetDescriptor in project j2objc by google.

the class EventSetDescriptorTest method testEventSetDescriptorStringClassMethodArrayMethodMethod_listenerMethodsInvalid.

/*
     * listenerMethods is invalid
     */
public void testEventSetDescriptorStringClassMethodArrayMethodMethod_listenerMethodsInvalid() throws SecurityException, NoSuchMethodException, IntrospectionException {
    String eventSetName = "MockPropertyChange";
    Class<?> listenerType = MockPropertyChangeListener.class;
    Method[] listenerMethods = new Method[] { listenerType.getMethod("mockPropertyChange", new Class[] { MockPropertyChangeEvent.class }), listenerType.getMethod("mockPropertyChange_Invalid", (Class[]) null) };
    Class<MockSourceClass> sourceClass = MockSourceClass.class;
    Method addMethod = sourceClass.getMethod("addMockPropertyChangeListener", new Class[] { listenerType });
    Method removeMethod = sourceClass.getMethod("removeMockPropertyChangeListener", new Class[] { listenerType });
    EventSetDescriptor esd = new EventSetDescriptor(eventSetName, listenerType, listenerMethods, addMethod, removeMethod);
    assertEquals(listenerMethods, esd.getListenerMethods());
}
Also used : MockPropertyChangeListener(org.apache.harmony.beans.tests.support.mock.MockPropertyChangeListener) Method(java.lang.reflect.Method) EventSetDescriptor(java.beans.EventSetDescriptor)

Example 44 with EventSetDescriptor

use of java.beans.EventSetDescriptor in project j2objc by google.

the class EventSetDescriptorTest method testEventSetDescriptorStringClassMethodArrayMethodMethod_remveListenerMethodNull.

/*
     * removeListenerMethod = null
     */
public void testEventSetDescriptorStringClassMethodArrayMethodMethod_remveListenerMethodNull() throws IntrospectionException, NoSuchMethodException {
    String eventSetName = "MockPropertyChange";
    Class<?> listenerType = MockPropertyChangeListener.class;
    Method[] listenerMethods = new Method[] { listenerType.getMethod("mockPropertyChange", new Class[] { MockPropertyChangeEvent.class }), listenerType.getMethod("mockPropertyChange2", new Class[] { MockPropertyChangeEvent.class }) };
    EventSetDescriptor esd = new EventSetDescriptor(eventSetName, listenerType, listenerMethods, null, null);
    assertNull(esd.getRemoveListenerMethod());
}
Also used : MockPropertyChangeListener(org.apache.harmony.beans.tests.support.mock.MockPropertyChangeListener) Method(java.lang.reflect.Method) EventSetDescriptor(java.beans.EventSetDescriptor)

Example 45 with EventSetDescriptor

use of java.beans.EventSetDescriptor in project j2objc by google.

the class EventSetDescriptorTest method testEventSetDescriptorClassStringClassString_ListenerInvalid.

/*
     * ListenerType does not implement any EventListener
     */
public void testEventSetDescriptorClassStringClassString_ListenerInvalid() throws IntrospectionException, SecurityException, NoSuchMethodException {
    String eventSetName = "MockPropertyChange";
    String listenerMethodName = "mockPropertyChange";
    Class<MockSourceClass> sourceClass = MockSourceClass.class;
    Class<?> listenerType = MockFakeListener.class;
    EventSetDescriptor esd = new EventSetDescriptor(sourceClass, eventSetName, listenerType, listenerMethodName);
    String listenerName = getUnQualifiedClassName(listenerType);
    Method addMethod = sourceClass.getMethod("add" + listenerName, new Class[] { listenerType });
    Method removeMethod = sourceClass.getMethod("remove" + listenerName, new Class[] { listenerType });
    assertEquals(addMethod, esd.getAddListenerMethod());
    assertEquals(removeMethod, esd.getRemoveListenerMethod());
    assertNull(esd.getGetListenerMethod());
    assertEquals(1, esd.getListenerMethods().length);
    assertEquals(listenerMethodName, esd.getListenerMethods()[0].getName());
    assertEquals(1, esd.getListenerMethodDescriptors().length);
    assertEquals(listenerMethodName, esd.getListenerMethodDescriptors()[0].getMethod().getName());
    assertEquals(listenerType, esd.getListenerType());
    assertTrue(esd.isInDefaultEventSet());
    assertFalse(esd.isUnicast());
}
Also used : Method(java.lang.reflect.Method) MockFakeListener(org.apache.harmony.beans.tests.support.mock.MockFakeListener) EventSetDescriptor(java.beans.EventSetDescriptor)

Aggregations

EventSetDescriptor (java.beans.EventSetDescriptor)55 Method (java.lang.reflect.Method)34 MockPropertyChangeListener (org.apache.harmony.beans.tests.support.mock.MockPropertyChangeListener)31 BeanInfo (java.beans.BeanInfo)10 MethodDescriptor (java.beans.MethodDescriptor)10 IntrospectionException (java.beans.IntrospectionException)9 PropertyDescriptor (java.beans.PropertyDescriptor)6 MockPropertyChangeEvent (org.apache.harmony.beans.tests.support.mock.MockPropertyChangeEvent)6 SimpleBeanInfo (java.beans.SimpleBeanInfo)5 FakeFox01BeanInfo (org.apache.harmony.beans.tests.support.mock.FakeFox01BeanInfo)5 IndexedPropertyDescriptor (java.beans.IndexedPropertyDescriptor)3 DefaultActionGroup (com.intellij.openapi.actionSystem.DefaultActionGroup)2 BeanDescriptor (java.beans.BeanDescriptor)2 PrivilegedActionException (java.security.PrivilegedActionException)2 PrivilegedExceptionAction (java.security.PrivilegedExceptionAction)2 CachedMethod (org.codehaus.groovy.reflection.CachedMethod)2 GeneratedMetaMethod (org.codehaus.groovy.reflection.GeneratedMetaMethod)2 ClosureMetaMethod (org.codehaus.groovy.runtime.metaclass.ClosureMetaMethod)2 MixinInstanceMetaMethod (org.codehaus.groovy.runtime.metaclass.MixinInstanceMetaMethod)2 NewInstanceMetaMethod (org.codehaus.groovy.runtime.metaclass.NewInstanceMetaMethod)2