#62 fix MetadataLink support - adding tests
This commit is contained in:
parent
8adef995c2
commit
b388298afb
@ -1,74 +1,92 @@
|
|||||||
/*
|
/*
|
||||||
* GeoBatch - Open Source geospatial batch processing system
|
* GeoBatch - Open Source geospatial batch processing system
|
||||||
* https://github.com/nfms4redd/nfms-geobatch
|
* https://github.com/nfms4redd/nfms-geobatch
|
||||||
* Copyright (C) 2007-2012 GeoSolutions S.A.S.
|
* Copyright (C) 2007-2012 GeoSolutions S.A.S.
|
||||||
* http://www.geo-solutions.it
|
* http://www.geo-solutions.it
|
||||||
*
|
*
|
||||||
* GPLv3 + Classpath exception
|
* GPLv3 + Classpath exception
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package it.geosolutions.geoserver.decoder;
|
package it.geosolutions.geoserver.decoder;
|
||||||
|
|
||||||
import it.geosolutions.geoserver.rest.decoder.RESTCoverage;
|
import it.geosolutions.geoserver.rest.decoder.RESTCoverage;
|
||||||
import it.geosolutions.geoserver.rest.decoder.RESTDimensionInfo;
|
import it.geosolutions.geoserver.rest.decoder.RESTDimensionInfo;
|
||||||
|
import it.geosolutions.geoserver.rest.encoder.metadatalink.GSMetadataLinkInfoEncoder;
|
||||||
import java.io.File;
|
import it.geosolutions.geoserver.rest.encoder.metadatalink.ResourceMetadataLinkInfo;
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.List;
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
import org.apache.commons.io.FileUtils;
|
import java.util.List;
|
||||||
import org.junit.Assert;
|
|
||||||
import org.junit.Test;
|
import org.apache.commons.io.FileUtils;
|
||||||
import org.springframework.core.io.ClassPathResource;
|
import org.junit.Assert;
|
||||||
|
import org.junit.Test;
|
||||||
/**
|
import org.springframework.core.io.ClassPathResource;
|
||||||
* @author DamianoG
|
|
||||||
*
|
/**
|
||||||
*/
|
* @author DamianoG
|
||||||
public class MetadataDecoderTest {
|
* @author eblondel
|
||||||
|
*
|
||||||
|
*/
|
||||||
@Test
|
public class MetadataDecoderTest {
|
||||||
public void testMetadataDimensionInfo() throws IOException {
|
|
||||||
|
|
||||||
File coverageFile = new ClassPathResource("testdata/coverageExample.xml").getFile();
|
@Test
|
||||||
String coverageString = FileUtils.readFileToString(coverageFile);
|
public void testMetadataDimensionInfo() throws IOException {
|
||||||
RESTCoverage coverage = RESTCoverage.build(coverageString);
|
|
||||||
List<RESTDimensionInfo> list = coverage.getDimensionInfo();
|
File coverageFile = new ClassPathResource("testdata/coverageExample.xml").getFile();
|
||||||
|
String coverageString = FileUtils.readFileToString(coverageFile);
|
||||||
Assert.assertEquals(list.size(),2);
|
RESTCoverage coverage = RESTCoverage.build(coverageString);
|
||||||
|
List<RESTDimensionInfo> list = coverage.getDimensionInfo();
|
||||||
|
|
||||||
for (RESTDimensionInfo el : list){
|
Assert.assertEquals(list.size(),2);
|
||||||
if(el.getKey().equals("time")){
|
|
||||||
Assert.assertEquals(el.getResolution(),null);
|
|
||||||
Assert.assertEquals(el.getPresentation(),"LIST");
|
for (RESTDimensionInfo el : list){
|
||||||
Assert.assertEquals(el.getKey(),"time");
|
if(el.getKey().equals("time")){
|
||||||
Assert.assertEquals(el.isEnabled(),true);
|
Assert.assertEquals(el.getResolution(),null);
|
||||||
}
|
Assert.assertEquals(el.getPresentation(),"LIST");
|
||||||
if(el.getKey().equals("elevation")){
|
Assert.assertEquals(el.getKey(),"time");
|
||||||
Assert.assertEquals(el.getResolution(),"2");
|
Assert.assertEquals(el.isEnabled(),true);
|
||||||
Assert.assertEquals(el.getPresentation(),"DISCRETE_INTERVAL");
|
}
|
||||||
Assert.assertEquals(el.getKey(),"elevation");
|
if(el.getKey().equals("elevation")){
|
||||||
Assert.assertEquals(el.isEnabled(),true);
|
Assert.assertEquals(el.getResolution(),"2");
|
||||||
}
|
Assert.assertEquals(el.getPresentation(),"DISCRETE_INTERVAL");
|
||||||
}
|
Assert.assertEquals(el.getKey(),"elevation");
|
||||||
|
Assert.assertEquals(el.isEnabled(),true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
@Test
|
||||||
}
|
public void testMetadataLinkInfo() throws IOException{
|
||||||
|
File coverageFile = new ClassPathResource("testdata/coverageExample.xml").getFile();
|
||||||
|
String coverageString = FileUtils.readFileToString(coverageFile);
|
||||||
|
RESTCoverage coverage = RESTCoverage.build(coverageString);
|
||||||
|
|
||||||
|
List<GSMetadataLinkInfoEncoder> list = coverage.getEncodedMetadataLinkInfoList();
|
||||||
|
|
||||||
|
GSMetadataLinkInfoEncoder metadataLinkInfo1 = list.get(0);
|
||||||
|
Assert.assertEquals(metadataLinkInfo1.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.type),"text/xml");
|
||||||
|
Assert.assertEquals(metadataLinkInfo1.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.metadataType),"ISO19115:2003");
|
||||||
|
Assert.assertEquals(metadataLinkInfo1.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.content),"http://www.organization.org/metadata1");
|
||||||
|
|
||||||
|
GSMetadataLinkInfoEncoder metadataLinkInfo2 = list.get(1);
|
||||||
|
Assert.assertEquals(metadataLinkInfo2.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.type),"text/html");
|
||||||
|
Assert.assertEquals(metadataLinkInfo2.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.metadataType),"ISO19115:2003");
|
||||||
|
Assert.assertEquals(metadataLinkInfo2.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.content),"http://www.organization.org/metadata2");
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -1,217 +1,231 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2007 - 2011 GeoSolutions S.A.S.
|
* Copyright (C) 2007 - 2011 GeoSolutions S.A.S.
|
||||||
* http://www.geo-solutions.it
|
* http://www.geo-solutions.it
|
||||||
*
|
*
|
||||||
* GPLv3 + Classpath exception
|
* GPLv3 + Classpath exception
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
package it.geosolutions.geoserver.rest.encoder.feature;
|
package it.geosolutions.geoserver.rest.encoder.feature;
|
||||||
|
|
||||||
import it.geosolutions.geoserver.rest.GeoServerRESTPublisher;
|
import it.geosolutions.geoserver.rest.GeoServerRESTPublisher;
|
||||||
import it.geosolutions.geoserver.rest.decoder.RESTLayer;
|
import it.geosolutions.geoserver.rest.decoder.RESTLayer;
|
||||||
import it.geosolutions.geoserver.rest.decoder.RESTResource;
|
import it.geosolutions.geoserver.rest.decoder.RESTResource;
|
||||||
import it.geosolutions.geoserver.rest.encoder.GSLayerEncoder;
|
import it.geosolutions.geoserver.rest.encoder.GSLayerEncoder;
|
||||||
import it.geosolutions.geoserver.rest.encoder.GSResourceEncoder;
|
import it.geosolutions.geoserver.rest.encoder.GSResourceEncoder;
|
||||||
import it.geosolutions.geoserver.rest.encoder.metadata.GSDimensionInfoEncoder;
|
import it.geosolutions.geoserver.rest.encoder.metadata.GSDimensionInfoEncoder;
|
||||||
import it.geosolutions.geoserver.rest.encoder.metadata.GSDimensionInfoEncoder.Presentation;
|
import it.geosolutions.geoserver.rest.encoder.metadata.GSDimensionInfoEncoder.Presentation;
|
||||||
import it.geosolutions.geoserver.rest.encoder.metadata.GSDimensionInfoEncoder.PresentationDiscrete;
|
import it.geosolutions.geoserver.rest.encoder.metadata.GSDimensionInfoEncoder.PresentationDiscrete;
|
||||||
import it.geosolutions.geoserver.rest.encoder.metadata.GSFeatureDimensionInfoEncoder;
|
import it.geosolutions.geoserver.rest.encoder.metadata.GSFeatureDimensionInfoEncoder;
|
||||||
import it.geosolutions.geoserver.rest.encoder.utils.ElementUtils;
|
import it.geosolutions.geoserver.rest.encoder.metadatalink.GSMetadataLinkInfoEncoder;
|
||||||
import it.geosolutions.geoserver.rest.publisher.GeoserverRESTPublisherTest;
|
import it.geosolutions.geoserver.rest.encoder.utils.ElementUtils;
|
||||||
|
import it.geosolutions.geoserver.rest.publisher.GeoserverRESTPublisherTest;
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.File;
|
||||||
import java.math.BigDecimal;
|
import java.io.IOException;
|
||||||
import java.util.List;
|
import java.math.BigDecimal;
|
||||||
|
import java.util.List;
|
||||||
import org.jdom.Element;
|
|
||||||
import org.junit.Assert;
|
import org.jdom.Element;
|
||||||
import org.junit.Test;
|
import org.junit.Assert;
|
||||||
import org.slf4j.Logger;
|
import org.junit.Test;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.Logger;
|
||||||
import org.springframework.core.io.ClassPathResource;
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.core.io.ClassPathResource;
|
||||||
/**
|
|
||||||
*
|
/**
|
||||||
* @author ETj (etj at geo-solutions.it)
|
*
|
||||||
* @author Carlo Cancellieri - carlo.cancellieri@geo-solutions.it
|
* @author ETj (etj at geo-solutions.it)
|
||||||
*/
|
* @author Carlo Cancellieri - carlo.cancellieri@geo-solutions.it
|
||||||
public class GSFeatureEncoderTest extends GeoserverRESTPublisherTest {
|
*/
|
||||||
protected final static Logger LOGGER = LoggerFactory.getLogger(GSFeatureEncoderTest.class);
|
public class GSFeatureEncoderTest extends GeoserverRESTPublisherTest {
|
||||||
|
protected final static Logger LOGGER = LoggerFactory.getLogger(GSFeatureEncoderTest.class);
|
||||||
@Test
|
|
||||||
public void testIntegration() throws IOException {
|
@Test
|
||||||
|
public void testIntegration() throws IOException {
|
||||||
if (!enabled())
|
|
||||||
return;
|
if (!enabled())
|
||||||
deleteAll();
|
return;
|
||||||
|
deleteAll();
|
||||||
GeoServerRESTPublisher publisher = new GeoServerRESTPublisher(RESTURL, RESTUSER, RESTPW);
|
|
||||||
|
GeoServerRESTPublisher publisher = new GeoServerRESTPublisher(RESTURL, RESTUSER, RESTPW);
|
||||||
String storeName = "resttestshp";
|
|
||||||
String layerName = "cities";
|
String storeName = "resttestshp";
|
||||||
|
String layerName = "cities";
|
||||||
GSFeatureTypeEncoder fte = new GSFeatureTypeEncoder();
|
|
||||||
fte.setName(layerName + "_NEW");
|
GSFeatureTypeEncoder fte = new GSFeatureTypeEncoder();
|
||||||
fte.setTitle("title");
|
fte.setName(layerName + "_NEW");
|
||||||
// fte.addKeyword("TODO");
|
fte.setTitle("title");
|
||||||
fte.setNativeCRS("EPSG:4326");
|
// fte.addKeyword("TODO");
|
||||||
fte.setDescription("desc");
|
fte.setNativeCRS("EPSG:4326");
|
||||||
fte.setEnabled(true);
|
fte.setDescription("desc");
|
||||||
|
fte.setEnabled(true);
|
||||||
GSLayerEncoder layerEncoder = new GSLayerEncoder();
|
|
||||||
layerEncoder.setEnabled(true);
|
//metadataLink
|
||||||
layerEncoder.setQueryable(true);
|
GSMetadataLinkInfoEncoder metadatalink = new GSMetadataLinkInfoEncoder();
|
||||||
|
metadatalink.setup("text/xml", "ISO19115:2003","http://www.organization.org/metadata1");
|
||||||
layerEncoder.setDefaultStyle("point");
|
fte.addMetadataLinkInfo(metadatalink);
|
||||||
|
|
||||||
publisher.createWorkspace(DEFAULT_WS);
|
GSLayerEncoder layerEncoder = new GSLayerEncoder();
|
||||||
|
layerEncoder.setEnabled(true);
|
||||||
File zipFile = new ClassPathResource("testdata/resttestshp.zip").getFile();
|
layerEncoder.setQueryable(true);
|
||||||
|
|
||||||
// test insert
|
layerEncoder.setDefaultStyle("point");
|
||||||
boolean published = publisher.publishShp(DEFAULT_WS, storeName, layerName, zipFile);
|
|
||||||
assertTrue("publish() failed", published);
|
publisher.createWorkspace(DEFAULT_WS);
|
||||||
assertTrue(existsLayer(layerName));
|
|
||||||
|
File zipFile = new ClassPathResource("testdata/resttestshp.zip").getFile();
|
||||||
publisher.publishStyle(new File(new ClassPathResource("testdata").getFile(),
|
|
||||||
"default_point.sld"));
|
// test insert
|
||||||
|
boolean published = publisher.publishShp(DEFAULT_WS, storeName, layerName, zipFile);
|
||||||
// optionally select the attributes to publish
|
assertTrue("publish() failed", published);
|
||||||
RESTLayer layer = reader.getLayer(layerName);
|
assertTrue(existsLayer(layerName));
|
||||||
RESTResource resource = reader.getResource(layer);
|
|
||||||
List<GSAttributeEncoder> attrs = resource.getEncodedAttributeList();
|
publisher.publishStyle(new File(new ClassPathResource("testdata").getFile(),
|
||||||
assertNotNull(attrs);
|
"default_point.sld"));
|
||||||
for (GSAttributeEncoder enc : attrs) {
|
|
||||||
fte.setAttribute(enc);
|
// optionally select the attributes to publish
|
||||||
}
|
RESTLayer layer = reader.getLayer(layerName);
|
||||||
|
RESTResource resource = reader.getResource(layer);
|
||||||
assertTrue(publisher.publishDBLayer(DEFAULT_WS, storeName, fte, layerEncoder));
|
List<GSAttributeEncoder> attrs = resource.getEncodedAttributeList();
|
||||||
}
|
assertNotNull(attrs);
|
||||||
|
for (GSAttributeEncoder enc : attrs) {
|
||||||
@Test
|
fte.setAttribute(enc);
|
||||||
public void testFeatureTypeEncoder() {
|
}
|
||||||
|
|
||||||
GSFeatureTypeEncoder encoder = new GSFeatureTypeEncoder();
|
assertTrue(publisher.publishDBLayer(DEFAULT_WS, storeName, fte, layerEncoder));
|
||||||
encoder.addKeyword("KEYWORD_1");
|
}
|
||||||
encoder.addKeyword("KEYWORD_2");
|
|
||||||
encoder.addKeyword("...");
|
@Test
|
||||||
encoder.addKeyword("KEYWORD_N");
|
public void testFeatureTypeEncoder() {
|
||||||
|
|
||||||
encoder.setName("Layername");
|
GSFeatureTypeEncoder encoder = new GSFeatureTypeEncoder();
|
||||||
|
encoder.addKeyword("KEYWORD_1");
|
||||||
encoder.setTitle("title");
|
encoder.addKeyword("KEYWORD_2");
|
||||||
encoder.addKeyword("TODO");
|
encoder.addKeyword("...");
|
||||||
encoder.setNativeCRS("EPSG:4326");
|
encoder.addKeyword("KEYWORD_N");
|
||||||
encoder.setDescription("desc");
|
|
||||||
encoder.setEnabled(true);
|
encoder.setName("Layername");
|
||||||
|
|
||||||
GSAttributeEncoder attribute = new GSAttributeEncoder();
|
encoder.setTitle("title");
|
||||||
attribute.setAttribute(FeatureTypeAttribute.name, "NAME");
|
encoder.addKeyword("TODO");
|
||||||
attribute.setAttribute(FeatureTypeAttribute.binding, "java.lang.String");
|
encoder.setNativeCRS("EPSG:4326");
|
||||||
attribute.setAttribute(FeatureTypeAttribute.maxOccurs, "1");
|
encoder.setDescription("desc");
|
||||||
attribute.setAttribute(FeatureTypeAttribute.minOccurs, "0");
|
encoder.setEnabled(true);
|
||||||
attribute.setAttribute(FeatureTypeAttribute.nillable, "true");
|
|
||||||
|
GSAttributeEncoder attribute = new GSAttributeEncoder();
|
||||||
encoder.setAttribute(attribute);
|
attribute.setAttribute(FeatureTypeAttribute.name, "NAME");
|
||||||
|
attribute.setAttribute(FeatureTypeAttribute.binding, "java.lang.String");
|
||||||
encoder.delAttribute("NAME");
|
attribute.setAttribute(FeatureTypeAttribute.maxOccurs, "1");
|
||||||
|
attribute.setAttribute(FeatureTypeAttribute.minOccurs, "0");
|
||||||
attribute.setAttribute(FeatureTypeAttribute.name, "NEW_NAME");
|
attribute.setAttribute(FeatureTypeAttribute.nillable, "true");
|
||||||
|
|
||||||
encoder.setAttribute(attribute);
|
encoder.setAttribute(attribute);
|
||||||
|
|
||||||
// TODO encoder.getAttribute("NAME");
|
encoder.delAttribute("NAME");
|
||||||
|
|
||||||
GSFeatureDimensionInfoEncoder dim2 = new GSFeatureDimensionInfoEncoder("ELE");
|
attribute.setAttribute(FeatureTypeAttribute.name, "NEW_NAME");
|
||||||
|
|
||||||
encoder.addMetadata("elevation", dim2);
|
encoder.setAttribute(attribute);
|
||||||
dim2.setPresentation(PresentationDiscrete.DISCRETE_INTERVAL, BigDecimal.valueOf(10));
|
|
||||||
Element el = ElementUtils.contains(encoder.getRoot(), GSDimensionInfoEncoder.PRESENTATION);
|
// TODO encoder.getAttribute("NAME");
|
||||||
Assert.assertNotNull(el);
|
|
||||||
|
GSFeatureDimensionInfoEncoder dim2 = new GSFeatureDimensionInfoEncoder("ELE");
|
||||||
LOGGER.info("contains_key:" + el.toString());
|
|
||||||
|
encoder.addMetadata("elevation", dim2);
|
||||||
dim2.setPresentation(PresentationDiscrete.DISCRETE_INTERVAL, BigDecimal.valueOf(12));
|
dim2.setPresentation(PresentationDiscrete.DISCRETE_INTERVAL, BigDecimal.valueOf(10));
|
||||||
el = ElementUtils.contains(encoder.getRoot(), GSDimensionInfoEncoder.RESOLUTION);
|
Element el = ElementUtils.contains(encoder.getRoot(), GSDimensionInfoEncoder.PRESENTATION);
|
||||||
Assert.assertNotNull(el);
|
Assert.assertNotNull(el);
|
||||||
Assert.assertEquals("12", el.getText());
|
|
||||||
|
LOGGER.info("contains_key:" + el.toString());
|
||||||
dim2.setPresentation(Presentation.CONTINUOUS_INTERVAL);
|
|
||||||
|
dim2.setPresentation(PresentationDiscrete.DISCRETE_INTERVAL, BigDecimal.valueOf(12));
|
||||||
encoder.setMetadata("time", new GSFeatureDimensionInfoEncoder("time"));
|
el = ElementUtils.contains(encoder.getRoot(), GSDimensionInfoEncoder.RESOLUTION);
|
||||||
el = ElementUtils.contains(encoder.getRoot(), GSDimensionInfoEncoder.PRESENTATION);
|
Assert.assertNotNull(el);
|
||||||
Assert.assertNotNull(el);
|
Assert.assertEquals("12", el.getText());
|
||||||
el = ElementUtils.contains(encoder.getRoot(), GSDimensionInfoEncoder.RESOLUTION);
|
|
||||||
Assert.assertNull(el);
|
dim2.setPresentation(Presentation.CONTINUOUS_INTERVAL);
|
||||||
|
|
||||||
el = ElementUtils.contains(encoder.getRoot(), GSResourceEncoder.METADATA);
|
encoder.setMetadata("time", new GSFeatureDimensionInfoEncoder("time"));
|
||||||
Assert.assertNotNull(el);
|
el = ElementUtils.contains(encoder.getRoot(), GSDimensionInfoEncoder.PRESENTATION);
|
||||||
LOGGER.info("contains_key:" + el.toString());
|
Assert.assertNotNull(el);
|
||||||
|
el = ElementUtils.contains(encoder.getRoot(), GSDimensionInfoEncoder.RESOLUTION);
|
||||||
final boolean removed = ElementUtils.remove(encoder.getRoot(), el);
|
Assert.assertNull(el);
|
||||||
LOGGER.info("remove:" + removed);
|
|
||||||
Assert.assertTrue(removed);
|
el = ElementUtils.contains(encoder.getRoot(), GSResourceEncoder.METADATA);
|
||||||
|
Assert.assertNotNull(el);
|
||||||
el = ElementUtils.contains(encoder.getRoot(), "metadata");
|
LOGGER.info("contains_key:" + el.toString());
|
||||||
Assert.assertNull(el);
|
|
||||||
if (el == null)
|
final boolean removed = ElementUtils.remove(encoder.getRoot(), el);
|
||||||
LOGGER.info("REMOVED");
|
LOGGER.info("remove:" + removed);
|
||||||
|
Assert.assertTrue(removed);
|
||||||
if (LOGGER.isInfoEnabled())
|
|
||||||
LOGGER.info(encoder.toString());
|
el = ElementUtils.contains(encoder.getRoot(), "metadata");
|
||||||
|
Assert.assertNull(el);
|
||||||
assertEquals(encoder.getName(),"Layername");
|
if (el == null)
|
||||||
}
|
LOGGER.info("REMOVED");
|
||||||
|
|
||||||
@Test
|
if (LOGGER.isInfoEnabled())
|
||||||
public void testModifyFeature() {
|
LOGGER.info(encoder.toString());
|
||||||
GSFeatureTypeEncoder encoder = new GSFeatureTypeEncoder();
|
|
||||||
encoder.addKeyword("KEYWORD_1");
|
assertEquals(encoder.getName(),"Layername");
|
||||||
encoder.addKeyword("KEYWORD_2");
|
}
|
||||||
encoder.addKeyword("...");
|
|
||||||
encoder.addKeyword("KEYWORD_N");
|
@Test
|
||||||
|
public void testModifyFeature() {
|
||||||
Assert.assertTrue(encoder.delKeyword("KEYWORD_2"));
|
GSFeatureTypeEncoder encoder = new GSFeatureTypeEncoder();
|
||||||
Assert.assertFalse(encoder.delKeyword("KEYWORD_M"));
|
encoder.addKeyword("KEYWORD_1");
|
||||||
|
encoder.addKeyword("KEYWORD_2");
|
||||||
final GSFeatureDimensionInfoEncoder elevationDimension = new GSFeatureDimensionInfoEncoder(
|
encoder.addKeyword("...");
|
||||||
"elevation_field");
|
encoder.addKeyword("KEYWORD_N");
|
||||||
|
|
||||||
// if (LOGGER.isInfoEnabled())
|
Assert.assertTrue(encoder.delKeyword("KEYWORD_2"));
|
||||||
// LOGGER.info(encoder.toString());
|
Assert.assertFalse(encoder.delKeyword("KEYWORD_M"));
|
||||||
|
|
||||||
final String metadata = "elevation";
|
//metadataLinkInfo
|
||||||
encoder.setMetadata(metadata, elevationDimension);
|
encoder.addMetadataLinkInfo("text/xml", "ISO19115:2003","http://www.organization.org/metadata1");
|
||||||
|
encoder.addMetadataLinkInfo("text/html", "ISO19115:2003","http://www.organization.org/metadata2");
|
||||||
elevationDimension.setPresentation(PresentationDiscrete.DISCRETE_INTERVAL,
|
|
||||||
BigDecimal.valueOf(10));
|
Assert.assertTrue(encoder.delMetadataLinkInfo("http://www.organization.org/metadata2"));
|
||||||
|
Assert.assertFalse(encoder.delMetadataLinkInfo("http://www.organization.org/metadata3"));
|
||||||
if (LOGGER.isInfoEnabled())
|
|
||||||
LOGGER.info(encoder.toString());
|
//dimensions
|
||||||
|
final GSFeatureDimensionInfoEncoder elevationDimension = new GSFeatureDimensionInfoEncoder(
|
||||||
Assert.assertTrue(encoder.delMetadata(metadata));
|
"elevation_field");
|
||||||
|
|
||||||
if (LOGGER.isInfoEnabled())
|
// if (LOGGER.isInfoEnabled())
|
||||||
LOGGER.info(encoder.toString());
|
// LOGGER.info(encoder.toString());
|
||||||
|
|
||||||
final Element el = ElementUtils.contains(encoder.getRoot(),
|
final String metadata = "elevation";
|
||||||
GSDimensionInfoEncoder.DIMENSIONINFO);
|
encoder.setMetadata(metadata, elevationDimension);
|
||||||
Assert.assertNull(el);
|
|
||||||
if (el == null)
|
elevationDimension.setPresentation(PresentationDiscrete.DISCRETE_INTERVAL,
|
||||||
LOGGER.info("REMOVED");
|
BigDecimal.valueOf(10));
|
||||||
|
|
||||||
}
|
if (LOGGER.isInfoEnabled())
|
||||||
}
|
LOGGER.info(encoder.toString());
|
||||||
|
|
||||||
|
Assert.assertTrue(encoder.delMetadata(metadata));
|
||||||
|
|
||||||
|
if (LOGGER.isInfoEnabled())
|
||||||
|
LOGGER.info(encoder.toString());
|
||||||
|
|
||||||
|
final Element el = ElementUtils.contains(encoder.getRoot(),
|
||||||
|
GSDimensionInfoEncoder.DIMENSIONINFO);
|
||||||
|
Assert.assertNull(el);
|
||||||
|
if (el == null)
|
||||||
|
LOGGER.info("REMOVED");
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2007 - 2011 GeoSolutions S.A.S.
|
||||||
|
* http://www.geo-solutions.it
|
||||||
|
*
|
||||||
|
* GPLv3 + Classpath exception
|
||||||
|
*
|
||||||
|
* 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/>.
|
||||||
|
*/
|
||||||
|
package it.geosolutions.geoserver.rest.encoder.metadatalink;
|
||||||
|
|
||||||
|
import junit.framework.Assert;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author eblondel
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class GSMetadataLinkInfoEncoderTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void metadataLinkInfoTest(){
|
||||||
|
GSMetadataLinkInfoEncoder encoder = new GSMetadataLinkInfoEncoder();
|
||||||
|
encoder.setup("text/xml", "ISO19115:2003","http://www.organization.org/metadata1");
|
||||||
|
|
||||||
|
Assert.assertEquals("text/xml", encoder.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.type));
|
||||||
|
Assert.assertEquals("ISO19115:2003", encoder.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.metadataType));
|
||||||
|
Assert.assertEquals("http://www.organization.org/metadata1", encoder.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.content));
|
||||||
|
|
||||||
|
Assert.assertTrue(encoder.delMetadataLinkInfoMember(ResourceMetadataLinkInfo.content));
|
||||||
|
Assert.assertNull(encoder.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.content));
|
||||||
|
|
||||||
|
encoder.setMetadataLinkInfoMember(ResourceMetadataLinkInfo.type, "text/html");
|
||||||
|
encoder.setMetadataLinkInfoMember(ResourceMetadataLinkInfo.metadataType, "FGDC");
|
||||||
|
encoder.setMetadataLinkInfoMember(ResourceMetadataLinkInfo.content, "http://www.organization.org/metadata2");
|
||||||
|
Assert.assertEquals("text/html", encoder.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.type));
|
||||||
|
Assert.assertEquals("FGDC", encoder.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.metadataType));
|
||||||
|
Assert.assertEquals("http://www.organization.org/metadata2", encoder.getMetadataLinkInfoMember(ResourceMetadataLinkInfo.content));
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
204
src/test/resources/testdata/coverageExample.xml
vendored
204
src/test/resources/testdata/coverageExample.xml
vendored
@ -1,97 +1,109 @@
|
|||||||
|
|
||||||
<coverage>
|
<coverage>
|
||||||
<name>granuleTestMosaic</name>
|
<name>granuleTestMosaic</name>
|
||||||
<nativeName>granuleTestMosaic</nativeName>
|
<nativeName>granuleTestMosaic</nativeName>
|
||||||
<namespace>
|
<namespace>
|
||||||
<name>topp</name>
|
<name>topp</name>
|
||||||
<atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="alternate" href="http://localhost:8080/geoserver/rest/namespaces/topp.xml" type="application/xml"/>
|
<atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="alternate" href="http://localhost:8080/geoserver/rest/namespaces/topp.xml" type="application/xml"/>
|
||||||
</namespace>
|
</namespace>
|
||||||
<title>granuleTestMosaic</title>
|
<title>granuleTestMosaic</title>
|
||||||
<nativeCRS>GEOGCS["WGS 84", 
|
<metadataLinks>
|
||||||
DATUM["World Geodetic System 1984", 
|
<metadataLink>
|
||||||
SPHEROID["WGS 84", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], 
|
<type>text/xml</type>
|
||||||
AUTHORITY["EPSG","6326"]], 
|
<metadataType>ISO19115:2003</metadataType>
|
||||||
PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], 
|
<content>http://www.organization.org/metadata1</content>
|
||||||
UNIT["degree", 0.017453292519943295], 
|
</metadataLink>
|
||||||
AXIS["Geodetic longitude", EAST], 
|
<metadataLink>
|
||||||
AXIS["Geodetic latitude", NORTH], 
|
<type>text/html</type>
|
||||||
AUTHORITY["EPSG","4326"]]</nativeCRS>
|
<metadataType>ISO19115:2003</metadataType>
|
||||||
<srs>EPSG:4326</srs>
|
<content>http://www.organization.org/metadata2</content>
|
||||||
<nativeBoundingBox>
|
</metadataLink>
|
||||||
<minx>-180.0</minx>
|
</metadataLinks>
|
||||||
<maxx>180.0</maxx>
|
<nativeCRS>GEOGCS["WGS 84", 
|
||||||
<miny>-90.0</miny>
|
DATUM["World Geodetic System 1984", 
|
||||||
<maxy>90.0</maxy>
|
SPHEROID["WGS 84", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], 
|
||||||
<crs>EPSG:4326</crs>
|
AUTHORITY["EPSG","6326"]], 
|
||||||
</nativeBoundingBox>
|
PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], 
|
||||||
<latLonBoundingBox>
|
UNIT["degree", 0.017453292519943295], 
|
||||||
<minx>-180.0</minx>
|
AXIS["Geodetic longitude", EAST], 
|
||||||
<maxx>180.0</maxx>
|
AXIS["Geodetic latitude", NORTH], 
|
||||||
<miny>-90.0</miny>
|
AUTHORITY["EPSG","4326"]]</nativeCRS>
|
||||||
<maxy>90.0</maxy>
|
<srs>EPSG:4326</srs>
|
||||||
<crs>EPSG:4326</crs>
|
<nativeBoundingBox>
|
||||||
</latLonBoundingBox>
|
<minx>-180.0</minx>
|
||||||
<projectionPolicy>NONE</projectionPolicy>
|
<maxx>180.0</maxx>
|
||||||
<enabled>true</enabled>
|
<miny>-90.0</miny>
|
||||||
<advertised>true</advertised>
|
<maxy>90.0</maxy>
|
||||||
<metadata>
|
<crs>EPSG:4326</crs>
|
||||||
<entry key="time">
|
</nativeBoundingBox>
|
||||||
<dimensionInfo>
|
<latLonBoundingBox>
|
||||||
<enabled>true</enabled>
|
<minx>-180.0</minx>
|
||||||
<presentation>LIST</presentation>
|
<maxx>180.0</maxx>
|
||||||
</dimensionInfo>
|
<miny>-90.0</miny>
|
||||||
</entry>
|
<maxy>90.0</maxy>
|
||||||
<entry key="elevation">
|
<crs>EPSG:4326</crs>
|
||||||
<dimensionInfo>
|
</latLonBoundingBox>
|
||||||
<enabled>true</enabled>
|
<projectionPolicy>NONE</projectionPolicy>
|
||||||
<presentation>DISCRETE_INTERVAL</presentation>
|
<enabled>true</enabled>
|
||||||
<resolution>2</resolution>
|
<advertised>true</advertised>
|
||||||
</dimensionInfo>
|
<metadata>
|
||||||
</entry>
|
<entry key="time">
|
||||||
</metadata>
|
<dimensionInfo>
|
||||||
<store class="coverageStore">
|
<enabled>true</enabled>
|
||||||
<name>granuleTestMosaic</name>
|
<presentation>LIST</presentation>
|
||||||
<atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="alternate" href="http://localhost:8080/geoserver/rest/workspaces/topp/coveragestores/granuleTestMosaic.xml" type="application/xml"/>
|
</dimensionInfo>
|
||||||
</store>
|
</entry>
|
||||||
<grid dimension="2">
|
<entry key="elevation">
|
||||||
<range>
|
<dimensionInfo>
|
||||||
<low>0 0</low>
|
<enabled>true</enabled>
|
||||||
<high>540 270</high>
|
<presentation>DISCRETE_INTERVAL</presentation>
|
||||||
</range>
|
<resolution>2</resolution>
|
||||||
<transform>
|
</dimensionInfo>
|
||||||
<scaleX>0.6666666666666666</scaleX>
|
</entry>
|
||||||
<scaleY>-0.6666666666666666</scaleY>
|
</metadata>
|
||||||
<shearX>0.0</shearX>
|
<store class="coverageStore">
|
||||||
<shearY>0.0</shearY>
|
<name>granuleTestMosaic</name>
|
||||||
<translateX>-179.66666666666666</translateX>
|
<atom:link xmlns:atom="http://www.w3.org/2005/Atom" rel="alternate" href="http://localhost:8080/geoserver/rest/workspaces/topp/coveragestores/granuleTestMosaic.xml" type="application/xml"/>
|
||||||
<translateY>89.66666666666667</translateY>
|
</store>
|
||||||
</transform>
|
<grid dimension="2">
|
||||||
<crs>EPSG:4326</crs>
|
<range>
|
||||||
</grid>
|
<low>0 0</low>
|
||||||
<parameters>
|
<high>540 270</high>
|
||||||
<entry>
|
</range>
|
||||||
<string>AllowMultithreading</string>
|
<transform>
|
||||||
<string>false</string>
|
<scaleX>0.6666666666666666</scaleX>
|
||||||
</entry>
|
<scaleY>-0.6666666666666666</scaleY>
|
||||||
<entry>
|
<shearX>0.0</shearX>
|
||||||
<string>MaxAllowedTiles</string>
|
<shearY>0.0</shearY>
|
||||||
<string>2147483647</string>
|
<translateX>-179.66666666666666</translateX>
|
||||||
</entry>
|
<translateY>89.66666666666667</translateY>
|
||||||
<entry>
|
</transform>
|
||||||
<string>InputTransparentColor</string>
|
<crs>EPSG:4326</crs>
|
||||||
<string></string>
|
</grid>
|
||||||
</entry>
|
<parameters>
|
||||||
<entry>
|
<entry>
|
||||||
<string>SUGGESTED_TILE_SIZE</string>
|
<string>AllowMultithreading</string>
|
||||||
<string>256,256</string>
|
<string>false</string>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<string>USE_JAI_IMAGEREAD</string>
|
<string>MaxAllowedTiles</string>
|
||||||
<string>false</string>
|
<string>2147483647</string>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
<string>BackgroundValues</string>
|
<string>InputTransparentColor</string>
|
||||||
<string>-1.0</string>
|
<string></string>
|
||||||
</entry>
|
</entry>
|
||||||
</parameters>
|
<entry>
|
||||||
|
<string>SUGGESTED_TILE_SIZE</string>
|
||||||
|
<string>256,256</string>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<string>USE_JAI_IMAGEREAD</string>
|
||||||
|
<string>false</string>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<string>BackgroundValues</string>
|
||||||
|
<string>-1.0</string>
|
||||||
|
</entry>
|
||||||
|
</parameters>
|
||||||
</coverage>
|
</coverage>
|
||||||
Loading…
Reference in New Issue
Block a user