Package

Source Code of PropertyEnhancerTest

import java.lang.reflect.Method;
import java.lang.reflect.Modifier;

import models.PropertyEnhancerModel;

import org.junit.Test;

import play.classloading.enhancers.PropertiesEnhancer.PlayPropertyAccessor;
import play.test.UnitTest;

public class PropertyEnhancerTest extends UnitTest {

    @Test
    public void checkForPlayFrameworkEnhancerMethods() throws Exception {
        PropertyEnhancerModel model = new PropertyEnhancerModel();
        Method getter = model.getClass().getMethod("getText");
        assertFalse(getter.isAnnotationPresent(PlayPropertyAccessor.class));
        Method setter = model.getClass().getMethod("setText", String.class);
        assertTrue(setter.isAnnotationPresent(PlayPropertyAccessor.class));
    }

    @Test
    public void checkGetterCreatedForFinal() throws Exception {
        PropertyEnhancerModel model = new PropertyEnhancerModel();
        Method getter = model.getClass().getMethod("getFinalText");
        assertNotNull(getter);
        try {
            Method setter = model.getClass().getMethod("setFinalText", String.class);
            fail("Expected no setter method");
        } catch (NoSuchMethodException e) {
            // expected
        }
    }

    @Test
    public void checkNothingCreatedForStatic() throws Exception {
        PropertyEnhancerModel model = new PropertyEnhancerModel();
        try {
            Method setter = model.getClass().getMethod("getStaticText", String.class);
            fail("Expected no getter method");
        } catch (NoSuchMethodException e) {
            // expected
        }
        try {
            Method setter = model.getClass().getMethod("setStaticText", String.class);
            fail("Expected no setter method");
        } catch (NoSuchMethodException e) {
            // expected
        }
    }

    @Test
    public void checkNothingCreatedForPrivate() throws Exception {
        PropertyEnhancerModel model = new PropertyEnhancerModel();
        try {
            Method setter = model.getClass().getMethod("getPrivateText", String.class);
            fail("Expected no getter method");
        } catch (NoSuchMethodException e) {
            // expected
        }
        try {
            Method setter = model.getClass().getMethod("setPrivateText", String.class);
            fail("Expected no setter method");
        } catch (NoSuchMethodException e) {
            // expected
        }
    }

    @Test
    public void checkOnlyPublicProtectedDeclaredClassesEnhanced() throws Exception {
        PropertyEnhancerModel model = new PropertyEnhancerModel();
        for (Class clazz : model.getClass().getDeclaredClasses()) {
            int modifiers = clazz.getModifiers();
            boolean shouldEnhance = Modifier.isPublic(modifiers) ||
                Modifier.isProtected(modifiers);
            try {
                Method getter = clazz.getMethod("getPublicField");
                if (!shouldEnhance) {
                    fail("Expected no getter method in class " + clazz.getSimpleName());
                }
            } catch (NoSuchMethodException e) {
                if (shouldEnhance) {
                    fail("Expected getter method in class " + clazz.getSimpleName());
                }
            }
            try {
                Method setter = clazz.getMethod("setPublicField", String.class);
                if (!shouldEnhance) {
                    fail("Expected no setter method in class " + clazz.getSimpleName());
                }
            } catch (NoSuchMethodException e) {
                if (shouldEnhance) {
                    fail("Expected setter method in class " + clazz.getSimpleName());
                }
            }
        }
    }
}
TOP

Related Classes of PropertyEnhancerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.