Package org.apache.xmpbox.schema

Source Code of org.apache.xmpbox.schema.AbstractSchemaTester

/*****************************************************************************
* 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.xmpbox.schema;

import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.List;
import org.apache.xmpbox.XMPMetadata;
import org.apache.xmpbox.type.AbstractSimpleProperty;
import org.apache.xmpbox.type.ArrayProperty;
import org.apache.xmpbox.type.Cardinality;
import org.apache.xmpbox.type.TypeMapping;
import org.apache.xmpbox.type.TypeTestingHelper;
import org.apache.xmpbox.type.Types;
import org.apache.xmpbox.xml.DomXmpParser;
import org.junit.Assert;
import org.junit.Test;

public abstract class AbstractSchemaTester
{

    protected XMPMetadata xmp;

    protected String fieldName;

    protected Types type;

    protected Cardinality cardinality;

    protected TypeMapping typeMapping = null;

    protected DomXmpParser builder;

    public void before() throws Exception
    {
        builder = new DomXmpParser();
        xmp = XMPMetadata.createXMPMetadata();
        typeMapping = xmp.getTypeMapping();
    }

    protected abstract XMPSchema getSchema();

    protected Class<? extends XMPSchema> getSchemaClass()
    {
        return getSchema().getClass();
    }

    public AbstractSchemaTester(String fieldName, Types type, Cardinality card)
    {
        this.fieldName = fieldName;
        this.type = type;
        this.cardinality = card;
    }

    @Test
    public void testInitializedToNull() throws Exception
    {
        // default method
        Assert.assertNull(getSchema().getProperty(fieldName));
        // accessor
        if (cardinality == Cardinality.Simple)
        {
            String getter = TypeTestingHelper.calculateSimpleGetter(fieldName);
            Method get = getSchemaClass().getMethod(getter, new Class[0]);
            Object result = get.invoke(getSchema(), new Object[0]);
            Assert.assertNull(result);
        }
        else
        {
            // arrays
            String getter = TypeTestingHelper.calculateArrayGetter(fieldName);
            Method get = getSchemaClass().getMethod(getter, new Class[0]);
            Object result = get.invoke(getSchema(), new Object[0]);
            Assert.assertNull(result);
        }

    }

    @Test
    public void testSettingValue() throws Exception
    {
        if (cardinality != Cardinality.Simple)
            return;
        // only test simple properties
        Object value = TypeTestingHelper.getJavaValue(type);
        AbstractSimpleProperty property = getSchema().instanciateSimple(fieldName, value);
        getSchema().addProperty(property);
        String qn = getPropertyQualifiedName(fieldName);
        Assert.assertNotNull(getSchema().getProperty(fieldName));
        // check other properties not modified
        List<Field> fields = TypeTestingHelper.getXmpFields(getSchemaClass());
        for (Field field : fields)
        {
            // do not check the current name
            String fqn = getPropertyQualifiedName(field.get(null).toString());
            if (!fqn.equals(qn))
            {
                Assert.assertNull(getSchema().getProperty(fqn));
            }
        }
    }

    @Test
    public void testSettingValueInArray() throws Exception
    {
        if (cardinality == Cardinality.Simple)
            return;
        // only test array properties
        Object value = TypeTestingHelper.getJavaValue(type);
        AbstractSimpleProperty property = getSchema().instanciateSimple(fieldName, value);
        switch (cardinality)
        {
        case Seq:
            getSchema().addUnqualifiedSequenceValue(property.getPropertyName(), property);
            break;
        case Bag:
            getSchema().addBagValue(property.getPropertyName(), property);
            break;
        default:
            throw new Exception("Unexpected case in test : " + cardinality.name());
        }
        String qn = getPropertyQualifiedName(fieldName);
        Assert.assertNotNull(getSchema().getProperty(fieldName));
        // check other properties not modified
        List<Field> fields = TypeTestingHelper.getXmpFields(getSchemaClass());
        for (Field field : fields)
        {
            // do not check the current name
            String fqn = getPropertyQualifiedName(field.get(null).toString());
            if (!fqn.equals(qn))
            {
                Assert.assertNull(getSchema().getProperty(fqn));
            }
        }
    }

    @Test
    public void testPropertySetterSimple() throws Exception
    {
        if (cardinality != Cardinality.Simple)
            return;
        String setter = TypeTestingHelper.calculateSimpleSetter(fieldName) + "Property";
        Object value = TypeTestingHelper.getJavaValue(type);
        AbstractSimpleProperty asp = typeMapping.instanciateSimpleProperty(getSchema().getNamespace(), getSchema()
                .getPrefix(), fieldName, value, type);
        Method set = getSchemaClass().getMethod(setter, new Class<?>[] { type.getImplementingClass() });
        set.invoke(getSchema(), new Object[] { asp });
        // check property set
        AbstractSimpleProperty stored = (AbstractSimpleProperty) getSchema().getProperty(fieldName);
        Assert.assertEquals(value, stored.getValue());
        // check getter
        String getter = TypeTestingHelper.calculateSimpleGetter(fieldName) + "Property";
        Method get = getSchemaClass().getMethod(getter, new Class[0]);
        Object result = get.invoke(getSchema(), new Object[0]);
        Assert.assertTrue(type.getImplementingClass().isAssignableFrom(result.getClass()));
        Assert.assertEquals(asp, result);
    }

    @Test
    public void testPropertySetterInArray() throws Exception
    {
        if (cardinality == Cardinality.Simple)
            return;
        // add value
        String setter = "add" + TypeTestingHelper.calculateFieldNameForMethod(fieldName);
        // TypeDescription<AbstractSimpleProperty> td =
        // typeMapping.getSimpleDescription(type);
        Object value1 = TypeTestingHelper.getJavaValue(type);
        Method set = getSchemaClass().getMethod(setter, new Class<?>[] { TypeTestingHelper.getJavaType(type) });
        set.invoke(getSchema(), new Object[] { value1 });
        // retrieve complex property
        String getter = TypeTestingHelper.calculateArrayGetter(fieldName) + "Property";
        Method getcp = getSchemaClass().getMethod(getter, new Class[0]);
        Object ocp = getcp.invoke(getSchema(), new Object[0]);
        Assert.assertTrue(ocp instanceof ArrayProperty);
        ArrayProperty cp = (ArrayProperty) ocp;
        // check size is ok (1)
        Assert.assertEquals(1, cp.getContainer().getAllProperties().size());
        // add a new one
        Object value2 = TypeTestingHelper.getJavaValue(type);
        set.invoke(getSchema(), new Object[] { value2 });
        Assert.assertEquals(2, cp.getContainer().getAllProperties().size());
        // remove the first
        String remover = "remove" + TypeTestingHelper.calculateFieldNameForMethod(fieldName);
        Method remove = getSchemaClass().getMethod(remover, new Class<?>[] { TypeTestingHelper.getJavaType(type) });
        remove.invoke(getSchema(), value1);
        Assert.assertEquals(1, cp.getContainer().getAllProperties().size());

    }

    protected String getPropertyQualifiedName(String name)
    {
        StringBuilder sb = new StringBuilder();
        sb.append(getSchema().getPrefix()).append(":").append(name);
        return sb.toString();
    }

}
TOP

Related Classes of org.apache.xmpbox.schema.AbstractSchemaTester

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.