Package org.locationtech.udig.project.internal.commands.edit

Source Code of org.locationtech.udig.project.internal.commands.edit.AddFeatureCommandTest

/*
*    uDig - User Friendly Desktop Internet GIS client
*    http://udig.refractions.net
*    (C) 2012, Refractions Research Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD
* License v1.0 (http://udig.refractions.net/files/bsd3-v10.html).
*/
package org.locationtech.udig.project.internal.commands.edit;

import static org.junit.Assert.assertEquals;

import java.awt.Dimension;
import java.util.Iterator;

import org.locationtech.udig.project.internal.Layer;
import org.locationtech.udig.project.internal.Map;
import org.locationtech.udig.project.tests.support.MapTests;

import org.eclipse.core.runtime.NullProgressMonitor;
import org.geotools.data.FeatureSource;
import org.geotools.data.Query;
import org.geotools.data.simple.SimpleFeatureSource;
import org.geotools.feature.FeatureCollection;
import org.geotools.feature.FeatureIterator;
import org.geotools.feature.simple.SimpleFeatureBuilder;
import org.junit.Test;
import org.opengis.feature.simple.SimpleFeature;
import org.opengis.feature.simple.SimpleFeatureType;

public class AddFeatureCommandTest {

    /*
     * Test method for 'org.locationtech.udig.project.internal.commands.edit.AddFeatureCommand.run(IProgressMonitor)'
     */
    @Test
    public void testRun() throws Exception {
        Map map = MapTests.createDefaultMap("test", 2, true, new Dimension(10,10)); //$NON-NLS-1$
        Layer layer = map.getLayersInternal().get(0);
        SimpleFeatureType schema = layer.getSchema();
    SimpleFeature feature = SimpleFeatureBuilder.build(schema, new Object[]{null,null}, "id");
       
        AddFeatureCommand command=new AddFeatureCommand(feature, layer);
       
        command.setMap(map);
        command.run(new NullProgressMonitor());
        SimpleFeatureSource source = layer.getResource(SimpleFeatureSource.class, new NullProgressMonitor());
        assertEquals(3, source.getCount(Query.ALL));
       
        command.rollback(new NullProgressMonitor());
        FeatureCollection<SimpleFeatureType, SimpleFeature> collection = source.getFeatures();
        int i=0;
        for( FeatureIterator<SimpleFeature> iter = collection.features(); iter.hasNext(); ) {
            iter.next();
            i++;
        }
       
        assertEquals(2, i);
       
    }

}
TOP

Related Classes of org.locationtech.udig.project.internal.commands.edit.AddFeatureCommandTest

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.