Package org.geotools.feature.simple

Source Code of org.geotools.feature.simple.SimpleFeatureImplTest

/*
*    GeoTools - The Open Source Java GIS Toolkit
*    http://geotools.org
*
*    (C) 2002-2008, Open Source Geospatial Foundation (OSGeo)
*
*    This library is free software; you can redistribute it and/or
*    modify it under the terms of the GNU Lesser General Public
*    License as published by the Free Software Foundation;
*    version 2.1 of the License.
*
*    This library is distributed in the hope that it will be useful,
*    but WITHOUT ANY WARRANTY; without even the implied warranty of
*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
*    Lesser General Public License for more details.
*/
package org.geotools.feature.simple;

import junit.framework.TestCase;

import org.geotools.data.DataUtilities;
import org.opengis.feature.GeometryAttribute;
import org.opengis.feature.simple.SimpleFeature;
import org.opengis.feature.simple.SimpleFeatureType;
import org.opengis.feature.type.GeometryDescriptor;

/**
*
*
* @source $URL$
*/
public class SimpleFeatureImplTest extends TestCase {
   
    SimpleFeatureType schema;
    SimpleFeature feature;
   
    @Override
    protected void setUp() throws Exception {
        super.setUp();
        schema = DataUtilities.createType("buildings", "the_geom:MultiPolygon,name:String,ADDRESS:String");
        feature = SimpleFeatureBuilder.build(schema, new Object[] {null, "ABC", "Random Road, 12"}, "building.1");
    }
   
    // see GEOT-2061
    public void testGetProperty() {
        assertEquals("ABC", feature.getProperty("name").getValue());
        assertNull(feature.getProperty("NOWHERE"));
        assertEquals(0, feature.getProperties("NOWHERE").size());
    }
   
   
    public void testGetPropertyNullValue(){
        assertNotNull(feature.getProperty("the_geom"));
        assertNull(feature.getProperty("the_geom").getValue());
    }

    public void testGeometryPropertyType(){
        assertTrue("expected GeometryAttribute, got " + feature.getProperty("the_geom").getClass().getName(),
                feature.getProperty("the_geom") instanceof GeometryAttribute);
    }

    public void testDefaultGeometryProperty(){
        assertTrue("expected GeometryAttribute, got " + feature.getProperty("the_geom").getClass().getName(),
                feature.getProperty("the_geom") instanceof GeometryAttribute);
        GeometryAttribute defaultGeometryProperty = feature.getDefaultGeometryProperty();
        assertNotNull(defaultGeometryProperty);
        assertNull(defaultGeometryProperty.getValue());
        assertNotNull(defaultGeometryProperty.getDescriptor());
        assertTrue(defaultGeometryProperty.getDescriptor() instanceof GeometryDescriptor);
    }
   
    public void testGetName(){
        assertNotNull(feature.getName());
        assertEquals(feature.getFeatureType().getName(), feature.getName());
    }
   
    public void testGetDescriptor() {
        assertNotNull(feature.getDescriptor());
        assertSame(feature.getType(), feature.getDescriptor().getType());
        assertTrue(feature.getDescriptor().isNillable());
        assertEquals(0, feature.getDescriptor().getMinOccurs());
        assertEquals(Integer.MAX_VALUE, feature.getDescriptor().getMaxOccurs());
    }
   
    public void testSetValue() {
     
      SimpleFeature myFeature = SimpleFeatureBuilder.build(schema, new Object[] {null, null, null}, "building.2");

      myFeature.setValue(feature.getProperties());
      for (int i = 0; i < feature.getAttributeCount(); i++) {
        assertEquals(feature.getAttribute(i), myFeature.getAttribute(i));
      }
    }
}
TOP

Related Classes of org.geotools.feature.simple.SimpleFeatureImplTest

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.