/** * * geo-platform * Rich webgis framework * http://geo-platform.org * ==================================================================== * * Copyright (C) 2008-2017 geoSDI Group (CNR IMAA - Potenza - ITALY). * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. This program 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 General Public License * for more details. You should have received a copy of the GNU General * Public License along with this program. If not, see http://www.gnu.org/licenses/ * * ==================================================================== * * Linking this library statically or dynamically with other modules is * making a combined work based on this library. Thus, the terms and * conditions of the GNU General Public License cover the whole combination. * * As a special exception, the copyright holders of this library give you permission * to link this library with independent modules to produce an executable, regardless * of the license terms of these independent modules, and to copy and distribute * the resulting executable under terms of your choice, provided that you also meet, * for each linked independent module, the terms and conditions of the license of * that module. An independent module is a module which is not derived from or * based on this library. If you modify this library, you may extend this exception * to your version of the library, but you are not obligated to do so. If you do not * wish to do so, delete this exception statement from your version. */ package org.geosdi.geoplatform.wfs; import org.geosdi.geoplatform.connector.GPWFSConnectorStore; import org.geosdi.geoplatform.connector.WFSConnectorBuilder; import org.geosdi.geoplatform.connector.server.request.WFSGetFeatureRequest; import org.geosdi.geoplatform.connector.server.request.WFSTransactionRequest; import org.geosdi.geoplatform.connector.wfs.response.AttributeDTO; import org.geosdi.geoplatform.connector.wfs.response.FeatureCollectionDTO; import org.geosdi.geoplatform.connector.wfs.response.GeometryAttributeDTO; import org.geosdi.geoplatform.connector.wfs.response.LayerSchemaDTO; import org.geosdi.geoplatform.gui.shared.wfs.TransactionOperation; import org.geosdi.geoplatform.support.wfs.feature.reader.FeatureSchemaReader; import org.geosdi.geoplatform.support.wfs.feature.reader.GPFeatureSchemaReader; import org.geosdi.geoplatform.support.wfs.feature.reader.WFSGetFeatureStaxReader; import org.geosdi.geoplatform.xml.wfs.v110.ResultTypeType; import org.geosdi.geoplatform.xml.wfs.v110.TransactionResponseType; import org.geosdi.geoplatform.xml.wfs.v110.TransactionSummaryType; import org.junit.Assert; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.xml.namespace.QName; import java.io.InputStream; import java.net.URL; import java.util.Arrays; import java.util.List; /** * * @author Giuseppe La Scaleia - CNR IMAA geoSDI Group * @email giuseppe.lascaleia@geosdi.org */ public class WFSTransactionInsertTest { private static final Logger logger = LoggerFactory.getLogger(WFSTransactionInsertTest.class); private final static QName TASMANIA_ROADS = new QName("http://www.openplans.org/topp", "topp:tasmania_roads", "topp"); // private final String wfsURL = "http://localhost:8080/geoserver/wfs"; GPWFSConnectorStore serverConnector; FeatureSchemaReader featureReaderXSD = new GPFeatureSchemaReader(); @Before public void setUp() throws Exception { this.serverConnector = WFSConnectorBuilder.newConnector().withServerUrl( new URL(wfsURL)).build(); } @Test @Ignore(value = "To Enable this test there will be a Geoserver local " + "which runs") public void tasmaniaRoads() throws Exception { WFSTransactionRequest<TransactionResponseType> request = serverConnector.createTransactionRequest(); request.setOperation(TransactionOperation.INSERT); request.setTypeName(TASMANIA_ROADS); AttributeDTO att = new AttributeDTO(); att.setName("TYPE"); att.setValue("ecco"); GeometryAttributeDTO geometry = new GeometryAttributeDTO(); geometry.setName("the_geom"); geometry.setSrid(new Integer(4326)); geometry.setValue("MULTILINESTRING ((10 10, 20 20, 10 40), " + "(40 40, 30 30, 40 20, 30 10))"); request.setAttributes(Arrays.asList(att, geometry)); logger.info("\n*** Request TRANSACTION INSERT ***\n{}\n\n", request.showRequestAsString()); TransactionResponseType response = request.getResponse(); logger.info("\n*** {}", response.getTransactionResults()); TransactionSummaryType transactionSummary = response.getTransactionSummary(); Assert.assertEquals(0, transactionSummary.getTotalDeleted().intValue()); Assert.assertEquals(0, transactionSummary.getTotalUpdated().intValue()); Assert.assertEquals(1, transactionSummary.getTotalInserted().intValue()); Assert.assertEquals("1.1.0", response.getVersion()); logger.info("\n@@@@@@@@@InsertResults {}", response.getInsertResults()); List<LayerSchemaDTO> schemas = featureReaderXSD.read(new URL(wfsURL + "?service=wfs" + "&version=1.1.0" + "&request=DescribeFeatureType" + "&typeName=topp:tasmania_roads").openStream()); Assert.assertNotNull(schemas); Assert.assertEquals(1, schemas.size()); LayerSchemaDTO layerSchema = schemas.get(0); logger.info("\n\n#####################Layer Schema : {}", layerSchema); QName name = new QName("topp:tasmania_roads"); WFSGetFeatureRequest getRequest = serverConnector.createGetFeatureRequest(); getRequest.setTypeName(name); getRequest.setResultType(ResultTypeType.RESULTS.value()); InputStream is = getRequest.getResponseAsStream(); WFSGetFeatureStaxReader featureReaderStAX = new WFSGetFeatureStaxReader( layerSchema); FeatureCollectionDTO featureCollection = featureReaderStAX.read(is); logger.info("\n\n@@@@@@@@@@@@@@@@@@@ {}", featureCollection); } }