Package org.eclipse.nebula.widgets.nattable.dataset.pricing

Source Code of org.eclipse.nebula.widgets.nattable.dataset.pricing.DataValueGeneratorTest

/*******************************************************************************
* Copyright (c) 2012 Original authors and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.dataset.pricing;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;

import java.lang.reflect.Field;
import java.util.Random;

import org.eclipse.nebula.widgets.nattable.dataset.generator.DataValueGenerator;
import org.eclipse.nebula.widgets.nattable.dataset.generator.IValueGenerator;
import org.eclipse.nebula.widgets.nattable.dataset.pricing.PricingDataBean;
import org.junit.Test;

public class DataValueGeneratorTest {

    @Test
    public void testClassAnnotationIsAccessible() {
        PricingDataBean bean = new PricingDataBean();

        boolean foundAnnotation = false;
        for (Field field : bean.getClass().getDeclaredFields()) {

            foundAnnotation |= field
                    .isAnnotationPresent(DataValueGenerator.class);
        }

        assertTrue(foundAnnotation);
    }

    // TODO The following test probably has a race condition - test
    // non-deterministic
    @Test
    public void testClassAnnotationDataCanBeAccessed() throws Exception {
        final Random random = new Random();
        final PricingDataBean bean = new PricingDataBean();

        for (Field field : bean.getClass().getDeclaredFields()) {
            if (field.isAnnotationPresent(DataValueGenerator.class)) {
                field.setAccessible(true);
                try {
                    Class<? extends IValueGenerator> generatorClass = field
                            .getAnnotation(DataValueGenerator.class).value();
                    IValueGenerator generator = generatorClass.newInstance();
                    Object newValue = generator.newValue(random);
                    // System.out.println("newValue: "+newValue + "\t" +
                    // generator.getClass().getName());
                    assertNotNull(newValue);
                } catch (InstantiationException e) {
                    e.printStackTrace();
                } catch (IllegalAccessException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}
TOP

Related Classes of org.eclipse.nebula.widgets.nattable.dataset.pricing.DataValueGeneratorTest

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.